/* ===== Reset & Base ===== */
/* Brand purple tint filter — shared across service card and hero image hover effects.
   Service card uses slightly stronger saturation (400%/0.7) vs hero (350%/0.75)
   to account for larger image area and different visual weight. */
:root {
    --filter-purple-tint-service: grayscale(0%) sepia(80%) hue-rotate(240deg) saturate(400%) brightness(0.7);
    --filter-purple-tint-hero: grayscale(0%) sepia(80%) hue-rotate(240deg) saturate(350%) brightness(0.75);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on all viewport sizes */
}

body {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem; /* Explicit 16px base for readability on all devices */
    line-height: 1.5;
    overflow-x: hidden; /* Belt-and-suspenders overflow guard */
}

/* ===== Heading Font Family ===== */
h1, h2, h3, h4, .hero-heading, .section-heading {
    font-family: 'DM Serif Display', serif;
}

/* ===== Responsive Images ===== */
/* All raster images scale proportionally and never overflow their container */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 60px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.logo-icon {
    font-size: 1.4rem;
}

.navbar-links {
    display: flex;
    gap: 36px;
}

.navbar-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444444;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #4B0F5E;
}

.hamburger {
    background: none;
    border: none;
    color: #111111;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    /* Hidden on desktop; made visible in mobile media query below */
    display: none;
    align-items: center;
}

.nav-cta-btn {
    background-color: #4B0F5E;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    opacity: 0.85;
}

/* Mobile nav hidden by default on desktop */
@media (max-width: 768px) {
    /* Show the hamburger toggle on tablet/mobile */
    .hamburger {
        display: flex;
    }

    .nav-cta-btn { display: none; }

    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 16px 32px;
    }

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

    .navbar-links li {
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* ===== Hero ===== */
.hero {
    padding: 0;
    background: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.hero-dark-panel {
    background-color: #4B0F5E;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C39BD3;
}

.hero-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    max-width: 560px;
}

.hero-sub {
    font-size: 1.05rem;
    color: #C39BD3;
    max-width: 460px;
    line-height: 1.7;
    margin-top: 0;
}

.hero-light-panel {
    background-color: #faf8fc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-img-wrap {
    width: 100%;
    max-width: 520px;
}

.hero-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.4s ease;
}

.hero-img:hover {
    filter: var(--filter-purple-tint-hero);
}

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: border-color 0.2s, background-color 0.2s;
    display: inline-block;
}

.btn-outline-light:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; min-height: auto; }
    .hero-dark-panel { padding: 60px 32px; }
    .hero-light-panel { display: none; }
}

/* ===== Vertical Panels Strip ===== */
.panels-strip {
    display: flex;
    gap: 4px;
    padding: 0 32px;
    height: 220px;
    overflow-x: auto;
}

.panel {
    flex: 1 0 80px;
    min-width: 80px;
    height: 100%;
    border-radius: 120px 120px 0 0;
    transition: transform 0.3s ease;
}

.panel:hover {
    transform: scaleY(1.06);
}

/* ===== Projects Section ===== */
.projects {
    padding: 80px 32px;
    background-color: #ffffff;
}

.projects-header {
    margin-bottom: 32px;
}

.pill-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #cccccc;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #555555;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.pill-btn:hover {
    border-color: #4B0F5E;
    color: #4B0F5E;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.project-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-img {
    width: 100%;
    height: 160px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111111;
}

.card-link {
    font-size: 0.88rem;
    color: #7D3C98;
    transition: color 0.2s;
}

.card-link:hover {
    color: #C39BD3;
}

/* ===== Services ===== */
.services {
    padding: 80px 32px;
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
}

/* Contact section heading — responsive size, removes obsolete .services/.deals selectors */
.contact h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 40px;
    color: #4B0F5E;
}

.services ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    list-style: none;
}

.services li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    font-size: 0.95rem;
    color: #444444;
    transition: border-color 0.2s, color 0.2s;
}

.services li:hover {
    border-color: #4B0F5E;
    color: #4B0F5E;
}

/* ===== Deals ===== */
.deals {
    padding: 80px 32px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.deal {
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
    color: #444444;
    font-size: 0.95rem;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 32px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
}

.contact label {
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: -8px;
}

.contact input,
.contact textarea {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 6px;
    padding: 12px 14px;
    color: #111111;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #4B0F5E;
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact button[type="submit"] {
    background-color: #4B0F5E;
    border: none;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.2s ease, opacity 0.2s;
}

.contact button[type="submit"]:hover {
    transform: scale(1.04);
    opacity: 0.92;
}

/* ===== Footer ===== */
.footer {
    background-color: #4B0F5E;
    padding: 60px 32px 32px;
    color: #C39BD3;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #C39BD3;
    max-width: 400px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: #C39BD3;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(195,155,211,0.6);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    margin-top: 8px;
}

/* ===== Hero CTA buttons ===== */
.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #4B0F5E;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: opacity 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.88;
}

.btn-outline {
    background-color: transparent;
    color: #4B0F5E;
    border: 2px solid #4B0F5E;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #4B0F5E;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
    }
    .hero-illustration {
        display: none;
    }
}

/* ===== Opportunity Section ===== */
.opportunity {
    padding: 100px 32px;
    background-color: #faf8fc;
    border-top: 1px solid #e0e0e0;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background-color: #f0e6f6;
    color: #4B0F5E;
    border: 1px solid #C39BD3;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #4B0F5E;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
}

.section-body {
    font-size: 1rem;
    color: #333333;
    line-height: 1.75;
    max-width: 960px;
    margin-bottom: 56px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 36px 32px;
    border-right: 1px solid #e0e0e0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    color: #4B0F5E;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
}

.stat-desc {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid #e0e0e0;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ===== Services New ===== */
.services-new {
    padding: 100px 32px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

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

.service-card {
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(75, 15, 94, 0.12);
}

.service-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== Service Card Images ===== */
.service-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-img {
    filter: var(--filter-purple-tint-service);
    transform: scale(1.03);
}

/* Icon-only wrapper (for cards without replacement images) */
.service-img-wrap--icon {
    height: 90px;
    display: flex;
    align-items: center;
    border-radius: 0;
    overflow: visible;
    padding: 0 20px;
}

.service-img-wrap--icon svg {
    width: 100%;
    max-width: 80px;
    height: auto;
    transition: stroke 0.3s ease;
}

/* Targets the <g> grouping element present in the Process Management SVG icon.
   If the SVG markup changes, ensure it retains a top-level <g> for this to apply. */
.service-card:hover .service-img-wrap--icon svg g {
    stroke: #4B0F5E;
}

.service-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #4B0F5E;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.7;
}

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

/* ===== Why Choose Us ===== */
.why-choose-us {
    padding: 100px 32px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.comparison-col {
    background: #faf8fc;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 36px 32px;
}

.comparison-col.highlight {
    background: #4B0F5E;
    border-color: #4B0F5E;
}

.comparison-col.highlight .comparison-col-title,
.comparison-col.highlight .comparison-col-subtitle,
.comparison-col.highlight .comparison-list li {
    color: #ffffff;
}

.comparison-col.highlight .comparison-col-subtitle {
    color: #C39BD3;
}

.comparison-col-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 4px;
}

.comparison-col-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4B0F5E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    font-size: 0.95rem;
    color: #333333;
    padding-left: 20px;
    position: relative;
}

.comparison-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7D3C98;
}

.comparison-col.highlight .comparison-list li::before {
    color: #C39BD3;
}

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

.advantage-card {
    border: 1px solid #e0e0e0;
    border-top: 4px solid #4B0F5E;
    border-radius: 12px;
    padding: 28px 24px;
    background-color: #ffffff;
    transition: box-shadow 0.25s ease;
}

.advantage-card:hover {
    box-shadow: 0 8px 32px rgba(75,15,94,0.1);
}

.advantage-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4B0F5E;
    margin-bottom: 10px;
}

.advantage-desc {
    font-size: 0.92rem;
    color: #444444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Our Edge Section ===== */
.our-edge {
    padding: 100px 32px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.section-body-secondary {
    font-size: 1rem;
    color: #333333;
    line-height: 1.75;
    max-width: 960px;
    margin-bottom: 56px;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 80px;
}

.edge-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.edge-icon {
    height: 56px;
    display: flex;
    align-items: center;
}

.edge-icon svg {
    width: 48px;
    height: 48px;
}

.edge-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4B0F5E;
    line-height: 1.3;
}

.edge-desc {
    font-size: 0.92rem;
    color: #444444;
    line-height: 1.65;
    max-width: 460px;
}

@media (max-width: 768px) {
    .edge-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .edge-desc { max-width: 100%; }
}
@media (max-width: 480px) {
    .our-edge { padding: 60px 16px; }
    .section-body-secondary { margin-bottom: 32px; }
}

/* ===== Growth Roadmap Section ===== */
.growth-roadmap {
    padding: 100px 32px;
    background-color: #faf8fc;
    border-top: 1px solid #e0e0e0;
}

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

.roadmap-card {
    border: 1px solid #e0e0e0;
    border-left: 4px solid #4B0F5E;
    border-radius: 12px;
    padding: 32px 28px;
    background-color: #ffffff;
    transition: box-shadow 0.25s ease, border-left-color 0.25s ease;
}

.roadmap-card:hover {
    border-left-color: #7D3C98;
    box-shadow: 0 8px 32px rgba(75,15,94,0.1);
}

.roadmap-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4B0F5E;
    margin-bottom: 12px;
    line-height: 1.3;
}

.roadmap-desc {
    font-size: 0.92rem;
    color: #444444;
    line-height: 1.65;
}

.roadmap-footer-text {
    font-size: 1rem;
    color: #333333;
    line-height: 1.75;
    max-width: 960px;
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .growth-roadmap { padding: 60px 16px; }
}

/* ===== Get Started Section ===== */
.get-started {
    padding: 100px 32px;
    background-color: #4B0F5E;
    border-top: none;
}

.get-started .section-tag {
    background-color: rgba(255,255,255,0.1);
    color: #C39BD3;
    border-color: rgba(195,155,211,0.4);
}

.get-started .section-heading {
    color: #ffffff;
    max-width: 800px;
}

.get-started .section-body {
    color: #C39BD3;
}

.get-started-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.get-started-card {
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 28px 24px;
}

.get-started-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.get-started-card-desc {
    font-size: 0.92rem;
    color: #C39BD3;
    line-height: 1.65;
}

.get-started-sub {
    color: #C39BD3;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 960px;
    margin-bottom: 32px;
}

.get-started-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.get-started .btn-primary {
    background-color: #ffffff;
    color: #4B0F5E;
}

.get-started .btn-primary:hover {
    background-color: #f0e6f6;
    opacity: 1;
}

.get-started .btn-outline {
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
}

.get-started .btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .get-started-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .get-started { padding: 60px 16px; }
    .get-started-ctas { flex-direction: column; align-items: stretch; }
    .get-started-ctas .btn-primary,
    .get-started-ctas .btn-outline { width: 100%; text-align: center; }
}

/* ===== Responsive — Mobile-first, three-breakpoint system =====
 *  Mobile  : ≤ 480px
 *  Tablet  : 481px – 1024px
 *  Desktop : ≥ 1025px  (base styles above)
 * ============================================================= */

/* --- Tablet (481px – 1024px) --- */
@media (min-width: 481px) and (max-width: 1024px) {
    /* Reduce horizontal gutters from 32px to 24px on tablets */
    .navbar-top { padding: 0 24px; }
    .hero-dark-panel { padding: 60px 32px; }
    .opportunity,
    .services-new,
    .why-choose-us,
    .our-edge,
    .growth-roadmap,
    .get-started { padding: 80px 24px; }
    .section-body { margin-bottom: 40px; }
    .contact { padding: 72px 24px; }
}

/* --- Mobile (≤ 480px) --- */
@media (max-width: 480px) {
    /* Navbar */
    .navbar-top { padding: 0 16px; }

    /* Hero dark panel — tighter padding on mobile */
    .hero-dark-panel { padding: 48px 16px 32px; }
    .hero-sub { max-width: 100%; font-size: 1rem; }

    /* Stack CTA buttons vertically and stretch to full width */
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary,
    .btn-outline,
    .btn-outline-light { width: 100%; text-align: center; }

    /* Panels strip — reduced from 220px to fit mobile viewport without excessive height */
    .panels-strip { padding: 0 16px; height: 140px; }

    /* Content sections — reduced vertical padding and gutters */
    .opportunity,
    .services-new,
    .why-choose-us,
    .our-edge,
    .growth-roadmap,
    .get-started { padding: 60px 16px; }
    .section-body { margin-bottom: 32px; }

    /* Stats grid → single column on small phones */
    .stats-grid { grid-template-columns: 1fr; }

    /* Services grid → single column on small phones */
    .services-grid { grid-template-columns: 1fr; }

    /* Why Choose Us — tighter gap */
    .comparison-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
    .advantages-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact { padding: 60px 16px; }
    .contact form { max-width: 100%; }
}
