/* Base Styles */
:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --text-main: #051645;
    --text-muted: #6c757d;
    --bg-light: #F5F8FF;
    --bg-dark: #071526;
    --white: #ffffff;
    --border-color: #e9ecef;
    --success: #00c853;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.badge-text {
    display: block;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #2563eb 0%, #2563eb 75%, #06b6d4 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #1d4ed8 75%, #0891b2 100%);
    border: none;
}

.btn-outline {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
    background-color: var(--bg-light);
}

.btn-white {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-white:hover {
    background-color: var(--bg-light);
}

/* Header */
.site-header {
    padding: 1.5rem 0;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img, .footer-logo img {
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s;
    padding-top: 6px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-links a.active {
    border-bottom-color: var(--text-main);
}

.nav-links .dropdown a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-link {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
}

.hero {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #eef4ff 0%, #ffffff 75%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-content br, .interaction-content br, .collaboration-content br, .section-header br {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features svg {
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 3px;
    width: 18px;
    height: 18px;
}

.media-rounded {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.hero-media-wrapper {
    position: relative;
    width: 100%;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.hero-overlay-media {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border: 5px solid var(--white);
    background-color: var(--white);
    z-index: 10;
}

.hero-overlay-media video, 
.hero-overlay-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Stats Section */
.stats {
    padding: 2rem 0 5rem;
}

.stats-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.stat-item {
    text-align: left;
    flex: 1;
    padding: 0 1rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.stat-item h3.infinity-icon {
    font-size: 3.5rem;
    line-height: 0.5;
    padding-top: 0.5rem;
    font-weight: 400; /* Lighter weight so it doesn't look too chunky when scaled up */
}

.stat-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

/* Interaction Section */
.interaction {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.interaction-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interaction-content .subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #667085;
    line-height: 1.6;
}

.card-container-collage {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collage-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.media-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.media-stat-box {
    background-color: #f4f7fb; /* Very light blue/gray matching the image */
    padding: 1rem;
    border-radius: 12px;
}

.media-stat-box h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.media-stat-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.icon-box-plain {
    width: 48px;
    height: 48px;
    background-color: #E8F0FE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
}

.icon-box-plain svg {
    width: 20px;
    height: 20px;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #051645;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #667085;
}

/* Collaboration Section */
.collaboration {
    padding: 3.5rem 0;
}

.collaboration-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tag-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag {
    padding: 0.5rem 1.25rem;
    background-color: #f4f7fb;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.collaboration-media {
    padding: 0;
    background: transparent;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.orbit-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2;
    z-index: 10;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
}

.ring-1 { width: 160px; height: 160px; }
.ring-2 { width: 240px; height: 240px; }
.ring-3 { width: 320px; height: 320px; }

.node {
    position: absolute;
    background-color: var(--white);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
}

.node-bakery { top: 10%; left: 10%; }
.node-hotel { top: 20%; right: 0%; }
.node-boutique { bottom: 15%; left: 5%; }
.node-restaurant { bottom: 10%; right: 10%; }

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00c853;
    border-radius: 50%;
}

.dot-1 { top: 25%; left: 40%; }
.dot-2 { top: 35%; right: 25%; }
.dot-3 { bottom: 30%; left: 30%; }
.dot-4 { bottom: 20%; right: 35%; }

/* Features Grid Section */
.features-grid-section {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 3rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.grid-card .icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: #E8F0FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.grid-card .icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.grid-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.grid-card p {
    font-size: 0.85rem;
    color: #667085;
    margin-bottom: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 3.5rem 0;
}

.cta-card {
    background: linear-gradient(90deg, #091e39 0%, #091e39 40%, #0d3163 70%, #007c7f 100%);
    border-radius: 24px;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
}

.cta-actions .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* App Download Section */
.app-download {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.app-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.app-text p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #667085;
}

.app-buttons {
    display: flex;
    gap: 1.25rem;
}

.app-buttons img {
    height: 52px;
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-links h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}
/* About Hero Section */
.about-hero {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.about-hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.team-img {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    object-fit: cover;
    display: block;
}

.quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #031535 20%, transparent 100%);
    color: var(--white);
    padding: 4rem 2.5rem 2.5rem 2.5rem;
}

.quote-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.quote-text {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote-author {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Mission Section */
.mission-section {
    padding: 3.5rem 0;
}

.mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-heading h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-top: 1rem;
}

/* Principles Section */
.principles-section {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.principle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.principle-icon {
    width: 48px;
    height: 48px;
    background-color: #F0F4FF;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.principle-card h3 {
    font-size: 1.25rem;
}

.principle-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Company Details Section */
.company-section {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.company-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.story-card {
    background-color: #031535;
    color: var(--white);
    padding: 4rem;
    border-radius: 24px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    background-position: right top;
}

.story-card h2 {
    color: var(--white);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.story-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.story-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--white);
    color: var(--text-main);
    padding: 0.75rem 1.2rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
}

.story-tag svg {
    color: var(--primary-color);
}

.details-card {
    background-color: var(--white);
    border: none;
    border-radius: 24px;
    padding: 4rem;
}

.details-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-label svg {
    color: var(--text-main);
}

.detail-value {
    font-weight: 700;
    color: var(--text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin-top: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-inner, .interaction-inner, .collaboration-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content { order: 1; }
    .hero-media-wrapper { order: 2; }
    
    .interaction-content { order: 1; }
    .interaction-media { order: 2; }
    
    .collaboration-content { order: 1; }
    .collaboration-media { order: 2; }
    
    .about-hero-inner, .mission-inner, .company-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hero-content { order: 1; }
    .about-hero-media { order: 2; margin-top: 1rem; }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-overlay-media {
        width: 50%;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-card {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 1 1 45%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .stats-card > .stat-item:nth-child(1),
    .stats-card > .stat-item:nth-child(3) {
        border-bottom: 1px solid var(--border-color);
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    

    .hero-actions {
        flex-direction: column;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card, .details-card {
        padding: 2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .app-download-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .collaboration-media {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .orbit-container {
        transform: scale(0.8);
    }
    
    .hero-overlay-media {
        bottom: -15px;
        left: -15px;
        width: 55%;
        border-width: 3px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 100%);
}

.pricing-badge {
    background-color: #E8F0FE;
    color: #2563eb;
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot-indicator {
    width: 6px;
    height: 6px;
    background-color: #2563eb;
    border-radius: 50%;
}

.pricing-hero-header h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.25rem;
}

.pricing-subtitle {
    font-size: 1.15rem;
    color: #667085;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.pricing-card-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.pricing-main-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #2563eb;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
    text-align: left;
    margin-bottom: 1.25rem;
}

.pricing-card-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-target {
    color: #2563eb;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-tag {
    background-color: #E8F5E9;
    color: #00C853;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.pricing-main-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
}

.pricing-footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-footer-text a {
    color: #2563eb;
    font-weight: 500;
}

.pricing-features-section {
    background-color: #F8F9FA;
    padding: 4rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card-horizontal {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.feature-card-horizontal .icon-wrapper {
    margin-bottom: 1.5rem;
    width: 52px;
    height: 52px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E2E8F0;
}

.feature-card-horizontal .icon-wrapper svg {
    color: #2563eb;
}

.feature-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.9rem;
    color: #667085;
    margin: 0;
    line-height: 1.5;
}

.features-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #667085;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .pricing-card-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.contact-hero-header {
    margin-bottom: 4rem;
}

.contact-hero-header h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: #667085;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card {
    background-color: #0F203C;
    border-radius: 20px;
    padding: 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.contact-info-badge {
    color: #00C853;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-info-card h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-details-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box svg {
    color: rgba(255,255,255,0.8);
}

.contact-detail-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    display: block;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.contact-form-badge {
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-form-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

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

.form-group input, .form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background-color: #F8FAFC;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background-color: var(--white);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #94A3B8;
}

.submit-btn {
    padding: 0.875rem 2rem;
}

/* Dual CTA Section */
.dual-cta-section {
    padding: 5rem 0;
    background-color: #F8F9FA;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dual-cta-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.dual-cta-badge {
    color: #667085;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.dual-cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.dual-cta-card p {
    color: #667085;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 90%;
}

.btn-dark {
    background-color: #0F203C;
    color: var(--white);
    border: none;
}

.btn-dark:hover {
    background-color: #0a162b;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .dual-cta-grid {
        grid-template-columns: 1fr;
    }
}

/* Shoppers Page Styles */
.shoppers-hero {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.shoppers-hero-media img {
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.step-cards {
    margin-top: 3rem;
}

.step-card {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.step-card .icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-list-plain {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-plain h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-item-plain p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

.businesses-banner {
    background: url('../images/businesses-banner-bg.png') center/cover no-repeat;
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.businesses-banner::before {
    display: none;
}

.businesses-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.text-white { color: #fff !important; }
.text-white-80 { color: rgba(255,255,255,0.8) !important; }

.pricing-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: inline-block;
}

.pricing-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.why-cards {
    margin-top: 3rem;
}

.why-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.bg-blue-100 { background-color: #e0f2fe; }
.text-primary { color: #2563eb !important; }

.why-card .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dark-banner {
    background-color: #0f172a;
}

.rounded-24 { border-radius: 24px; }

.support-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.mock-search-box {
    border-radius: 16px;
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.search-input-wrap input {
    padding-left: 2.5rem;
    height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 100%;
}

.fw-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: #64748b; }
.text-dark { color: #0f172a; }

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.shadow-lg { box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.d-flex { display: flex !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-4 { gap: 1.5rem !important; }
.position-relative { position: relative !important; }
.bg-light { background-color: #f8fafc !important; }
.bg-white { background-color: #fff !important; }


@media (max-width: 768px) {
    .support-banner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .businesses-banner { padding: 2rem; }
    .download-banner { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem !important; }
    .shoppers-hero-media { margin-top: 2rem; }
}
