/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --jet-black: #0A0A0A;
    --warm-sand: #F4EEDC;
    --forest-green: #3F5E46;
    --misty-pine: #8EA392;
    --sunset-gold: #E3B676;
    --dusty-rose: #CBA08C;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 12px rgba(10, 10, 10, 0.08);
    --shadow-md: 0 6px 24px rgba(10, 10, 10, 0.12);
    --shadow-lg: 0 12px 40px rgba(10, 10, 10, 0.18);
    --shadow-xl: 0 16px 48px rgba(10, 10, 10, 0.24);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--warm-sand);
    color: var(--jet-black);
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(244, 238, 220, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 16px rgba(10, 10, 10, 0.1);
    border-bottom: 1px solid rgba(142, 163, 146, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jet-black);
    letter-spacing: 0.05em;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    text-decoration: none;
    color: var(--jet-black);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--forest-green);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background: var(--forest-green);
    color: var(--warm-sand);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #2d4533;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--jet-black);
    border: 2px solid var(--jet-black);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--jet-black);
    color: var(--warm-sand);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-sand) 0%, rgba(203, 160, 140, 0.12) 50%, rgba(227, 182, 118, 0.08) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(142, 163, 146, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(227, 182, 118, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.hero-decoration:nth-of-type(1) {
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 182, 118, 0.18) 0%, rgba(227, 182, 118, 0.06) 50%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-decoration:nth-of-type(2) {
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 94, 70, 0.15) 0%, rgba(63, 94, 70, 0.05) 50%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: var(--jet-black);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #5a6d5f;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: #5a6d5f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(63, 94, 70, 0.15);
    color: var(--forest-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(63, 94, 70, 0.2);
    box-shadow: 0 2px 8px rgba(63, 94, 70, 0.08);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--jet-black);
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.1rem;
    color: #5a6d5f;
    line-height: 1.7;
    font-weight: 400;
}

/* About Section */
.about {
    background: var(--warm-sand);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 163, 146, 0.3), transparent);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.problem-card {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(203, 160, 140, 0.15) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(142, 163, 146, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--misty-pine), var(--sunset-gold));
    opacity: 0.6;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-green);
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(203, 160, 140, 0.25) 100%);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(63, 94, 70, 0.15) 0%, rgba(142, 163, 146, 0.15) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--forest-green);
    border: 2px solid rgba(63, 94, 70, 0.2);
    box-shadow: 0 2px 8px rgba(63, 94, 70, 0.1);
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--jet-black);
}

.problem-text {
    color: #5a6d5f;
    line-height: 1.7;
    font-weight: 400;
}

.problem-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btn-problem {
    margin-top: var(--spacing-sm);
    width: 100%;
    max-width: 250px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--warm-sand);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(142, 163, 146, 0.3);
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--jet-black);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(142, 163, 146, 0.2);
    color: var(--forest-green);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jet-black);
    margin-bottom: var(--spacing-xs);
    padding-right: 50px;
}

.modal-description {
    color: #5a6d5f;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.modal-form {
    margin-top: var(--spacing-md);
}

.modal-form .form-group {
    margin-bottom: var(--spacing-md);
}

.modal-form .form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--jet-black);
    font-size: 0.95rem;
}

.modal-form .form-group input,
.modal-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(142, 163, 146, 0.4);
    border-radius: var(--border-radius);
    background: rgba(244, 238, 220, 0.8);
    color: var(--jet-black);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    background: rgba(244, 238, 220, 1);
    box-shadow: 0 0 0 4px rgba(63, 94, 70, 0.15), 0 4px 12px rgba(63, 94, 70, 0.1);
}

.modal-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-form .btn-primary {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* Products Section */
.products {
    background: linear-gradient(135deg, rgba(203, 160, 140, 0.08) 0%, rgba(227, 182, 118, 0.08) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 163, 146, 0.3), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.9) 0%, rgba(227, 182, 118, 0.12) 50%, rgba(203, 160, 140, 0.15) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(142, 163, 146, 0.25);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--sunset-gold));
    opacity: 0.7;
}

.product-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(63, 94, 70, 0.08) 100%);
}

.product-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(142, 163, 146, 0.12) 100%);
}

.product-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(227, 182, 118, 0.15) 100%);
}

.product-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(203, 160, 140, 0.18) 100%);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--forest-green);
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(227, 182, 118, 0.2) 50%, rgba(203, 160, 140, 0.22) 100%);
}

.product-card:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(63, 94, 70, 0.12) 100%);
}

.product-card:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(142, 163, 146, 0.18) 100%);
}

.product-card:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(227, 182, 118, 0.22) 100%);
}

.product-card:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(203, 160, 140, 0.25) 100%);
}

.product-card:hover::before {
    opacity: 1;
    height: 5px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.product-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(63, 94, 70, 0.15);
    line-height: 1;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jet-black);
}

.product-description {
    color: #5a6d5f;
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    flex-grow: 1;
    font-weight: 400;
}

.product-features {
    list-style: none;
    margin-bottom: var(--spacing-sm);
}

.product-features li {
    padding: var(--spacing-xs) 0;
    color: #1a1a1a;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: 600;
}

.product-footer {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(63, 94, 70, 0.15);
    color: var(--forest-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(63, 94, 70, 0.2);
    box-shadow: 0 1px 4px rgba(63, 94, 70, 0.1);
}

.btn-product {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--forest-green);
    color: var(--warm-sand);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-product:hover {
    background: #2d4533;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--warm-sand);
}

/* Benefits Section */
.benefits {
    background: var(--warm-sand);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 163, 146, 0.3), transparent);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.benefits-text {
    max-width: 600px;
}

.benefits-list {
    margin-top: var(--spacing-md);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(63, 94, 70, 0.1) 0%, rgba(142, 163, 146, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    flex-shrink: 0;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--jet-black);
}

.benefit-text {
    color: #5a6d5f;
    line-height: 1.7;
    font-weight: 400;
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(203, 160, 140, 0.15) 0%, rgba(227, 182, 118, 0.15) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(142, 163, 146, 0.3);
    backdrop-filter: blur(10px);
}

.visual-header {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--misty-pine);
}

.visual-dot:nth-child(1) {
    background: var(--forest-green);
}

.visual-dot:nth-child(2) {
    background: var(--sunset-gold);
}

.visual-dot:nth-child(3) {
    background: var(--dusty-rose);
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.visual-line {
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green) 0%, var(--misty-pine) 100%);
    border-radius: 2px;
}

.visual-line:nth-child(1) {
    width: 80%;
}

.visual-line:nth-child(2) {
    width: 60%;
}

.visual-line:nth-child(3) {
    width: 90%;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(63, 94, 70, 0.06) 0%, rgba(142, 163, 146, 0.06) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 163, 146, 0.3), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    max-width: 500px;
}

.contact-details {
    margin-top: var(--spacing-md);
}

.contact-detail-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(63, 94, 70, 0.1) 0%, rgba(142, 163, 146, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--misty-pine);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jet-black);
}

/* Form Styles */
.contact-form {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(203, 160, 140, 0.15) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(142, 163, 146, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--sunset-gold), var(--dusty-rose));
    opacity: 0.7;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--jet-black);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(142, 163, 146, 0.4);
    border-radius: var(--border-radius);
    background: rgba(244, 238, 220, 0.8);
    color: var(--jet-black);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    background: rgba(244, 238, 220, 1);
    box-shadow: 0 0 0 4px rgba(63, 94, 70, 0.15), 0 4px 12px rgba(63, 94, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(63, 94, 70, 0.04) 0%, rgba(142, 163, 146, 0.04) 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 163, 146, 0.3), transparent);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
}

.steps-container > .step-item:nth-of-type(3) {
    grid-column: 1 / -1;
}

.step-item {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(227, 182, 118, 0.12) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(142, 163, 146, 0.25);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-green);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(63, 94, 70, 0.15);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jet-black);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    color: #5a6d5f;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.btn-step {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--forest-green);
    color: var(--warm-sand);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
    margin-top: auto;
    align-self: flex-end;
    white-space: nowrap;
}

.btn-step:hover {
    background: #2d4533;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--warm-sand);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(63, 94, 70, 0.15) 0%, rgba(142, 163, 146, 0.15) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    border: 2px solid rgba(63, 94, 70, 0.2);
    box-shadow: 0 2px 8px rgba(63, 94, 70, 0.1);
    margin-top: var(--spacing-sm);
}

@media (max-width: 968px) {
    .steps-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .steps-container > .step-item:nth-of-type(3) {
        grid-column: 1;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--warm-sand);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 163, 146, 0.3), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(244, 238, 220, 0.95) 0%, rgba(203, 160, 140, 0.15) 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(142, 163, 146, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--sunset-gold), var(--dusty-rose));
    opacity: 0.6;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-green);
    background: linear-gradient(135deg, rgba(244, 238, 220, 1) 0%, rgba(203, 160, 140, 0.25) 100%);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
}

.testimonial-quote {
    color: var(--forest-green);
    margin-bottom: var(--spacing-sm);
    opacity: 0.7;
}

.testimonial-text {
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(142, 163, 146, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-green), var(--misty-pine));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(63, 94, 70, 0.2);
}

.avatar-initial {
    color: var(--warm-sand);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--jet-black);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.author-role {
    color: #5a6d5f;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--jet-black);
    color: var(--warm-sand);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    min-width: 200px;
}

.footer .logo-text {
    color: var(--warm-sand);
    margin-bottom: var(--spacing-sm);
}

.footer .logo-img {
    height: 35px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: var(--misty-pine);
    line-height: 1.7;
}


.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-sand);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: var(--misty-pine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--warm-sand);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(142, 163, 146, 0.2);
    color: var(--misty-pine);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(142, 163, 146, 0.1);
    color: var(--misty-pine);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 163, 146, 0.2);
}

.social-link:hover {
    background: rgba(227, 182, 118, 0.15);
    color: var(--warm-sand);
    border-color: rgba(227, 182, 118, 0.3);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .benefits-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons button {
        width: 100%;
    }
    
    .problems-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-card,
.product-card {
    animation: fadeInUp 0.6s ease-out;
}

