/* ===== VARIABLES ===== */
:root {
    --navy: #1e2d3d;
    --navy-dark: #162230;
    --navy-deep: #0f1a26;
    --teal: #2a6b7c;
    --teal-light: #5ba4b5;
    --sky: #8ecae6;
    --sky-light: #b8dff0;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f4;
    --gray-200: #e2e6ea;
    --gray-300: #cdd3d9;
    --gray-500: #6c757d;
    --gray-700: #3d4852;
    --gray-900: #1a1a2e;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    padding: 8px 10px;
    display: flex;
    align-items: baseline;
    line-height: 1;
}
.logo-e, .logo-w {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
.logo-m {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-light);
}
.logo-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-300);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
}
.logo-subtitle {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--teal);
    margin-top: 3px;
    border-top: 1px solid var(--teal);
    padding-top: 3px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-nav {
    padding: 10px 24px;
    background: var(--teal);
    color: var(--white);
    border-radius: var(--radius);
}
.btn-nav:hover {
    background: var(--navy);
}
.btn-nav-outline {
    padding: 8px 20px;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: var(--radius);
    font-weight: 600;
}
.btn-nav-outline:hover {
    background: var(--teal);
    color: var(--white);
}
.btn-full {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--teal);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--teal) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(138,202,230,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-sub {
    font-size: 18px;
    color: var(--sky-light);
    margin-bottom: 8px;
    font-weight: 300;
}
.hero-tagline {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--teal-light);
    font-style: italic;
    margin-bottom: 40px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy);
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--sky);
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.5;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 17px;
    font-style: italic;
    margin-bottom: 48px;
}

/* ===== CHALLENGES ===== */
.challenges {
    background: var(--gray-50);
}
.challenges .section-title {
    margin-bottom: 48px;
}
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.challenge-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--teal-light);
    transition: transform 0.3s, box-shadow 0.3s;
}
.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.challenge-number {
    width: 40px;
    height: 40px;
    background: var(--sky);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}
.challenge-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
}
.challenge-card p {
    font-size: 15px;
    line-height: 1.65;
}

/* ===== OPPORTUNITY ===== */
.opportunity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}
.market-stats h3,
.ownership-groups h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}
.market-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.market-stat:last-child { border-bottom: none; }
.market-stat-number {
    background: var(--navy);
    color: var(--sky);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    min-width: 90px;
    text-align: center;
    white-space: nowrap;
}
.market-stat span:last-child {
    font-size: 15px;
}
.ownership-item {
    padding: 14px 16px;
    border-left: 3px solid var(--teal);
    margin-bottom: 12px;
    background: var(--gray-50);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.ownership-item strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}
.ownership-item span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== SERVICES ===== */
.services {
    background: var(--gray-50);
}
.services .section-title {
    margin-bottom: 48px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--teal-light);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 40px;
    height: 40px;
    color: var(--teal);
    margin-bottom: 16px;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-500);
}

/* ===== DIFFERENCE ===== */
.difference {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a4a 100%);
}
.difference .section-title {
    color: var(--white);
}
.difference .section-subtitle {
    color: var(--sky-light);
}
.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.diff-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: 32px;
    transition: transform 0.3s, background 0.3s;
}
.diff-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}
.diff-icon {
    width: 36px;
    height: 36px;
    color: var(--sky);
    margin-bottom: 16px;
}
.diff-icon svg {
    width: 100%;
    height: 100%;
}
.diff-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--teal-light);
    margin-bottom: 10px;
}
.diff-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-300);
}
.difference-result {
    margin-top: 48px;
    text-align: center;
    padding: 24px;
    background: var(--teal);
    border-radius: var(--radius-lg);
}
.difference-result p {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
}

/* ===== TIERS ===== */
.tiers .section-title {
    margin-bottom: 48px;
}
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}
.tier-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.tier-header {
    background: var(--sky-light);
    padding: 32px 28px;
    text-align: center;
}
.tier-featured .tier-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
}
.tier-featured .tier-header .tier-label,
.tier-featured .tier-header h3,
.tier-featured .tier-header .tier-tagline {
    color: var(--white);
}
.tier-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}
.tier-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.tier-tagline {
    font-size: 14px;
    color: var(--gray-700);
    font-style: italic;
}
.tier-features {
    padding: 28px;
    flex: 1;
}
.tier-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    background: var(--teal-light);
    border-radius: 50%;
}
.tier-best {
    padding: 16px 28px;
    background: var(--gray-50);
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    font-style: italic;
}

/* ===== PRICING CTA ===== */
.pricing-cta {
    background: var(--gray-50);
}
.pricing-cta-content {
    text-align: center;
}
.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}
.pricing-highlight {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-highlight-icon {
    width: 48px;
    height: 48px;
    color: var(--teal);
    margin: 0 auto 16px;
}
.pricing-highlight-icon svg {
    width: 100%;
    height: 100%;
}
.pricing-highlight h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}
.pricing-highlight p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-500);
}

/* ===== PROCESS ===== */
.process .section-title {
    margin-bottom: 60px;
}
.process-timeline {
    display: flex;
    gap: 24px;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    height: 3px;
    background: var(--sky-light);
    z-index: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-500);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.contact-text h2 span {
    color: var(--teal);
}
.contact-text > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 32px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}
.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
}
.contact-item a {
    color: var(--teal);
    font-weight: 500;
}
.contact-item a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form {
    background: var(--gray-50);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-700);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42,107,124,0.1);
}
.form-group textarea {
    resize: vertical;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ===== ENHANCED FORM ===== */
.form-intro {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
}
.form-section-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    margin-top: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sky-light);
}
.form-section-label:first-of-type {
    margin-top: 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}
.label-hint {
    font-weight: 400;
    color: var(--gray-500);
}
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--gray-700);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.checkbox-label:hover {
    border-color: var(--teal);
    background: rgba(42,107,124,0.04);
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--teal);
}
.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    padding: 60px 0 30px;
}
.footer-content {
    text-align: center;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
.footer .logo-title { color: var(--white); }
.footer .logo-subtitle { color: var(--teal-light); border-color: var(--teal-light); }
.footer .logo-divider { background: rgba(255,255,255,0.3); }
.footer-tagline {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--teal-light);
    font-style: italic;
    margin-top: 12px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.footer-links a {
    font-size: 14px;
    color: var(--gray-300);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}
.powered-by {
    margin-top: 8px;
    font-size: 12px;
    color: var(--teal-light);
    letter-spacing: 0.5px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .opportunity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }
    .nav-links.active { display: flex; }

    .stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .challenges-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .difference-grid { grid-template-columns: 1fr; }
    .tiers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-highlights { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    .process-timeline {
        flex-direction: column;
        gap: 32px;
    }
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 32px;
        right: auto;
        width: 3px;
        height: auto;
    }
    .process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 16px;
        align-items: start;
    }
    .step-number { margin: 0; }
    .process-step h3, .process-step p {
        grid-column: 2;
    }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 32px; }
    .contact-form { padding: 24px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
}
