/* ============================================
   AGROSHIELD — Premium Dark Theme v2
   Bold Sans-Serif Headlines + Refined Polish
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1C1C1C;
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --text-muted: #555555;
    --accent: #D4A33C;
    --accent-glow: rgba(212, 163, 60, 0.15);
    --accent-hover: #E8B94A;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --nav-height: 80px;
    --section-padding: 140px;
    --content-width: 1200px;
    --content-wide: 1400px;

    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    display: block;
    max-width: 100%;
}

/* --- Noise/Grain Overlay (premium texture) --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* --- Utility --- */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container--wide {
    max-width: var(--content-wide);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Section Labels (01 — PRODUCTS) --- */
.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

/* --- Section Headline --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav__inner {
    max-width: var(--content-wide);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.nav__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav__logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--bg-primary);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.nav__cta:hover {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 163, 60, 0.3);
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero__video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.70;
}

/* Gradient overlays */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.1) 35%,
            rgba(10, 10, 10, 0.5) 65%,
            rgba(10, 10, 10, 1) 100%
        ),
        linear-gradient(90deg,
            rgba(10, 10, 10, 0.8) 0%,
            transparent 55%
        );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--content-wide);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero__label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-smooth) 0.3s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    max-width: 750px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s var(--ease-smooth) 0.5s forwards;
}

.hero__title em {
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #F0C95D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-smooth) 0.7s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-smooth) 0.9s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    border: none;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 163, 60, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn--ghost:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.btn__arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-smooth) 1.2s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

.section--products {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.section__header {
    margin-bottom: 80px;
}

/* Product Cards — Alternating Layout */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-smooth);
    min-height: 420px;
}

.product-card:hover {
    border-color: rgba(212, 163, 60, 0.2);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 163, 60, 0.05);
    transform: translateY(-4px);
}

.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even) > * {
    direction: ltr;
}

.product-card__visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-card__visual img {
    transform: scale(1.05);
}

/* CSS Mockup styles for products without real images */
.mockup {
    width: 85%;
    aspect-ratio: 16/10;
    background: #1A1A1A;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.mockup__topbar {
    height: 28px;
    background: #222222;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.mockup__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333333;
}

.mockup__dot:first-child { background: #FF5F57; }
.mockup__dot:nth-child(2) { background: #FEBC2E; }
.mockup__dot:nth-child(3) { background: #28C840; }

.mockup__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Dashboard mockup */
.mockup--dashboard .mockup__row {
    display: flex;
    gap: 8px;
}

.mockup__chart {
    flex: 1;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-glow), transparent);
    border-radius: 6px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mockup__chart::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
}

.mockup__stat-box {
    flex: 1;
    height: 60px;
    background: #1E1E1E;
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup__stat-value {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--accent);
    line-height: 1;
}

.mockup__stat-label {
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 4px;
}

.mockup__map {
    height: 80px;
    background: 
        radial-gradient(circle at 30% 50%, var(--accent-glow), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 163, 60, 0.08), transparent 40%),
        #1A1A1A;
    border-radius: 6px;
    border: 1px solid var(--border);
    position: relative;
}

.mockup__map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.mockup__map::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 65%;
    width: 4px;
    height: 4px;
    background: rgba(212, 163, 60, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 163, 60, 0.4);
    animation: pulse 2s ease-in-out 0.8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0.3; }
}

/* Phone mockup */
.mockup--phone {
    width: 180px;
    aspect-ratio: 9/18;
    border-radius: 24px;
    border: 2px solid #333;
    background: #111;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.mockup--phone .mockup__topbar {
    height: 24px;
    border-radius: 24px 24px 0 0;
    justify-content: center;
}

.mockup--phone .mockup__dot {
    display: none;
}

.mockup--phone .mockup__notch {
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 10px;
}

.mockup--phone .mockup__body {
    padding: 12px;
    gap: 8px;
}

.mockup__alert {
    padding: 10px;
    background: rgba(212, 163, 60, 0.08);
    border: 1px solid rgba(212, 163, 60, 0.2);
    border-radius: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.product-card:hover .mockup__alert:first-child {
    background: rgba(212, 163, 60, 0.15);
    border-color: rgba(212, 163, 60, 0.35);
}

.mockup__alert-icon {
    font-size: 14px;
    line-height: 1;
}

.mockup__alert-text {
    font-size: 9px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.mockup__alert-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2px;
    font-family: var(--font-display);
}

.mockup__weather-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.mockup__weather-label { font-size: 9px; color: var(--text-muted); }
.mockup__weather-value { font-size: 9px; color: var(--text-primary); font-weight: 600; }

/* Product card content */
.product-card__content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card__number {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.product-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s ease, color 0.3s ease;
}

.product-card__link:hover {
    gap: 14px;
    color: var(--accent-hover);
}

/* ============================================
   FEATURED PROJECT SECTION
   ============================================ */
.section--project {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.section--project::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 60, 0.06), transparent 70%);
    pointer-events: none;
}

.project-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.project-feature__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.project-feature__image:hover img {
    transform: scale(1.03);
}

.project-feature__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    pointer-events: none;
}

.project-feature__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 163, 60, 0.3);
}

.project-feature__content {
    display: flex;
    flex-direction: column;
}

.project-feature__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.project-feature__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.project-feature__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.project-stat__value {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.project-stat__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   NUMBERS / IMPACT SECTION
   ============================================ */
.section--numbers {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
}

.number-item {
    padding: 48px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
    transition: background 0.4s ease, transform 0.4s var(--ease-smooth);
}

.number-item:last-child {
    border-right: none;
}

.number-item:hover {
    background: var(--bg-card);
}

.number-item__value {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 76px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.number-item__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ============================================
   ABOUT TEASER SECTION
   ============================================ */
.section--about {
    background: var(--bg-secondary);
}

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

.about-content__quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 28px;
    position: relative;
    padding-left: 28px;
    border-left: 3px solid var(--accent);
}

.about-content__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-ventures {
    display: flex;
    gap: 20px;
}

.about-venture {
    flex: 1;
    padding: 28px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-venture:hover {
    border-color: rgba(212, 163, 60, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-venture__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-venture__role {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section--cta {
    background: var(--bg-primary);
    text-align: center;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-glow), transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    position: relative;
}

.cta__desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 44px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer__brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__col-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--accent);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 12px;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }

    .product-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-card:nth-child(even) {
        direction: ltr;
    }

    .product-card__visual {
        min-height: 280px;
    }

    .product-card__content {
        padding: 40px 32px;
    }

    .project-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .number-item:nth-child(2) {
        border-right: none;
    }

    .number-item:nth-child(1),
    .number-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --nav-height: 64px;
    }

    .container, .container--wide {
        padding: 0 20px;
    }

    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__inner {
        padding: 0 20px;
    }

    .nav__cta {
        display: none;
    }

    .hero {
        align-items: center;
        padding-bottom: 0;
    }

    .hero__content {
        padding: 0 20px;
    }

    .hero__title {
        font-size: clamp(32px, 9vw, 52px);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        text-align: center;
        justify-content: center;
    }

    .product-card__content {
        padding: 32px 24px;
    }

    .product-card__title {
        font-size: 24px;
    }

    .project-feature__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-ventures {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
}