/* =============================================================================
   iWitty Technologies — Marketing Website Styles
   Premium Dark Theme with Emerald Green Accents
   ============================================================================= */

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

:root {
    --emerald-400: #4a9438;
    --emerald-500: #3d7b2f;
    --emerald-600: #2c5922;
    --emerald-700: #1e3d17;
    --dark-950: #000000;
    --dark-900: #09090b;
    --dark-800: #18181b;
    --dark-700: #27272a;
    --dark-600: #3f3f46;
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(61, 123, 47, 0.15);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #3d7b2f, #4a9438);
    --gradient-glow: linear-gradient(135deg, rgba(61, 123, 47, 0.4), rgba(74, 148, 56, 0.1));
    --shadow-glow: 0 0 40px rgba(61, 123, 47, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #040904;
    /* Very dark rich green-black instead of flat black */
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Elegant ambient mesh background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(44, 89, 34, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 61, 23, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(61, 123, 47, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(20, 60, 15, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: ambientShift 25s ease-in-out infinite alternate;
}

@keyframes ambientShift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-2%, 2%) scale(1.05);
    }

    100% {
        transform: translate(2%, -2%) scale(0.95);
    }
}

/* Floating particles overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(52, 211, 153, 0.7), transparent),
        radial-gradient(2px 2px at 30% 65%, rgba(52, 211, 153, 0.6), transparent),
        radial-gradient(3px 3px at 50% 10%, rgba(52, 211, 153, 0.8), transparent),
        radial-gradient(2px 2px at 70% 40%, rgba(52, 211, 153, 0.6), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(52, 211, 153, 0.7), transparent),
        radial-gradient(3px 3px at 15% 85%, rgba(52, 211, 153, 0.65), transparent),
        radial-gradient(2px 2px at 45% 50%, rgba(52, 211, 153, 0.6), transparent),
        radial-gradient(2px 2px at 85% 15%, rgba(52, 211, 153, 0.75), transparent),
        radial-gradient(2px 2px at 60% 90%, rgba(52, 211, 153, 0.6), transparent),
        radial-gradient(3px 3px at 25% 35%, rgba(52, 211, 153, 0.7), transparent);
    pointer-events: none;
    z-index: 0;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.4;
    }
}

/* Ensure content sits above body effects */
nav,
section,
footer,
.hero,
header {
    position: relative;
    z-index: 1;
}

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

img {
    max-width: 100%;
}

/* =============================================================================
   Navigation
   ============================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* White navbar when over light sections */
.navbar.navbar-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
}

.navbar.navbar-light .logo-text {
    color: #3d7b2f;
}

.navbar.navbar-light .logo-tagline {
    color: #64748b;
}

.navbar.navbar-light .nav-links a {
    color: #4a5568;
}

.navbar.navbar-light .nav-links a:hover {
    color: #3d7b2f;
}

.navbar.navbar-light .nav-login-btn {
    background: #3d7b2f;
    color: #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #3d7b2f;
    letter-spacing: -0.5px;
}

.logo-text .tm {
    font-size: 10px;
    vertical-align: super;
    color: #3d7b2f;
    font-weight: 500;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-tagline {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.3px;
    margin-left: 10px;
    padding-left: 12px;
    position: relative;
    line-height: 22px;
    padding-top: 3px;
}

.logo-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 1px;
    height: 24px;
    background: rgba(148, 163, 184, 0.5);
}

.navbar.navbar-light .logo-tagline::before {
    background: #94a3b8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: auto;
    margin-right: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #3f3f46;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--emerald-400);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: #f0f7ee;
    color: #3d7b2f;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #2c5922;
    box-shadow: 0 0 30px rgba(240, 247, 238, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
    top: 5%;
    left: 15%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 70%);
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    animation: gridPulse 10s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(61, 123, 47, 0.15);
    border: 1px solid rgba(61, 123, 47, 0.3);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--emerald-400);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 238, 0.45), rgba(255, 255, 255, 0.7));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

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

.btn-primary {
    background: #f0f7ee;
    color: #3d7b2f;
    box-shadow: 0 0 24px rgba(240, 247, 238, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border: 1px solid #c8dfc2;
    box-shadow: 0 0 40px rgba(240, 247, 238, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-400);
    border: 1.5px solid var(--emerald-500);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--emerald-400);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* =============================================================================
   Light Theme Additions (Hero Glassmorphism)
   ============================================================================= */

.hero.light-hero {
    background: #f4fff8;
    background-image: radial-gradient(circle at 50% 30%, #ffffff 0%, #edfbf3 40%, #cbf2d8 80%, #a3e6c0 100%);
    color: #1a1a2e;
    border-bottom: none;
}

.light-hero .hero-bg-effects {
    opacity: 0.8;
}

.hero-floor-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(16, 185, 129, 0.3) 40%, transparent 70%);
    filter: blur(15px);
    z-index: 0;
    pointer-events: none;
}

.hero.light-hero .hero-badge {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #1e3d17;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero.light-hero .badge-dot {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.hero-title-light {
    font-weight: 400;
    color: rgba(30, 61, 23, 0.75);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
}

.hero-subtitle-light {
    color: #3f3f46;
    font-weight: 500;
}

.btn-light-theme {
    background: #ffffff;
    color: #1a3b25;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15), inset 0 0 0 1px #ffffff;
    font-weight: 600;
}

.btn-light-theme:hover {
    background: #f4fff8;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(30, 61, 23, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(30, 61, 23, 0.2);
    font-weight: 600;
}

.btn-glass:hover {
    background: rgba(16, 38, 12, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 38, 12, 0.3);
}

.hero-stats-wrapper {
    position: relative;
    margin-top: 60px;
    z-index: 10;
    width: 100%;
}

.hero-stats-light {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    min-width: 220px;
    animation: float 6s ease-in-out infinite;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.stat-card.stat-center {
    justify-content: center;
}

.stat-card:nth-child(2) {
    animation-delay: -2s;
}

.stat-card:nth-child(3) {
    animation-delay: -4s;
}

.stat-icon {
    font-size: 28px;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-card.stat-center .stat-content {
    align-items: center;
}

.stat-card .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #1e3d17;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.6);
}

.stat-card .stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #2c5922;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* =============================================================================
   Sections Common
   ============================================================================= */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f7ee;
    border: 1px solid #b8d4b0;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: #3d7b2f;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
    color: #1a1a2e;
}

.section-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
}

/* =============================================================================
   Why iWitty / Value Props Section
   ============================================================================= */

.why-section {
    padding: 72px 0;
    position: relative;
    background: #ffffff;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
    pointer-events: none;
    display: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.2), transparent, rgba(52, 211, 153, 0.15), transparent);
    animation: rotateBorder 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #ffffff;
    border-radius: calc(var(--radius-lg) - 1px);
    z-index: 0;
}

.value-card>* {
    position: relative;
    z-index: 1;
}

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

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

.value-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #3d7b2f;
}

.value-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

/* =============================================================================
   How It Works
   ============================================================================= */

.how-it-works {
    padding: 72px 0;
    background: #f7faf9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.18);
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.step-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

/* =============================================================================
   Trust Section
   ============================================================================= */

.trust-section {
    padding: 56px 0;
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 32px 20px;
    background: #f0f7ee;
    border: 1px solid #c8dfc2;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover {
    border-color: #3d7b2f;
    background: #e8f0e6;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(61, 123, 47, 0.15);
}

.trust-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
    animation: iconFloat 3s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon {
    animation-delay: 0.5s;
}

.trust-item:nth-child(3) .trust-icon {
    animation-delay: 1s;
}

.trust-item:nth-child(4) .trust-icon {
    animation-delay: 1.5s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.trust-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.trust-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* =============================================================================
   CTA Section
   ============================================================================= */

.cta-section {
    padding: 56px 0;
    background: #f7faf9;
}

.cta-box {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, #3d7b2f, #4a9438);
    border: none;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    animation: none;
}

@keyframes ctaGlow {
    0% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.08);
    }

    100% {
        box-shadow: 0 0 60px rgba(16, 185, 129, 0.18);
    }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    color: #ffffff;
}

.cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    position: relative;
}

.cta-box .btn-primary {
    background: #ffffff;
    color: #3d7b2f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-box .btn-primary:hover {
    background: #f0fdf4;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   About Section
   ============================================================================= */

.about {
    padding: 72px 0;
    background: #ffffff;
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f0f7ee;
    border: 1px solid #c8dfc2;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: #2d5f22;
}

.highlight-icon {
    font-size: 18px;
}

/* =============================================================================
   Contact Section
   ============================================================================= */

.contact {
    padding: 72px 0;
    background: #f7faf9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ee;
    border: 1px solid #c8dfc2;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 16px;
    color: #3d7b2f;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--emerald-500);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: #1a1a2e;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form select option {
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-form .btn-primary {
    background: linear-gradient(135deg, #3d7b2f, #4a9438);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(61, 123, 47, 0.3);
}

.contact-form .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(61, 123, 47, 0.4);
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #1a1a2e;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c5922;
}

.footer-tagline {
    font-size: 13px;
    color: #3f3f46;
    margin-left: 8px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 14px;
    color: #3f3f46;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #10b981;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

/* =============================================================================
   Responsive Design
   ============================================================================= */

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-login-btn {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 22px;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

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

/* Mobile Utilities */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-links.active .mobile-only {
        display: block !important;
    }
}