/* ============================
   DIGI BILLING — STYLE.CSS
   ============================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

/* --- CSS VARIABLES --- */
:root {
    --primary: #1B5E20;
    --primary-light: #2E7D32;
    --primary-dark: #144016;
    --accent: #43A047;
    --accent-light: #66BB6A;
    --success: #2E7D32;
    --warning: #F9A825;
    --danger: #ef4444;
    --dark: #1B5E20;
    --dark-2: #f0f7f0;
    --dark-3: #4CAF50;
    --mid: #5a7a5c;
    --light-2: #3d6b40;
    --light-3: #6db870;
    --light-4: #c8e6c9;
    --light-5: #E8F5E9;
    --white: #ffffff;

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(27, 94, 32, 0.10), 0 1px 2px rgba(27, 94, 32, 0.07);
    --shadow-md: 0 4px 16px rgba(27, 94, 32, 0.10);
    --shadow-lg: 0 10px 40px rgba(27, 94, 32, 0.13);
    --shadow-glow: 0 0 40px rgba(46, 125, 50, 0.20);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: #1a2e1b;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    position: relative;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-5);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-full);
}

/* =====================
   PRELOADER
   ===================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(46, 125, 50, 0.2);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 94, 32, 0.10);
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
}

.nav-logo span.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3d6b40;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-light));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.30);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.40);
}

.nav-cta::after {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s ease;
}

.btn:hover::before {
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27, 94, 32, 0.40);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid rgba(46, 125, 50, 0.35);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(46, 125, 50, 0.08);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(67, 160, 71, 0.30);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(67, 160, 71, 0.40);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 125, 50, 0.10);
    color: var(--primary);
    border: 1px solid rgba(46, 125, 50, 0.22);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.0625rem;
    color: #4a7a4d;
    line-height: 1.7;
}

/* =====================
   CARDS — BASE
   ===================== */
.card {
    background: rgba(232, 245, 233, 0.7);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(46, 125, 50, 0.30);
    box-shadow: 0 8px 32px rgba(27, 94, 32, 0.10);
    transform: translateY(-4px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(46, 125, 50, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(102, 187, 106, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(67, 160, 71, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 125, 50, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 125, 50, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 0;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 125, 50, 0.10);
    border: 1px solid rgba(46, 125, 50, 0.25);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
    animation: fadeInDown 0.7s ease both;
}

.hero-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: #3d5c40;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    animation: fadeInUp 0.7s 0.45s ease both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: #5a7a5c;
    margin-top: 4px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 560px;
    z-index: 1;
    animation: fadeInRight 0.9s 0.3s ease both;
}

.hero-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(46, 125, 50, 0.12);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dot:nth-child(1) {
    background: #ef4444;
}

.dashboard-dot:nth-child(2) {
    background: #f59e0b;
}

.dashboard-dot:nth-child(3) {
    background: #10b981;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.dash-stat {
    background: rgba(232, 245, 233, 0.9);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-md);
    padding: 16px;
}

.dash-stat-label {
    font-size: 0.7rem;
    color: #5a7a5c;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.dash-stat-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.dash-stat-value.green {
    color: var(--primary);
}

.dash-stat-value.blue {
    color: var(--accent);
}

.dash-stat-value.cyan {
    color: var(--accent-light);
}

.dashboard-chart {
    background: rgba(232, 245, 233, 0.9);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.chart-label {
    font-size: 0.75rem;
    color: #5a7a5c;
    font-weight: 500;
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 72px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent-light), var(--primary-light));
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    opacity: 1;
}

.chart-bar:nth-child(odd) {
    opacity: 0.5;
}

.chart-bar:nth-child(4) {
    opacity: 1;
    height: 100%;
}

.dashboard-invoice {
    background: rgba(232, 245, 233, 0.9);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inv-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.inv-id {
    font-size: 0.7875rem;
    font-weight: 600;
    color: var(--primary);
}

.inv-date {
    font-size: 0.7rem;
    color: #5a7a5c;
}

.inv-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.inv-amount {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--success);
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
    padding: 100px 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(46, 125, 50, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27, 94, 32, 0.10);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.icon-purple {
    background: rgba(46, 125, 50, 0.12);
    color: var(--primary);
}

.icon-cyan {
    background: rgba(67, 160, 71, 0.12);
    color: var(--accent);
}

.icon-green {
    background: rgba(102, 187, 106, 0.15);
    color: var(--accent-light);
}

.icon-amber {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-desc {
    font-size: 0.9375rem;
    color: #4a7a4d;
    line-height: 1.65;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent, rgba(46, 125, 50, 0.04) 50%, transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 22px;
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.28);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-desc {
    font-size: 0.9rem;
    color: #4a7a4d;
    line-height: 1.6;
}

/* =====================
   PRICING SECTION
   ===================== */
.pricing {
    padding: 100px 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.14), rgba(102, 187, 106, 0.08));
    border-color: rgba(46, 125, 50, 0.35);
    box-shadow: 0 0 50px rgba(27, 94, 32, 0.13);
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent-light));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #4a7a4d;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4a7a4d;
    padding-bottom: 8px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.price-period {
    font-size: 0.9rem;
    color: #5a7a5c;
    padding-bottom: 8px;
}

.plan-desc {
    font-size: 0.875rem;
    color: #5a7a5c;
    margin-bottom: 28px;
    line-height: 1.55;
}

.plan-divider {
    height: 1px;
    background: rgba(46, 125, 50, 0.12);
    margin-bottom: 28px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2e5230;
}

.plan-feature .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    font-weight: 700;
}

.plan-feature.disabled {
    opacity: 0.35;
}

.plan-feature.disabled .check {
    background: rgba(100, 116, 139, 0.15);
    color: var(--mid);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent, rgba(46, 125, 50, 0.04) 50%, transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(46, 125, 50, 0.25);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--warning);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: #3d6b40;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--primary);
}

.author-role {
    font-size: 0.8125rem;
    color: #5a7a5c;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    padding: 80px 5%;
    margin: 0 5% 80px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.92), rgba(46, 125, 50, 0.85));
    border: 1px solid rgba(46, 125, 50, 0.30);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.cta-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: #1B5E20;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 64px 5% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.60);
}

.footer-copy a {
    color: var(--white);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.60);
}

.footer-legal a:hover {
    color: var(--white);
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
    padding: 140px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46, 125, 50, 0.12) 0%, transparent 65%);
    z-index: 0;
}

.page-hero .hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #5a7a5c;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #c8e6c9;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-story {
    padding: 80px 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-bg {
    aspect-ratio: 1;
    max-width: 420px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(102, 187, 106, 0.08));
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-visual-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(46, 125, 50, 0.15) 0%, transparent 60%);
}

.about-big-icon {
    font-size: 6rem;
    opacity: 0.4;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(46, 125, 50, 0.20);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 0.8125rem;
    color: #5a7a5c;
    font-weight: 500;
}

.about-text-content {
    max-width: 540px;
}

.about-lead {
    font-size: 1.125rem;
    color: #3d6b40;
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-body {
    font-size: 0.9375rem;
    color: #5a7a5c;
    line-height: 1.75;
    margin-bottom: 32px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(46, 125, 50, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text strong {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 0.9375rem;
}

.highlight-text span {
    font-size: 0.875rem;
    color: #5a7a5c;
}

/* VALUES */
.values {
    padding: 80px 5%;
    background: linear-gradient(180deg, transparent, rgba(46, 125, 50, 0.04) 50%, transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(46, 125, 50, 0.25);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.value-desc {
    font-size: 0.875rem;
    color: #5a7a5c;
    line-height: 1.6;
}

/* TEAM */
.team {
    padding: 80px 5%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(46, 125, 50, 0.25);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 18px;
    border: 3px solid rgba(46, 125, 50, 0.15);
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.team-role {
    font-size: 0.8125rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.team-bio {
    font-size: 0.8125rem;
    color: #5a7a5c;
    line-height: 1.6;
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section {
    padding: 80px 5%;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-info-desc {
    font-size: 0.9375rem;
    color: var(--light-2);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(46, 125, 50, 0.10);
    border: 1px solid rgba(46, 125, 50, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.8125rem;
    color: #5a7a5c;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
}

/* FORM */
.contact-form-card {
    background: rgba(232, 245, 233, 0.5);
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(8px);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3d6b40;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.90);
    border: 1.5px solid rgba(46, 125, 50, 0.18);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    color: #1a2e1b;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    width: 100%;
    outline: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8aac8b;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(46, 125, 50, 0.50);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.10);
    background: rgba(255, 255, 255, 1);
}

.form-textarea {
    resize: vertical;
    min-height: 136px;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E7D32' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--white);
    color: #1a2e1b;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(46, 125, 50, 0.25);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 0.875rem;
    color: #5a7a5c;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary);
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    color: var(--success);
    font-weight: 600;
    gap: 8px;
}

.form-success.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAP placeholder */
.map-section {
    padding: 0 5% 80px;
}

.map-placeholder {
    height: 320px;
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #5a7a5c;
    font-size: 0.9375rem;
    overflow: hidden;
    position: relative;
}

.map-icon {
    font-size: 2.5rem;
    opacity: 0.4;
}

/* FAQ */
.faq {
    padding: 80px 5%;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(232, 245, 233, 0.6);
    border: 1px solid rgba(46, 125, 50, 0.10);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.open {
    border-color: rgba(46, 125, 50, 0.30);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 0.9375rem;
    gap: 12px;
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.10);
    border: 1px solid rgba(46, 125, 50, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-item.open .faq-icon {
    background: rgba(46, 125, 50, 0.18);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: #3d6b40;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.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;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(32px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =====================
   NEW PRICING SECTION (INR / Yearly)
   ===================== */

/* Override pricing grid to be 3 equal columns */
.pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}

/* Base card – white bg, subtle border, rounded */
.pricing .pricing-card {
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing .pricing-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

/* Featured / Recommended card – blue-purple border */
.featured-plan {
    border: 2.5px solid #6C63FF !important;
    box-shadow: 0 6px 30px rgba(108, 99, 255, 0.15) !important;
}

/* Plan name (1 YEAR / 3 YEARS / 5 YEARS) */
.pricing .plan-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

/* Top row: plan name + Recommended badge side by side */
.plan-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.plan-top-row .plan-name {
    margin-bottom: 0;
}

/* "Recommended" purple pill badge */
.recommended-badge {
    background: #6C63FF;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 99px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Price row: big INR number + +GST label */
.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 12px 0 4px;
    flex-wrap: wrap;
}

.plan-price-inr {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1;
}

/* Featured card price is same but we keep green */
.featured-price {
    color: #2E7D32;
}

.plan-price-gst {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    padding-bottom: 4px;
}

.plan-save {
    color: #555;
    font-weight: 600;
}

/* "Best Value!" green pill */
.best-value-pill {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 8px;
    margin: 10px 0 4px;
    letter-spacing: 0.3px;
}

/* Divider */
.pricing .plan-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 18px 0;
}

/* Feature list */
.pricing .plan-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
    flex: 1;
}

.pricing .plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.915rem;
    color: #333;
    line-height: 1.45;
}

/* Green checkmark icon */
.check-icon {
    color: #00BFA5;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Buttons */
.btn-plan-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border: 2px solid #2E7D32;
    color: #2E7D32;
    background: transparent;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-plan-outline:hover {
    background: #2E7D32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.25);
}

.btn-plan-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.30);
}

.btn-plan-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(27, 94, 32, 0.40);
}

/* Responsive */
@media (max-width: 900px) {
    .pricing .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .featured-plan {
        order: -1;
    }
}

@media (max-width: 480px) {
    .plan-price-inr {
        font-size: 2.2rem;
    }
}

/* =====================
   BACK TO TOP
   ===================== */

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: var(--white);
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.45);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .hero-visual {
        width: 46%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 5%;
        gap: 24px;
        border-bottom: 1px solid rgba(46, 125, 50, 0.10);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 5% 60px;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .cta-section {
        padding: 56px 24px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }
}