/**
 * Landing page — public homepage (index.php)
 * Brand colors: #E87A33 → #9E562B (left to right gradient)
 */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #e87a33;
    --primary-dark: #9e562b;
    --brand-orange-light: #e87a33;
    --brand-orange-dark: #9e562b;
    --secondary: #1c1c1c;
    --partition: #b8652a;
    --wardrobe: #c47230;
    --dark: #1c1c1c;
    --dark-soft: #2d2d2d;
    --text: #363636;
    --text-muted: #696969;
    --surface: #ffffff;
    --surface-muted: #fef8f3;
    --surface-alt: #faf6f2;
    --border: #ece4dc;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(28, 28, 28, 0.06);
    --shadow-md: 0 8px 32px rgba(28, 28, 28, 0.1);
    --shadow-lg: 0 24px 64px rgba(28, 28, 28, 0.14);
    --gradient-brand: linear-gradient(to right, #e87a33 0%, #9e562b 100%);
    --primary-rgb: 232, 122, 51;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --nav-height: 72px;
    --container: 1180px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

.landing-container {
    width: min(var(--container), 100% - 2.5rem);
    margin-inline: auto;
}

/* —— Header —— */
.landing-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.landing-header--on-hero {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.landing-header--on-hero .landing-logo,
.landing-header--on-hero .landing-logo-text {
    color: var(--white);
}

/* White nav links only on desktop inline bar — mobile drawer has its own light panel */
@media (min-width: 769px) {
    .landing-header--on-hero .landing-nav-links a:not(.btn-login):not(.btn-home-website):not(.btn-request-quote) {
        color: rgba(255, 255, 255, 0.92);
    }

    .landing-header--on-hero .landing-nav-links a:not(.btn-login):not(.btn-home-website):not(.btn-request-quote):hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.12);
    }

    .landing-header--on-hero .btn-home-website {
        border-color: rgba(255, 255, 255, 0.35) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    .landing-header--on-hero .btn-request-quote {
        border-color: rgba(255, 255, 255, 0.45) !important;
        background: rgba(255, 255, 255, 0.12) !important;
        color: var(--white) !important;
        box-shadow: none;
    }
}

.landing-header--on-hero .mobile-menu-toggle {
    color: var(--white);
}

.landing-header.scrolled,
.landing-header--on-hero.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.landing-header--on-hero.scrolled .landing-logo,
.landing-header--on-hero.scrolled .landing-logo-text {
    color: var(--secondary);
}

.landing-header--on-hero.scrolled .landing-nav-links a:not(.btn-login):not(.btn-home-website):not(.btn-request-quote) {
    color: var(--dark-soft);
}

.landing-header--on-hero.scrolled .mobile-menu-toggle {
    color: var(--secondary);
}

.landing-header--on-hero.scrolled .btn-home-website {
    border-color: rgba(var(--primary-rgb), 0.25) !important;
    background: rgba(var(--primary-rgb), 0.06) !important;
    color: var(--primary) !important;
}

.landing-header--on-hero.scrolled .btn-request-quote {
    border-color: rgba(var(--primary-rgb), 0.35) !important;
    background: #fff !important;
    color: var(--primary) !important;
}

.landing-nav {
    width: min(var(--container), 100% - 2.5rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.05rem;
    min-width: 0;
}

.landing-logo img {
    height: 42px;
    width: auto;
    max-width: 140px;
    max-height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Override global mobile img { max-width:100%; height:auto } from mobile-optimization */
.landing-page .landing-logo img,
.landing-page .footer-brand .landing-logo img {
    max-width: 140px !important;
    max-height: 42px !important;
    height: 42px !important;
    width: auto !important;
}

.landing-logo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

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

.landing-nav-links a {
    color: var(--dark-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.landing-nav-links a:not(.btn-login):not(.btn-home-website):not(.btn-request-quote):hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

.btn-home-website {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem !important;
    border: 1px solid rgba(var(--primary-rgb), 0.25) !important;
    background: rgba(var(--primary-rgb), 0.06) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-pill) !important;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.35rem !important;
    background: var(--gradient-brand) !important;
    color: var(--white) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.28);
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
}

.btn-request-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem !important;
    background: #fff !important;
    color: var(--primary) !important;
    border: 2px solid rgba(var(--primary-rgb), 0.35) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.1);
}

.btn-request-quote:hover {
    background: var(--surface-muted) !important;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.65rem;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 12px;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    background: var(--surface-alt);
}

/* —— Hero (Zomato-style full-screen) —— */
.hero--zomato {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: calc(var(--nav-height) + 2rem) 1.25rem 1.5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9e562b 0%, #6b3a1e 45%, #1c1c1c 100%) center / cover no-repeat;
    transform: scale(1.02);
}

.hero-bg--image {
    background-image: var(--hero-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(232, 122, 51, 0.18) 0%, rgba(158, 86, 43, 0.22) 100%),
        linear-gradient(180deg, rgba(28, 28, 28, 0.5) 0%, rgba(28, 28, 28, 0.72) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero-wordmark {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0 auto 1rem;
    line-height: 1.1;
}

.hero--zomato h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    min-width: 200px;
}

.hero-cta-btn--primary {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--white);
}

.hero-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-cta-btn--outline {
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
}

.hero-cta-btn--outline:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.hero-secondary-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-secondary-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color var(--transition);
}

.hero-secondary-links a:hover {
    color: var(--white);
}

.hero-link-divider {
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-hint {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--transition);
    animation: heroBounce 2s ease-in-out infinite;
}

.hero-scroll-hint:hover {
    color: var(--white);
}

@keyframes heroBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* —— Brand showcase (Zomato product cards) —— */
.brand-showcase {
    padding: 4rem 0;
    background: var(--dark);
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--white);
    min-height: 220px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.brand-card--shutter { background: linear-gradient(to right, #e87a33 0%, #9e562b 100%); }
.brand-card--wardrobe { background: linear-gradient(to right, #ef8a45 0%, #a85e2f 100%); }
.brand-card--partition { background: linear-gradient(to right, #d46828 0%, #8f4d24 100%); }

.brand-card-logo {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.brand-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    margin-top: auto;
}

.brand-card-cta i {
    transition: transform var(--transition);
}

.brand-card:hover .brand-card-cta i {
    transform: translateX(4px);
}

/* —— Mission section —— */
.mission-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: var(--white);
    overflow: hidden;
}

.mission-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 90% 80%, rgba(var(--primary-rgb), 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.mission-decor::before,
.mission-decor::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.mission-decor::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
}

.mission-decor::after {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -40px;
}

.mission-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mission-section h2 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    max-width: 680px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.mission-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.mission-stat {
    position: relative;
    padding: 2rem 1.5rem;
    text-align: center;
}

.mission-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--border);
}

.mission-stat strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.mission-stat span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mission-stat-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
    opacity: 0.35;
}

/* —— Section shared —— */
.landing-section {
    padding: 5rem 0;
}

.landing-section--muted {
    background: var(--surface-muted);
}

.landing-section--products {
    background: var(--surface-alt);
}

.landing-section--panels {
    background: var(--white);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* —— Product lines —— */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--product-accent, var(--primary));
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.product-card--shutter { --product-accent: #e87a33; }
.product-card--wardrobe { --product-accent: #c47230; }
.product-card--partition { --product-accent: #b8652a; }

.product-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    background: var(--product-accent);
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    margin-bottom: 1.25rem;
}

.product-card li {
    font-size: 0.86rem;
    color: var(--text);
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-card li i {
    color: var(--product-accent);
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--product-accent);
    text-decoration: none;
}

.product-card-link:hover {
    gap: 0.6rem;
}

.product-card-link--muted {
    display: flex;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.9;
}

/* —— Features —— */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.65rem 1.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* —— User panels —— */
.panels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.panel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.65rem 1.4rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.panel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.panel-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.panel-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

.btn-panel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    margin-top: auto;
}

.btn-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
}

/* —— Public quotation CTA —— */
.public-quote-cta {
    padding: 3.5rem 0;
    background: var(--surface-muted);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.public-quote-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.section-eyebrow--on-dark {
    color: var(--primary);
}

.public-quote-cta-copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.public-quote-cta-copy p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 520px;
}

.public-quote-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.btn-public-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-pill);
    background: var(--gradient-brand);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
    transition: var(--transition);
}

.btn-public-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.32);
}

.btn-public-quote-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    transition: var(--transition);
}

.btn-public-quote-outline:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

/* —— Get in touch —— */
.company-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.company-section .landing-container {
    position: relative;
    z-index: 1;
}

.company-premium-shell {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 80px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.company-section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.company-section-head .section-title {
    color: var(--dark);
}

.company-section-head .section-subtitle {
    color: var(--text-muted);
}

.company-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.company-quick-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--dark);
    background: #f8fafc;
    border: 1px solid var(--border);
    transition: var(--transition);
    min-height: 52px;
}

.company-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: rgba(var(--primary-rgb), 0.35);
}

.company-quick-btn-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
}

.company-quick-btn--call .company-quick-btn-icon { background: var(--gradient-brand); }
.company-quick-btn--whatsapp .company-quick-btn-icon { background: #25d366; }
.company-quick-btn--email .company-quick-btn-icon { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.company-quick-btn--message .company-quick-btn-icon { background: linear-gradient(135deg, #6366f1, #4338ca); }
.company-quick-btn--quote .company-quick-btn-icon { background: linear-gradient(135deg, #059669, #047857); }

.company-quick-btn-text {
    line-height: 1.35;
    word-break: break-word;
}

.company-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.company-aside {
    grid-row: span 2;
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(160deg, #fef8f3 0%, #faf6f2 100%);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.company-aside-logo-wrap {
    padding: 0.85rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.25rem;
}

.company-aside-logo {
    max-width: 130px !important;
    max-height: 52px !important;
    height: auto !important;
    width: auto !important;
    display: block;
    filter: none !important;
}

.company-aside-brand h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.company-aside-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.company-aside-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.company-aside-meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.5;
}

.company-aside-meta i {
    width: 18px;
    margin-top: 0.12rem;
    color: var(--primary);
    text-align: center;
    flex-shrink: 0;
}

.company-aside-meta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.company-aside-meta a:hover { text-decoration: underline; }

.company-copy-all {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    background: #fff;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.company-copy-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface-muted);
}

.company-card {
    position: relative;
    padding: 1.35rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.company-card:hover {
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.company-card.copied {
    border-color: #6ee7b7;
    background: #ecfdf5;
}

.company-card-top {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.company-card-icon--map { background: var(--gradient-brand); }
.company-card-icon--contact { background: linear-gradient(135deg, #6366f1, #4338ca); }

.company-card h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.company-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.company-card-sub {
    font-size: 0.82rem !important;
}

.company-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 0.85rem;
    aspect-ratio: 16 / 10;
    min-height: 180px;
    background: #e2e8f0;
}

.company-map {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 0;
    display: block;
}

.company-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.company-info-action {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: inherit;
}

.company-info-action:hover {
    background: var(--surface-muted);
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), 0.35);
}

.company-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    background: var(--dark);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    transition: var(--transition);
}

.company-info-link:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    transition: var(--transition);
}

.contact-row:hover {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.contact-row--whatsapp {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.contact-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
}

.contact-row-icon--phone { color: var(--primary); }
.contact-row-icon--email { color: #0284c7; }
.contact-row-icon--whatsapp {
    background: #dcfce7;
    border-color: #bbf7d0;
    color: #16a34a;
}

.contact-row-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 0.12rem;
}

.contact-row-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    word-break: break-word;
}

.contact-row-value:hover { color: var(--primary); }

.contact-row-value--plain {
    font-weight: 600;
    color: var(--text-muted);
}

.contact-row-actions {
    display: flex;
    gap: 0.35rem;
}

.contact-row-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.82rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-row-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--surface-muted);
}

.contact-row-btn--whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.contact-row-btn--whatsapp:hover {
    background: #20bd5a;
    color: #fff;
}

.company-contact-form-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.company-contact-form-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.25);
}

.company-contact-form-link--secondary {
    margin-top: 0.5rem;
    background: #f8fafc;
    color: var(--dark) !important;
    border: 1px solid var(--border);
    box-shadow: none;
}

.company-contact-form-link--secondary:hover {
    background: #fff;
    border-color: rgba(var(--primary-rgb), 0.35);
    color: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.copy-feedback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    z-index: 2;
}

.copy-feedback.show { opacity: 1; }

.copy-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #0f172a;
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* —— Footer —— */
.landing-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 calc(1.5rem + var(--safe-bottom));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .landing-logo {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-brand .landing-logo-text {
    max-width: none;
}

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.75rem;
    max-width: 28rem;
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.85rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.28);
    color: #25d366 !important;
    font-weight: 600;
}

.whatsapp-footer-link:hover {
    background: rgba(37, 211, 102, 0.2);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.footer-heart {
    color: #e91e63;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* —— Utilities —— */
.skip-to-content {
    position: absolute;
    top: -48px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10001;
    border-radius: 0 0 8px 0;
    font-weight: 700;
}

.skip-to-content:focus {
    top: 0;
}

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

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

/* Hero & brand cards — always visible on load */
.hero--zomato .reveal,
.brand-showcase .reveal {
    opacity: 1;
    transform: none;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
    .brand-showcase-grid {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .mission-stat:not(:last-child)::after {
        display: none;
    }

    .mission-stat:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }

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

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

    .company-layout {
        grid-template-columns: 1fr;
    }

    .company-aside {
        grid-row: auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    }

    .landing-nav-links.active {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
    }

    .landing-nav-links a:not(.btn-login) {
        color: var(--dark-soft);
    }

    .landing-nav-links a:not(.btn-login):not(.btn-home-website):not(.btn-request-quote):hover {
        color: var(--primary);
        background: rgba(var(--primary-rgb), 0.08);
    }

    .landing-nav-links .btn-home-website {
        border-color: rgba(var(--primary-rgb), 0.25) !important;
        background: rgba(var(--primary-rgb), 0.06) !important;
        color: var(--primary) !important;
    }

    .landing-nav-links .btn-request-quote {
        border-color: rgba(var(--primary-rgb), 0.35) !important;
        background: #fff !important;
        color: var(--primary) !important;
        box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.1);
    }

    .landing-nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
        border-radius: 10px;
    }

    .btn-login,
    .btn-home-website {
        justify-content: center;
    }

    .hero--zomato {
        min-height: 100svh;
        padding-bottom: 1.25rem;
    }

    .hero-scroll-hint {
        margin-top: 2rem;
    }

    .hero--zomato h1 {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-btn {
        width: 100%;
        min-width: 0;
    }

    .brand-showcase {
        padding: 3rem 0;
    }

    .landing-section {
        padding: 3.5rem 0;
    }

    .products-grid,
    .features-grid,
    .panels-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .company-premium-shell {
        padding: 1.35rem;
        border-radius: 18px;
    }

    .company-quick-actions {
        grid-template-columns: 1fr;
    }

    .company-quick-btn {
        min-height: 48px;
    }

    .contact-row {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
    }

    .contact-row-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
        padding-top: 0.25rem;
    }

    .company-contact-form-link--secondary {
        margin-top: 0.5rem;
    }

    .public-quote-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .public-quote-cta-copy p {
        max-width: none;
    }

    .public-quote-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .landing-container {
        width: min(var(--container), 100% - 1.5rem);
    }

    .company-section {
        padding: 2.5rem 0;
    }

    .company-premium-shell {
        padding: 1.15rem;
        border-radius: 16px;
    }

    .company-quick-btn-text {
        font-size: 0.8rem;
    }

    .company-map-wrap {
        aspect-ratio: 4 / 3;
        min-height: 160px;
    }

    .mobile-menu-toggle {
        font-size: 1.75rem;
        min-width: 52px;
        min-height: 52px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .landing-nav-links a,
    .btn-login,
    .btn-home-website,
    .hero-cta-btn,
    .btn-panel {
        min-height: 44px;
    }

    .mobile-menu-toggle {
        min-width: 52px;
        min-height: 52px;
    }
}
