/* ========================================
   Global Styles & CSS Variables
   ======================================== */

:root {
    /* Primary Colors */
    --primary-deep-navy: #0B1F33;
    --primary-arctic-deep: #0B3D6B;
    --primary-arctic-teal: #007C89;
    --primary-cryo-blue: #1A7FBF;

    /* Secondary Colors */
    --secondary-ice-cyan: #00A7C4;
    --secondary-frost: #5DC4E8;
    --secondary-glacier-mist: #D8F7FB;

    /* Neutral Colors */
    --black: #000000;
    --white: #FFFFFF;
    --gray-border: #DDDDDD;
    --gray-light: #F2F7FB;
    --gray-pale: #F2FCFE;
    --gray-medium: #747474;
    --gray-body: #334155;
    --gray-secondary: #64748B;

    /* Success Colors */
    --success: #78BE20;
    --success-bg: #E9F5DB;

    /* Fonts */
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-arial: 'Arial', sans-serif;
    --font-lexend: 'Lexend', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--primary-deep-navy);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 18%, rgba(93, 196, 232, 0.16), transparent 28%),
        radial-gradient(circle at 86% 48%, rgba(120, 190, 32, 0.10), transparent 26%);
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    padding: 0 24px;
}

.navbar-container {
    max-width: 1728px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-image {
    display: block;
    width: 150px;
    height: auto;
    max-height: 74px;
    object-fit: contain;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-text {
    color: var(--gray-medium);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
}

/* ========================================
   Button Styles
   ======================================== */

.btn {
    padding: 10.85px 48.81px;
    border: none;
    border-radius: 8.14px;
    font-size: 12.2px;
    font-weight: 700;
    line-height: 18.31px;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    font-family: var(--font-inter);
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(26, 127, 191, 0.22);
}

.btn-secondary {
    background: var(--primary-arctic-teal);
    color: var(--white);
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 124, 137, 0.22);
}

.btn-card {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    line-height: 27px;
    border-radius: 12px;
    margin-top: auto;
    font-weight: 700;
}

.btn-franchisor {
    background: var(--primary-cryo-blue);
    color: var(--white);
}

.btn-franchisee {
    background: var(--primary-arctic-teal);
    color: var(--white);
}

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

.hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90vh;
    padding: 72px 32px 96px;
    background-image: url('../hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--primary-deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 31, 51, 0), rgba(11, 31, 51, 0.55));
}

.hero-content {
    max-width: 1728px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    color: var(--secondary-glacier-mist);
    margin-bottom: 36px;
    letter-spacing: 0;
    animation: fadeUp 0.75s ease both 0.05s;
     background: linear-gradient(90deg, #00D9FF 0%, #5DC4E8 30%, #FFFFFF 60%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    filter: drop-shadow(0 0 25px rgba(0, 167, 196, 0.5));
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 82px;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: 0;
    animation: fadeUp 0.75s ease both 0.16s;
}

.hero-highlight {
    font-size: 76px;
    font-weight: 700;
    line-height: 110px;
    margin-bottom: 36px;
    letter-spacing: 0;
    background: linear-gradient(90deg, #00D9FF 0%, #5DC4E8 30%, #FFFFFF 60%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 0.75s ease both 0.16s;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: var(--white);
    letter-spacing: 0;
    animation: fadeUp 0.75s ease both 0.38s;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    filter: contrast(1.1) brightness(1.05);
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.4s ease;
    display: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(0, 217, 255, 0.3), rgba(0, 167, 196, 0.15) 40%, rgba(93, 196, 232, 0.05) 100%);
    border: 3px dotted rgba(0, 217, 255, 0.8);
    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.9),
        0 0 20px rgba(0, 217, 255, 0.7),
        0 0 28px rgba(93, 196, 232, 0.5),
        inset 0 0 10px rgba(0, 217, 255, 0.3);
    pointer-events: none;
    will-change: transform;
    filter: drop-shadow(0 0 4px rgba(0, 217, 255, 0.6));
}

.hero-asset-shell {
    width: min(780px, 88vw);
    margin: 64px auto 0;
    position: relative;
    animation: dashboardFloatIn 0.9s ease both 0.5s;
}

.hero-dashboard {
    width: 100%;
    display: block;
    border-radius: 30px;
    filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.36));
    animation: dashboardDrift 7s ease-in-out infinite;
}

.hero-signal {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(216, 247, 251, 0.52);
    background: rgba(216, 247, 251, 0.14);
    box-shadow: 0 0 36px rgba(93, 196, 232, 0.28);
    animation: signalPulse 3s ease-in-out infinite;
}

.hero-signal--one {
    width: 54px;
    height: 54px;
    left: -18px;
    top: 58px;
}

.hero-signal--two {
    width: 34px;
    height: 34px;
    right: 22px;
    bottom: 46px;
    animation-delay: 1.15s;
}

.hero-buttons{
    display: flex;
    gap: 16px; /* space between buttons */
    align-items: center;
    justify-content: center; /* optional */
    flex-wrap: wrap; /* mobile responsive */
}

.hero-buttons .btn{
    min-width: 220px; /* same width */
    height: 56px; /* same height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    letter-spacing: 0;
    text-align: center;
    color: var(--primary-deep-navy);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: var(--gray-medium);
    text-align: center;
}

/* ========================================
   Path Section (Franchisor/Franchisee)
   ======================================== */

.path-section {
    padding: 32px 32px;
    background: var(--white);
    position: relative;
    z-index: 2;
    margin-top: 80vh;
    border-radius: 0;
    box-shadow: 0 -24px 58px rgba(0, 0, 0, 0.16);
}

.path-section .section-header {
    margin-bottom: 36px;
}

.path-section .section-title {
    font-size: 38px;
    line-height: 46px;
}

.path-section .section-subtitle {
    font-size: 16px;
    line-height: 24px;
}

.metrics-section,
.features-section,
.testimonials-section,
.creator-section,
.footer {
    position: relative;
    z-index: 2;
}

.path-cards {
    max-width: 1270px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}

.path-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: #FAFAFB;
    border: 4px solid var(--gray-border);
    border-radius: 16px;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.path-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cryo-blue);
    box-shadow: 0 18px 38px rgba(26, 127, 191, 0.16);
}

.path-card--active {
    background: var(--gray-light);
    border-color: var(--gray-border);
    box-shadow: none;
}


.path-card--restricted {
    background: #f5f5f5;
    cursor: default;
}

.path-card--restricted:hover {
    transform: none;
    border-color: var(--gray-border);
    box-shadow: none;
}

.tier-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-border);

}

.tier-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 4px 0;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.tier-label.franchisor {
   
    color: var(--primary-cryo-blue);
}

.tier-label.franchisee {
    
    color: #4F7F28;
}

.tier-label.restricted {
 
    color: #E74C3C;
}
.policy-divider{
    display:flex;
    align-items:center;
    text-align:center;
    margin:30px 0;
    color:#0B1F33;
    font-weight:600;
    font-size:16px;
}

.policy-divider::before,
.policy-divider::after{
    content:'';
    flex:1;
    border-bottom:1px solid #d1d5db;
}

.policy-divider span{
    padding:0 16px;
    color: #A9A9A9;
}
.tier-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-deep-navy);
    margin: 0;
    line-height: 1.25;
}

.tier-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tier-item {
    font-size: 13px;
    line-height: 1.35;
    color: var(--gray-body);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    margin-top: 1px;
}

.dot.yes::before {
    content: '\2713';
    color: var(--success);
}

.dot.no::before {
    content: '\2716';
    color: #E74C3C;
}

.dot.partial::before {
    content: '\2713';
    color: #F5A623;
}


.card-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1;
}

.card-icon-wrapper {
    display: flex;
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 9px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(11, 61, 107, 0.08);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title {
    font-family: var(--font-arial);
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    color: var(--primary-deep-navy);
    letter-spacing: 0;
}

.card-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    color: var(--gray-medium);
}

.card-benefits {
    list-style: none;
    width: min(322px, 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--gray-medium);
    white-space: nowrap;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
    font-weight: bold;
}

.checkmark::before {
    content: '\2713';
}

/* Key features lists inside the new path cards */
.path-section .card .card-benefits {
    width: 100%;
    gap: 7px;
    margin: 0 0 12px;
    padding: 0;
}

.path-section .card .card-benefits li {
    font-size: 13.5px;
    line-height: 1.35;
    white-space: normal;
    color: var(--gray-body);
}

.path-section .card .checkmark {
    width: 17px;
    height: 17px;
    font-size: 12px;
}

/* ========================================
   Metrics Section
   ======================================== */

.metrics-section {
    padding: 64px 32px;
    background: var(--gray-pale);
}

.metrics-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.metric-card {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.metric-value {
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
    color: var(--primary-arctic-teal);
    letter-spacing: 0;
}

.metric-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--gray-medium);
}

/* ========================================
   Features Section
   ======================================== */

.features-section {
    padding: 96px 32px;
    background: var(--white);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}



.feature-icon {
    width: 48px;
    height: 48px;
    background: url('../feature-check.svg') center / contain no-repeat;
}

.feature-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--gray-medium);
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    padding: 96px 32px;
    background: var(--gray-pale);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 72px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}



.testimonial-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    width: fit-content;
}

.badge-franchisor {
    background: rgba(93, 196, 232, 0.3);
    color: #0B3D6B;
}

.badge-franchisee {
    background: rgba(0, 124, 137, 0.1);
    color: var(--primary-arctic-teal);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-quote-wrapper {
    padding-left: 16px;
    border-left: 2px solid var(--primary-cryo-blue);
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
    color: var(--black);
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, #1A7FBF 20%, #007C89 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: var(--gray-body);
}

.author-company {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--gray-secondary);
}

/* ========================================
   Creator Section
   ======================================== */

.creator-section {
    padding: 72px 32px;
    background: var(--white);
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creator-container {
    max-width: 1366px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.creator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.creator-quote {
    max-width: 1180px;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 43px;
    color: var(--black);
    text-align: center;
}

.divider {
    width: 800px;
    height: 2px;
    background: var(--gray-border);
}

.creator-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.creator-avatar {
    width: 120px;
    height: 123.24px;
    border-radius: 162.16px;
    background: radial-gradient(50% 50% at 50% 50%, #1A7FBF 38%, #0C3B59 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 51.9px;
    font-weight: 800;
    line-height: 48.6px;
    letter-spacing: 0;
}

.creator-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.creator-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: #126877;
}

.creator-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--gray-body);
}

.creator-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--gray-body);
}

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

.footer {
    background: var(--primary-arctic-deep);
    padding: 120px;
    color: var(--white);
}

.footer-content {
    max-width: 1488px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 120px;
    margin-bottom: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    width: 217px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 0px;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: 0;
}

.footer-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-divider {
    max-width: 1488px;
    margin: 0 auto 48px;
    height: 1px;
    background: #747474;
}

.footer-bottom {
    max-width: 1488px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 18px;
    font-weight: 400;
    line-height: 19.2px;
    color: #BFBFBF;
    letter-spacing: 0;
    white-space: nowrap;
}

.footer-legal {
    display: flex;
    gap: 48px;
}

.footer-legal a {
    color: #BFBFBF;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0;
    white-space: nowrap;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========================================
   Animation
   ======================================== */

body.reveal-enabled .section-header,
body.reveal-enabled .path-card,
body.reveal-enabled .metric-card,
body.reveal-enabled .feature-card,
body.reveal-enabled .testimonial-card,
body.reveal-enabled .creator-content,
body.reveal-enabled .footer-section {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

body.reveal-enabled .is-visible {
    opacity: 1;
    transform: translateY(0);
}

.path-card:nth-child(2),
.metric-card:nth-child(2),
.feature-card:nth-child(2),
.testimonial-card:nth-child(2),
.footer-section:nth-child(2) {
    transition-delay: 0.08s;
}

.metric-card:nth-child(3),
.feature-card:nth-child(3),
.testimonial-card:nth-child(3),
.footer-section:nth-child(3) {
    transition-delay: 0.16s;
}

.metric-card:nth-child(4),
.feature-card:nth-child(4) {
    transition-delay: 0.24s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dashboardFloatIn {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dashboardDrift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes signalPulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.92);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .section-header,
    .path-card,
    .metric-card,
    .feature-card,
    .testimonial-card,
    .creator-content,
    .footer-section {
        opacity: 1;
        transform: none;
    }
}

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

@media (max-width: 1024px) {
    .navbar-container {
        max-width: 100%;
    }

    .path-cards {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 560px;
    }

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

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

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

    .hero-title,
    .hero-highlight {
        font-size: 48px;
        line-height: 56px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }

    .footer {
        padding: 80px 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 12px 16px;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .navbar-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .navbar-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .navbar-actions .btn {
        flex: 1 1 140px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        position: relative;
        top: auto;
        height: auto;
        min-height: 60vh;
        padding: 40px 20px 60px;
        margin-top: 0;
        background-attachment: scroll;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .hero-title,
    .hero-highlight {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 22px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 25px;
    }

    .hero-asset-shell {
        margin-top: 42px;
        width: min(560px, 94vw);
    }

    .hero-dashboard {
        border-radius: 18px;
    }

    .hero-signal {
        display: none;
    }

    .hero-description br,
    .section-subtitle br {
        display: none;
    }

    .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .path-section .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .path-section .section-subtitle {
        font-size: 15px;
        line-height: 23px;
    }

    .path-section,
    .metrics-section,
    .features-section,
    .testimonials-section,
    .creator-section {
        padding: 48px 16px;
    }

    .path-section {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        background: var(--white);
    }

    .metrics-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .path-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .path-card {
        padding: 20px;
        gap: 24px;
    }

    .card-content {
        gap: 24px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
    }

    .card-title {
        font-size: 20px;
        line-height: 24px;
    }

    .card-description {
        font-size: 14px;
        line-height: 21px;
    }

    .card-benefits li {
        font-size: 14px;
        line-height: 21px;
    }

    .metric-card {
        padding: 20px 16px;
        gap: 8px;
    }

    .metric-value {
        font-size: 28px;
        line-height: 36px;
    }

    .metric-label {
        font-size: 12px;
        line-height: 18px;
    }

    .feature-card {
        padding: 24px 16px;
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-text {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-card {
        padding: 20px 16px;
        gap: 12px;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 24px;
    }

    .author-name,
    .author-company {
        font-size: 14px;
        line-height: 21px;
    }

    .creator-container {
        gap: 32px;
    }

    .creator-quote {
        font-size: 18px;
        line-height: 28px;
    }

    .divider {
        width: 100%;
        max-width: 100%;
    }

    .footer {
        padding: 48px 16px;
    }

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

    .footer-logo {
        width: 150px;
        height: auto;
    }

    .footer-title {
        font-size: 16px;
        line-height: 18px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-links a {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal a {
        font-size: 12px;
        line-height: 16px;
    }

    .footer-copyright {
        white-space: normal;
        text-align: center;
        font-size: 12px;
        line-height: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 12px;
    }

    .navbar-actions .btn {
        flex: 1 1 100px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 10px;
    }

    .logo-image {
        width: 120px;
        max-height: 36px;
    }

    .pricing-text {
        display: none;
    }

    .path-section,
    .metrics-section,
    .features-section,
    .testimonials-section,
    .creator-section {
        padding: 36px 12px;
    }

    .section-header {
        gap: 12px;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .path-section .section-title {
        font-size: 22px;
        line-height: 28px;
    }

    .path-section .section-subtitle {
        font-size: 13px;
        line-height: 20px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 21px;
    }

    .path-card {
        padding: 16px;
        gap: 20px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-title {
        font-size: 18px;
        line-height: 22px;
    }

    .card-description {
        font-size: 13px;
        line-height: 20px;
    }

    .card-benefits li {
        font-size: 12px;
        line-height: 18px;
        gap: 6px;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    .metric-card {
        padding: 16px 12px;
    }

    .metric-value {
        font-size: 24px;
        line-height: 30px;
    }

    .metric-label {
        font-size: 11px;
        line-height: 16px;
    }

    .feature-card {
        padding: 20px 12px;
    }

    .feature-text {
        font-size: 14px;
        line-height: 21px;
    }

    .testimonial-card {
        padding: 16px 12px;
    }

    .testimonial-quote {
        font-size: 13px;
        line-height: 20px;
    }

    .testimonial-quote-wrapper {
        padding-left: 12px;
    }

    .author-name,
    .author-company {
        font-size: 13px;
        line-height: 20px;
    }

    .creator-quote {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }

    .creator-name {
        font-size: 14px;
        line-height: 21px;
    }

    .creator-title,
    .creator-subtitle {
        font-size: 13px;
        line-height: 20px;
    }

    .footer {
        padding: 36px 12px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}

/* ========================================
   New Path Section (two-perspective access model)
   ======================================== */

.path-section {
    padding: 72px 32px;
    background: var(--white);
    position: relative;
    z-index: 2;
    margin-top: 80vh;
    border-radius: 0;
    box-shadow: 0 -24px 58px rgba(0, 0, 0, 0.16);
}

.path-section .head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.path-section .head h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-deep-navy);
    margin: 0 0 16px;
    line-height: 1.2;
}

.path-section .head p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-medium);
    margin: 0;
}

.path-section .cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.path-section .card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.path-section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
    border-color: #c8c8c8;
}

.path-section .card.franchisor {
    border-top: 3px solid #185FA5;
}

.path-section .card.franchisee {
    border-top: 3px solid #0F6E56;
}

.path-section .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.path-section .icon-wrap.blue { background: #E6F4F9; }
.path-section .icon-wrap.teal { background: #E6F7F3; }

.path-section .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-deep-navy);
    margin: 0 0 6px;
}

.path-section .card-sub {
    font-size: 14px;
    line-height: 1.45;
    color: var(--gray-medium);
    margin: 0 0 14px;
}

.path-section .divider {
    border: none;
    height: 1px;
    background: #e8e8e8;
    margin: 10px 0 14px;
    width: auto;
}

.path-section .section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.path-section .section-label.blue { color: #185FA5; }
.path-section .section-label.teal { color: #0F6E56; }

.path-section .item {
    font-size: 14px;
    line-height: 1.4;
    color: var(--gray-body);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 5px;
}

.path-section .item.restricted {
    color: #666;
}

.path-section .spacer {
    flex: 1;
    min-height: 12px;
}

.path-section .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.path-section .cta-btn.blue {
    background: #185FA5;
    color: #fff;
}

.path-section .cta-btn.teal {
    background: #0F6E56;
    color: #fff;
}

.path-section .cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.path-section .restricted-note {
    max-width: 1100px;
    margin: 20px auto 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-medium);
    background: #F8FAFC;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--gray-border);
}

.path-section .restricted-note p {
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .path-section .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .path-section .head {
        margin-bottom: 32px;
    }
}

/* Coming Soon Page */
.launching-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

/* Coming Soon specific */
.coming-soon .hero {
    min-height: 100vh;
}
