/* ===================== VARIABLES ===================== */
:root {
    --green-900: #1a3a1a;
    --green-800: #1e4d1e;
    --green-700: #2d6a2d;
    --green-600: #3a8a3a;
    --green-500: #4caf50;
    --green-400: #66bb6a;
    --green-300: #81c784;
    --green-200: #a5d6a7;
    --green-100: #c8e6c9;
    --green-50: #e8f5e9;
    --brown-700: #5d4037;
    --brown-500: #8d6e63;
    --brown-300: #bcaaa4;
    --brown-100: #efebe9;
    --cream: #faf8f2;
    --dark: #1b2a1b;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26,58,26,0.08);
    --shadow-md: 0 4px 20px rgba(26,58,26,0.12);
    --shadow-lg: 0 8px 40px rgba(26,58,26,0.16);
    --shadow-xl: 0 16px 60px rgba(26,58,26,0.20);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Fredoka', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76,175,80,0.1);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo img { height: 52px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-links a {
    font-weight: 500; font-size: 0.95rem; color: var(--green-800);
    transition: color 0.2s; position: relative;
}
.navbar-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--green-500);
    border-radius: 2px; transition: width 0.3s;
}
.navbar-links a:hover::after { width: 100%; }
.navbar-cta {
    background: var(--green-600); color: white !important;
    padding: 10px 24px; border-radius: 50px; font-weight: 600; transition: all 0.3s;
}
.navbar-cta:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(58,138,58,0.3); }
.navbar-cta::after { display: none !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 26px; height: 2.5px; background: var(--green-800); border-radius: 4px; transition: all 0.3s; }

/* ===================== FOOTER ===================== */
.footer {
    background: var(--green-900); color: rgba(255,255,255,0.7); padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; transition: all 0.3s; font-size: 1.1rem;
}
.footer-social a:hover { background: var(--green-600); color: white; }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--green-400); }

/* ===================== PAGE HERO (sub-pages) ===================== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(170deg, var(--green-50) 0%, var(--cream) 50%, #f0faf0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(76,175,80,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero h1 { font-size: 2.8rem; color: var(--green-900); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--brown-500); max-width: 600px; margin: 0 auto; }
.page-hero .breadcrumb {
    display: flex; justify-content: center; gap: 8px; align-items: center;
    margin-bottom: 20px; font-size: 0.9rem; color: var(--brown-500);
}
.page-hero .breadcrumb a { color: var(--green-600); font-weight: 500; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ===================== PAGE CONTENT ===================== */
.page-content { padding: 80px 0 100px; }
.page-content .container.narrow { max-width: 800px; }
.page-content h2 { font-size: 1.6rem; color: var(--green-900); margin: 40px 0 16px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.2rem; color: var(--green-800); margin: 28px 0 12px; }
.page-content p { color: var(--brown-700); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.page-content ul, .page-content ol {
    margin: 0 0 16px 24px; color: var(--brown-700); font-size: 1rem; line-height: 1.8;
}
.page-content li { margin-bottom: 8px; }
.page-content a.inline-link { color: var(--green-600); font-weight: 500; text-decoration: underline; }
.page-content a.inline-link:hover { color: var(--green-800); }
.content-card {
    background: white; border-radius: var(--radius-lg); padding: 36px;
    border: 1px solid rgba(76,175,80,0.08); margin-bottom: 24px; transition: all 0.3s;
}
.content-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-200); }
.content-card h3 { margin-top: 0; }

/* ===================== KB GRID ===================== */
.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.kb-card {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid rgba(76,175,80,0.08); transition: all 0.3s; cursor: pointer;
}
.kb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.kb-card-icon { font-size: 2rem; margin-bottom: 16px; }
.kb-card h3 { font-size: 1.15rem; color: var(--green-900); margin: 0 0 8px; }
.kb-card p { color: var(--brown-500); font-size: 0.9rem; margin: 0 0 16px; }
.kb-card .article-count { font-size: 0.82rem; color: var(--green-600); font-weight: 600; }

/* ===================== STATUS ===================== */
.status-bar {
    display: flex; align-items: center; gap: 12px;
    background: white; border-radius: var(--radius-md); padding: 20px 28px;
    border: 1px solid rgba(76,175,80,0.08); margin-bottom: 16px; transition: all 0.3s;
}
.status-bar:hover { box-shadow: var(--shadow-sm); }
.status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green { background: var(--green-500); box-shadow: 0 0 8px rgba(76,175,80,0.4); }
.status-dot.yellow { background: #ffc107; box-shadow: 0 0 8px rgba(255,193,7,0.4); }
.status-bar .name { font-weight: 600; color: var(--green-900); flex: 1; }
.status-bar .status-text { font-size: 0.9rem; color: var(--green-600); font-weight: 500; }
.status-overall {
    background: var(--green-600); color: white; border-radius: var(--radius-lg);
    padding: 24px 32px; text-align: center; margin-bottom: 40px;
    font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 500;
}
.uptime-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.uptime-card {
    background: white; border-radius: var(--radius-md); padding: 28px; text-align: center;
    border: 1px solid rgba(76,175,80,0.08);
}
.uptime-card .number { font-family: 'Fredoka', sans-serif; font-size: 2.4rem; color: var(--green-600); font-weight: 700; }
.uptime-card .label { color: var(--brown-500); font-size: 0.9rem; margin-top: 4px; }

/* ===================== MIGRATION STEPS ===================== */
.steps { counter-reset: step; }
.step-item {
    display: flex; gap: 24px; margin-bottom: 32px;
    background: white; border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid rgba(76,175,80,0.08); transition: all 0.3s;
}
.step-item:hover { box-shadow: var(--shadow-md); border-color: var(--green-200); }
.step-number {
    counter-increment: step;
    width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
    background: var(--green-100); color: var(--green-700);
    font-family: 'Fredoka', sans-serif; font-size: 1.4rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.step-item h3 { margin: 0 0 8px; }
.step-item p { margin: 0; }

/* ===================== CTA BANNER (reusable) ===================== */
.cta-banner {
    padding: 80px 0; text-align: center;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    color: white;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.85; max-width: 500px; margin: 0 auto 32px; }
.btn-white {
    background: white; color: var(--green-800); padding: 16px 36px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
    border: none; cursor: pointer; font-family: inherit;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===================== ABOUT PAGE ===================== */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.about-value-card {
    background: white; border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid rgba(76,175,80,0.08); text-align: center; transition: all 0.3s;
}
.about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-value-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.about-value-card h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--green-900); }
.about-value-card p { margin: 0; color: var(--brown-500); font-size: 0.9rem; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
.about-stat {
    text-align: center; background: white; border-radius: var(--radius-md); padding: 28px;
    border: 1px solid rgba(76,175,80,0.08);
}
.about-stat .number { font-family: 'Fredoka', sans-serif; font-size: 2.2rem; color: var(--green-600); font-weight: 700; }
.about-stat .label { color: var(--brown-500); font-size: 0.85rem; margin-top: 4px; }

/* ===================== LEGAL PAGES ===================== */
.legal-meta {
    background: var(--green-50); border-radius: var(--radius-md); padding: 16px 24px;
    margin-bottom: 32px; font-size: 0.9rem; color: var(--brown-500);
}
.legal-toc {
    background: white; border-radius: var(--radius-md); padding: 24px 32px;
    border: 1px solid rgba(76,175,80,0.08); margin-bottom: 40px;
}
.legal-toc h3 { margin: 0 0 12px; font-size: 1rem; color: var(--green-800); }
.legal-toc ol { margin: 0 0 0 20px; }
.legal-toc li { padding: 4px 0; }
.legal-toc a { color: var(--green-600); font-size: 0.9rem; }
.legal-toc a:hover { text-decoration: underline; }

/* ===================== HOMEPAGE — HERO ===================== */
.hero {
    padding: 140px 0 80px; position: relative; overflow: hidden;
    background: linear-gradient(170deg, var(--green-50) 0%, var(--cream) 50%, #f0faf0 100%);
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(76,175,80,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,195,74,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    gap: 60px; position: relative; z-index: 1;
}
.hero-content { animation: slideUp 0.8s ease-out; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(76,175,80,0.1); color: var(--green-700);
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(76,175,80,0.15);
}
.hero-badge .dot {
    width: 8px; height: 8px; background: var(--green-500);
    border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 { font-size: 3.4rem; font-weight: 700; color: var(--green-900); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero h1 span { color: var(--green-600); position: relative; }
.hero h1 span::after {
    content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
    height: 8px; background: rgba(76,175,80,0.15); border-radius: 4px; z-index: -1;
}
.hero p { font-size: 1.15rem; color: var(--brown-700); margin-bottom: 36px; max-width: 500px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-600); color: white; padding: 16px 32px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,138,58,0.3); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--green-700); padding: 16px 32px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; border: 2px solid var(--green-200); cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { border-color: var(--green-500); background: var(--green-50); transform: translateY(-2px); }

.hero-image { position: relative; animation: slideUp 0.8s ease-out 0.2s both; }
.hero-image-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-image-wrapper img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-image-wrapper::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(76,175,80,0.1), transparent); pointer-events: none;
}
.hero-float-card {
    position: absolute; background: white; border-radius: var(--radius-md);
    padding: 16px 20px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; animation: float 3s ease-in-out infinite;
}
.hero-float-card.uptime { bottom: -20px; left: -20px; }
.hero-float-card.speed { top: -16px; right: -16px; animation-delay: 1.5s; }
.float-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.float-icon.green { background: var(--green-100); }
.float-icon.brown { background: var(--brown-100); }
.float-card-text strong { display: block; font-size: 1.1rem; color: var(--green-900); }
.float-card-text small { color: var(--brown-500); font-size: 0.8rem; }

/* ===================== HOMEPAGE — TRUST STRIP ===================== */
.trust-strip { padding: 40px 0; background: white; border-top: 1px solid var(--green-100); border-bottom: 1px solid var(--green-100); }
.trust-strip .container { text-align: center; }
.trust-strip p { font-size: 0.85rem; color: var(--brown-500); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 24px; }
.trust-features { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--green-800); font-size: 0.95rem; }
.trust-item svg { width: 24px; height: 24px; color: var(--green-500); flex-shrink: 0; }

/* ===================== HOMEPAGE — SERVICES ===================== */
.services { padding: 100px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(76,175,80,0.1); color: var(--green-700);
    padding: 6px 16px; border-radius: 50px; font-size: 0.82rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.section-header h2 { font-size: 2.6rem; color: var(--green-900); margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--brown-500); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.4s; border: 1px solid rgba(76,175,80,0.08); position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--green-200); }
.service-card-image { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 32px; }
.service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.service-icon.domain { background: linear-gradient(135deg, var(--green-100), var(--green-200)); }
.service-icon.hosting { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.service-icon.email { background: linear-gradient(135deg, var(--brown-100), #d7ccc8); }
.service-card h3 { font-size: 1.4rem; color: var(--green-900); margin-bottom: 12px; }
.service-card p { color: var(--brown-500); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; color: var(--green-800); }
.service-features li svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-600); font-weight: 600; font-size: 0.95rem; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }

/* ===================== HOMEPAGE — WHY CHOOSE US ===================== */
.why-us {
    padding: 100px 0; color: white; position: relative; overflow: hidden;
    background: linear-gradient(170deg, var(--green-900) 0%, var(--green-800) 100%);
}
.why-us::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.why-us .section-header h2 { color: white; }
.why-us .section-header p { color: rgba(255,255,255,0.7); }
.why-us .section-label { background: rgba(255,255,255,0.1); color: var(--green-300); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; position: relative; z-index: 1; }
.why-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
    padding: 36px; transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(76,175,80,0.2); display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; margin-bottom: 20px;
}
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--green-200); }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }

/* ===================== HOMEPAGE — FEATURES SHOWCASE ===================== */
.features-showcase { padding: 100px 0; background: white; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-image img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.5s; }
.feature-image:hover img { transform: scale(1.03); }
.feature-text .section-label { margin-bottom: 16px; }
.feature-text h3 { font-size: 2rem; color: var(--green-900); margin-bottom: 16px; }
.feature-text p { color: var(--brown-500); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.feature-checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-checklist li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--green-800); font-weight: 500; }
.feature-checklist li svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }

/* ===================== HOMEPAGE — PRICING ===================== */
.pricing { padding: 100px 0; background: var(--green-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pricing-card {
    background: white; border-radius: var(--radius-lg); padding: 40px;
    position: relative; border: 2px solid transparent; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--green-500); box-shadow: var(--shadow-lg); }
.pricing-card.featured::before {
    content: 'Most Popular'; position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%); background: var(--green-600); color: white;
    padding: 4px 20px; border-radius: 50px; font-size: 0.8rem;
    font-weight: 600; font-family: 'Fredoka', sans-serif;
}
.pricing-card h3 { font-size: 1.3rem; color: var(--green-800); margin-bottom: 8px; }
.pricing-card .price { font-family: 'Fredoka', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--green-900); margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; color: var(--brown-500); font-weight: 400; }
.pricing-card .price-desc { font-size: 0.9rem; color: var(--brown-500); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--green-100); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: var(--green-800); }
.pricing-features li svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }
.pricing-btn {
    width: 100%; padding: 14px; border-radius: 50px; font-weight: 600;
    font-size: 1rem; cursor: pointer; transition: all 0.3s;
    text-align: center; display: block; font-family: inherit;
}
.pricing-btn.primary { background: var(--green-600); color: white; border: none; }
.pricing-btn.primary:hover { background: var(--green-700); transform: translateY(-1px); }
.pricing-btn.outline { background: transparent; color: var(--green-700); border: 2px solid var(--green-200); }
.pricing-btn.outline:hover { border-color: var(--green-500); background: var(--green-50); }

/* ===================== HOMEPAGE — TESTIMONIALS ===================== */
.testimonials { padding: 100px 0; background: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
    background: var(--cream); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid rgba(76,175,80,0.08); transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #ffc107; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.7; color: var(--brown-700); margin-bottom: 20px; font-style: italic; }

/* ===================== HOMEPAGE — CTA ===================== */
.cta {
    padding: 100px 0; text-align: center; color: white;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
    position: relative; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta-logo { width: 160px; height: 160px; object-fit: contain; margin-bottom: 24px; }
.cta h2 { font-size: 2.6rem; margin-bottom: 16px; }
.cta p { font-size: 1.15rem; opacity: 0.85; max-width: 550px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-ghost {
    background: rgba(255,255,255,0.15); color: white; padding: 16px 36px;
    border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: all 0.3s; border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ===================== ANIMATIONS ===================== */
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===================== FADE-IN ===================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.6rem; }
    .hero-image { max-width: 560px; }
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .kb-grid { grid-template-columns: 1fr 1fr; }
    .about-values { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .uptime-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .navbar-links { display: none; }
    .mobile-toggle { display: flex; }
    .navbar-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 76px; left: 0; right: 0; background: white;
        padding: 24px; box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--green-100); gap: 16px;
    }
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .feature-checklist { grid-template-columns: 1fr; }
    .trust-features { gap: 24px; }
    .page-hero { padding: 120px 0 48px; }
    .page-hero h1 { font-size: 2rem; }
    .kb-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; max-width: 250px; margin-left: auto; margin-right: auto; }
    .step-item { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
