/* ============================================
   EASY ERP — Trust-Forward Light Design
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Navy foundation — authority & trust */
    --navy: #1B2A4A;
    --navy-light: #2D4066;
    --navy-muted: #4A5E80;

    /* Warm teal — professional, not techy */
    --primary: #0D7C66;
    --primary-light: #10A37F;
    --primary-bg: rgba(13, 124, 102, 0.06);
    --primary-border: rgba(13, 124, 102, 0.15);

    /* Warm gold accent — trust, premium */
    --accent: #C4841D;
    --accent-light: #E09B2D;
    --accent-bg: rgba(196, 132, 29, 0.08);

    /* Warm neutrals */
    --white: #FFFFFF;
    --cream: #FDFBF7;
    --warm-gray-50: #FAF8F5;
    --warm-gray-100: #F3F0EB;
    --warm-gray-200: #E8E3DC;
    --warm-gray-300: #D4CEC5;
    --text-primary: #1B2A4A;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;

    --border: #E8E3DC;
    --border-light: #F0ECE6;

    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-xs: 0 1px 2px rgba(27, 42, 74, 0.04);
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 24px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 42, 74, 0.10);
    --shadow-card: 0 1px 3px rgba(27, 42, 74, 0.04), 0 6px 24px rgba(27, 42, 74, 0.06);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: 0.25s ease;
}

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

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    letter-spacing: -0.01em;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 124, 102, 0.25);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--warm-gray-200);
}

.btn-secondary:hover {
    border-color: var(--navy);
    background: var(--warm-gray-50);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full { width: 100%; }


/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-light { color: var(--navy); }
.logo-erp { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-light) !important;
}

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

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}


/* ===========================================
   HERO — Light, warm, confident
   =========================================== */
.hero {
    position: relative;
    padding: 160px 0 60px;
    background: var(--cream);
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -200px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 124, 102, 0.04), transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeUp 0.6s 0.08s ease both;
}

.hero-highlight {
    color: var(--primary);
}

.hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.16s ease both;
}

.hero-sub em {
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    animation: fadeUp 0.6s 0.24s ease both;
}

.hero-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    animation: fadeUp 0.6s 0.32s ease both;
}

/* Proof strip — sits at the bottom of hero */
.hero-proof-strip {
    display: flex;
    gap: 0;
    margin-top: 64px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    animation: fadeUp 0.6s 0.4s ease both;
}

.hero-proof-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    text-align: center;
}

.hero-proof-item + .hero-proof-item {
    border-left: 1px solid var(--border-light);
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}


/* ===========================================
   PROBLEM / COMPARISON
   =========================================== */
.problem {
    padding: 100px 0;
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 20px;
    align-items: start;
}

.problem-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.problem-card:hover {
    box-shadow: var(--shadow-sm);
}

.problem-middle {
    background: var(--cream);
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-card);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    opacity: 0.8;
}

.problem-icon-check {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 18px;
}

.problem-card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.problem-card p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.problem-verdict {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.problem-verdict.good {
    color: var(--primary);
}


/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ===========================================
   HOW IT WORKS
   =========================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--warm-gray-50);
}

.steps {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: var(--warm-gray-200);
    border-radius: 2px;
}

.step {
    display: flex;
    gap: 36px;
    padding: 28px 0;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
}


/* ===========================================
   SERVICES
   =========================================== */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: var(--navy);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}


/* ===========================================
   PRICING
   =========================================== */
.pricing {
    padding: 100px 0;
    background: var(--warm-gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-popular {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-card);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pricing-amount {
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.5;
}

.price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--navy);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    font-size: 0.93rem;
    color: var(--text-secondary);
    padding-left: 26px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-note {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-top: 14px;
    font-weight: 500;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ===========================================
   FOUNDERS
   =========================================== */
.founders {
    padding: 100px 0;
    background: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.founder-card {
    padding: 44px 36px;
    background: var(--warm-gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.founder-card h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
}

.founders-note {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 40px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
}


/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
    padding: 100px 0;
    background: var(--warm-gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}


/* ===========================================
   TRUST BAR
   =========================================== */
.trust-bar {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.trust-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.trust-regions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-regions span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-muted);
}


/* ===========================================
   CTA
   =========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--warm-gray-50);
}

.cta-box {
    text-align: center;
    padding: 72px 56px;
    background: var(--navy);
    border-radius: var(--radius-xl);
    color: white;
}

.cta-box h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 18px;
    color: white;
}

.cta-box p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-box .btn-primary {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.cta-box .btn-primary:hover {
    background: #12B88E;
    border-color: #12B88E;
}


/* ===========================================
   CONTACT
   =========================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-item span:last-child {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px;
    background: var(--warm-gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23718096' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}


/* ===========================================
   FOOTER
   =========================================== */
.footer {
    padding: 56px 0 28px;
    background: var(--navy);
    color: rgba(255,255,255,0.6);
}

.footer .logo-light { color: white; }
.footer .logo-erp { color: var(--primary-light); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.footer-links a {
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: white; }

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82rem;
}


/* ===========================================
   NAV DROPDOWN
   =========================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--warm-gray-50);
    color: var(--navy) !important;
}


/* ===========================================
   SOLUTIONS OVERVIEW (Homepage)
   =========================================== */
.solutions-overview {
    padding: 100px 0;
    background: var(--white);
}

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

.solution-preview-card {
    display: block;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.solution-preview-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.solution-preview-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    color: var(--primary);
}

.solution-preview-icon svg {
    width: 100%;
    height: 100%;
}

.solution-preview-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.solution-preview-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.solution-preview-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}


/* ===========================================
   PAGE HERO (Solution pages)
   =========================================== */
.page-hero {
    padding: 150px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 124, 102, 0.04), transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    max-width: 780px;
    position: relative;
}

.page-hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    line-height: 1.15;
    animation: fadeUp 0.6s 0.08s ease both;
}

.page-hero-sub {
    font-size: clamp(1.02rem, 1.4vw, 1.12rem);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    animation: fadeUp 0.6s 0.16s ease both;
}

.page-hero .hero-actions {
    animation: fadeUp 0.6s 0.24s ease both;
}


/* ===========================================
   PAIN POINTS (Solution pages)
   =========================================== */
.pain-points {
    padding: 100px 0;
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pain-card {
    padding: 32px 28px;
    background: var(--warm-gray-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.pain-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ===========================================
   SOLUTION FEATURES (Solution pages)
   =========================================== */
.solution-features {
    padding: 100px 0;
    background: var(--warm-gray-50);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

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

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--navy);
}

.feature-content p {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-mock {
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.mock-header {
    padding: 16px 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
}

.mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
}

.mock-row:last-child {
    border-bottom: none;
}

.mock-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.mock-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.mock-value.green { color: var(--primary); }
.mock-value.amber { color: var(--accent); }
.mock-value.red { color: #DC2626; }


/* ===========================================
   PAGE TESTIMONIAL (Solution pages)
   =========================================== */
.page-testimonial {
    padding: 80px 0;
    background: var(--white);
}

.page-testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.page-testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: normal;
}

.page-testimonial-card .testimonial-stars {
    margin-bottom: 20px;
}

.page-testimonial-card .testimonial-author {
    justify-content: center;
}


/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .problem-middle { order: -1; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

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

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

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.2rem;
        color: var(--navy);
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 48px;
    }

    .hero-proof-strip {
        flex-direction: column;
    }

    .hero-proof-item + .hero-proof-item {
        border-left: none;
        border-top: 1px solid var(--border-light);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        min-width: 0;
    }

    .nav-dropdown-trigger svg { display: none; }

    .page-hero { padding: 120px 0 56px; }

    .steps::before { left: 18px; }
    .step { gap: 20px; }
    .step-number {
        min-width: 44px;
        height: 44px;
        font-size: 0.78rem;
    }

    .cta-box { padding: 44px 24px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .trust-regions { gap: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 2rem; }
    .proof-number { font-size: 1.7rem; }
    .founder-card { padding: 28px 22px; }
    .testimonial-card { padding: 24px; }
    .pricing-card { padding: 32px 22px; }
    .contact-form { padding: 24px; }
}
