/* ==========================================
   WIDINTENS — Bright AgriTech Stylesheet
   ========================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green:       #6CC24A;
    --green-light: #8FD866;
    --green-dark:  #4FA82F;
    --tech-blue:   #3A9FD9;
    --tech-cyan:   #5BC0DE;
    --bg-light:    #F4F7F2;
    --bg-white:    #FFFFFF;
    --bg-card:     #FAFCF8;
    --dark:        #1A2E1A;
    --dark-2:      #243324;
    --dark-3:      #2E3F2E;
    --text:        #2A3D2A;
    --text-light:  #4A5F4A;
    --muted:       #637963;
    --border:      rgba(106,194,74,0.18);
    --border-h:    rgba(106,194,74,0.35);
    --shadow-sm:   0 2px 8px rgba(42,61,42,0.08);
    --shadow-md:   0 4px 16px rgba(42,61,42,0.12);
    --shadow-lg:   0 8px 32px rgba(42,61,42,0.16);
    --radius:      12px;
    --radius-lg:   20px;
    --nav-h:       72px;
    --transition:  0.25s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== NOISE ===== */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(106,194,74,0.12);
    border: 1px solid rgba(106,194,74,0.25);
    padding: 0.35rem 0.95rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
    font-weight: 500;
}

.section-label.light {
    color: var(--green-dark);
    background: rgba(106,194,74,0.15);
    border-color: rgba(106,194,74,0.3);
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.section-title.light { color: var(--dark); }

.section-desc {
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.section-desc.light { color: var(--text-light); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

.body-text {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.accent      { color: var(--green); }
.green       { color: var(--green-light); }
.green-light { color: var(--green-light); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    height: var(--nav-h);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
    background: var(--bg-white);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-icon path,
.logo-icon circle {
    transition: all var(--transition);
}

.nav-logo:hover .logo-icon path {
    stroke: var(--green-dark);
}

.nav-logo:hover .logo-icon circle {
    fill: var(--green-dark);
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--dark);
}

.logo-dot { 
    color: var(--green);
    font-size: 1.3rem;
}

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    border-radius: 8px;
    transition: all var(--transition);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: rgba(106,194,74,0.1);
}

/* CTA button */
.nav-cta {
    flex-shrink: 0;
    background: var(--green);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(108,194,74,0.25);
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108,194,74,0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: flex; }

.mobile-link {
    padding: 0.85rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
    font-weight: 500;
}

.mobile-link:hover { 
    color: var(--green);
}

.mobile-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
    background: var(--green);
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(108,194,74,0.25);
}

.mobile-cta:hover { 
    background: var(--green-dark);
    box-shadow: 0 4px 12px rgba(108,194,74,0.35);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    background: linear-gradient(135deg, rgba(106,194,74,0.08) 0%, rgba(58,159,217,0.06) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background:
        radial-gradient(circle at 20% 30%, rgba(106,194,74,0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(58,159,217,0.12), transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    border: none;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(108,194,74,0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108,194,74,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.visual-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.visual-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.visual-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.visual-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.visual-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(106,194,74,0.2), rgba(58,159,217,0.15));
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.about-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-text {
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-item:hover {
    border-color: var(--green);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-text h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--tech-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(106,194,74,0.15), rgba(58,159,217,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--green), var(--tech-blue));
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--green);
    transition: color var(--transition);
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    background: rgba(106,194,74,0.12);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.service-desc {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green), var(--tech-blue));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L30 60 M0 30 L60 30' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.stat-suffix {
    font-size: 0.6em;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 6rem 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--green), var(--tech-blue));
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.team-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.team-role {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testi-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(106,194,74,0.1);
    line-height: 1;
}

.testi-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.testi-text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--tech-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.testi-info {
    flex: 1;
}

.testi-name {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--dark);
}

.testi-role {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
}

.contact-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background:
        radial-gradient(circle at 20% 20%, var(--green), transparent 40%),
        radial-gradient(circle at 80% 80%, var(--tech-blue), transparent 40%);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-col h2 {
    margin-bottom: 1rem;
}

.contact-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(106,194,74,0.15), rgba(58,159,217,0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.contact-list li span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form */
.contact-form-col {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.req {
    color: var(--green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-white);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(106,194,74,0.1);
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    background: var(--green);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(108,194,74,0.3);
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108,194,74,0.4);
}

.alert {
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-ok {
    background: rgba(106,194,74,0.15);
    color: var(--green-dark);
    border: 2px solid rgba(106,194,74,0.3);
}

.alert-err {
    background: rgba(239,68,68,0.15);
    color: #b91c1c;
    border: 2px solid rgba(239,68,68,0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.6);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.fsocial {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    font-weight: 500;
}

.fsocial:hover {
    color: var(--green-light);
}

.footer-nav h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-nav a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.7rem;
    transition: all var(--transition);
    padding-left: 0;
}

.footer-nav a:hover {
    color: var(--green-light);
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom div {
    display: flex;
    gap: 2rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--green-light);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 968px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .visual-grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .visual-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .services-grid,
    .team-grid,
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-col {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stat {
        position: static;
        margin-top: 1.5rem;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .service-card,
    .testi-card {
        padding: 1.8rem 1.5rem;
    }

    .team-card {
        padding: 1.5rem 1rem;
    }
}
