/* ============================================
   EVOQ HAUS - Ocean Breeze Light Theme
   Smart Home Automation & Interior Solutions
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f9ff;
    --bg-card: #e0f2fe;
    --bg-card-hover: #bae6fd;
    --bg-glass: rgba(14, 165, 233, 0.05);
    --border-color: rgba(14, 165, 233, 0.15);

    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-glow: rgba(14, 165, 233, 0.25);
    --accent-secondary: #6366f1;

    --text-primary: #1e293b;
    --text-secondary: rgba(30, 41, 59, 0.7);
    --text-muted: rgba(30, 41, 59, 0.5);

    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    --gradient-text: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #a78bfa 100%);

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;

    --container: 1320px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-glow: 0 0 60px rgba(14, 165, 233, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header over hero (transparent, white text) */
.header .logo-text {
    color: #ffffff;
    transition: color 0.4s ease;
}

.header .logo-text span {
    color: var(--accent-light);
}

.header .logo-icon {
    color: var(--accent-light);
}

.header .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.header .nav-link:hover,
.header .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header .btn-contact-header {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.header .btn-contact-header:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.header .menu-toggle span {
    background: #ffffff;
}

/* Header scrolled (solid white bg, dark text) */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled .logo-text {
    color: var(--text-primary);
}

.header.scrolled .logo-text span {
    color: var(--accent);
}

.header.scrolled .logo-icon {
    color: var(--accent);
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.header.scrolled .btn-contact-header {
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.header.scrolled .btn-contact-header:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
    border-color: rgba(14, 165, 233, 0.3);
}

.header.scrolled .menu-toggle span {
    background: var(--text-primary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    display: block;
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: filter 0.4s ease, opacity 0.3s ease;
}

/* Over the transparent (hero) header — force pure white and
   add a soft glow so the wordmark separates from the dark hero. */
.header:not(.scrolled) .logo-img {
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.35))
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Header shrinks slightly once you scroll — logo stays large but not oversized */
.header.scrolled .logo-img {
    height: 54px;
    filter: none;
}

/* Footer sits on white — show the logo in its natural colors, generous size */
.footer .logo-img {
    height: 72px;
    filter: none;
}

.footer .logo:hover .logo-img {
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .logo-img { height: 52px; max-width: 190px; }
    .header.scrolled .logo-img { height: 48px; }
    .footer .logo-img { height: 64px; }
}

@media (max-width: 640px) {
    .logo-img { height: 44px; max-width: 160px; }
    .header.scrolled .logo-img { height: 42px; }
    .footer .logo-img { height: 56px; }
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-contact-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-contact-header:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
    border-color: rgba(14, 165, 233, 0.3);
}

.btn-cta {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

/* Nav links wrapper (for drawer layout) */
.nav-links {
    display: contents;
}

/* Nav actions (only visible inside mobile drawer) */
.nav-actions {
    display: none;
}


/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Hero Section - Full Width Background
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Full-width background image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1200ms ease-in-out;
    will-change: opacity, transform;
}

.hero-bg-img.active {
    opacity: 1;
    animation: heroKenBurns 9s ease-out forwards;
}

@keyframes heroKenBurns {
    0%   { transform: scale(1.02); }
    100% { transform: scale(1.09); }
}

/* Hero pagination — labeled pointer cards */
.hero-pagination {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
    padding: 8px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-pointer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease;
}

.hero-pointer:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.hp-index {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 1px;
}

.hp-label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.5s ease, opacity 0.3s ease 0.15s;
}

.hero-pointer.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35), rgba(99, 102, 241, 0.35));
    padding-right: 22px;
}

.hero-pointer.active .hp-index { opacity: 1; }

.hero-pointer.active .hp-label {
    max-width: 180px;
    opacity: 1;
}

.hp-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
}

.hero-pointer.active .hp-progress {
    opacity: 1;
    animation: heroPointerProgress 7s linear forwards;
}

@keyframes heroPointerProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-pagination { bottom: 100px; gap: 8px; padding: 6px; }
    .hero-pointer { padding: 8px 14px; font-size: 11px; }
    .hero-pointer.active .hp-label { max-width: 140px; }
}

/* Mobile — collapse to compact dots */
@media (max-width: 640px) {
    .hero-pagination {
        bottom: 88px;
        gap: 6px;
        padding: 6px 10px;
    }
    .hero-pointer {
        padding: 8px;
        gap: 0;
    }
    .hero-pointer .hp-label { display: none; }
    .hero-pointer .hp-index {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.45);
        font-size: 0;
        text-indent: -9999px;
        overflow: hidden;
    }
    .hero-pointer.active {
        padding: 8px 14px;
    }
    .hero-pointer.active .hp-index {
        width: 24px;
        border-radius: 3px;
        background: #ffffff;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.40) 40%,
            rgba(0, 0, 0, 0.55) 100%
        ),
        radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-tag-text {
    display: inline-block;
    transition: opacity 200ms ease;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow);
}

.tag-line {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    color: #ffffff;
    white-space: nowrap;
}

.hero-title br {
    content: '';
}

.hero-title br + .title-outline {
    white-space: normal;
}

.title-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    position: relative;
    display: inline-block;
}

.title-outline::after {
    content: 'Together.';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clip-path: inset(0 100% 0 0);
    animation: fillText 2s ease-out 0.5s forwards;
}

@keyframes fillText {
    to { clip-path: inset(0 0 0 0); }
}

.hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.btn-ghost-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-ghost-icon svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    margin-left: 2px;
}

.btn-ghost:hover .btn-ghost-icon {
    background: var(--accent);
}

.btn-ghost:hover .btn-ghost-icon svg {
    stroke: #ffffff;
}

/* Glass cards row at bottom of hero */
.hero-glass-row {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 720px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

/* Loading state during form submission */
.btn.is-submitting,
button.is-submitting {
    pointer-events: none;
    opacity: 0.75;
    position: relative;
}

.btn.is-submitting > *,
button.is-submitting > * {
    opacity: 0.35;
}

.btn.is-submitting::after,
button.is-submitting::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translate(4px, -4px);
}

.btn-primary {
    color: #ffffff;
    background: var(--gradient-1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline-light {
    color: var(--text-primary);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Hero glass feature cards */
.hero-glass-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.hero-glass-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.glass-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

.glass-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 20px 10px transparent; }
}

.glass-text {
    display: flex;
    flex-direction: column;
}

.glass-title {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

.glass-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gradient-1);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -20px; }
    100% { top: 60px; }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    padding: 28px 0;
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.85) 0%,
        rgba(224, 242, 254, 0.7) 100%);
    border-top: 1px solid rgba(14, 165, 233, 0.10);
    border-bottom: 1px solid rgba(14, 165, 233, 0.14);
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.08), transparent 55%),
                radial-gradient(ellipse at 85% 50%, rgba(99, 102, 241, 0.06), transparent 55%);
    pointer-events: none;
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-radius: 14px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.6);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.25);
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.trust-text strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.2px;
    line-height: 1;
}

.trust-text span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.2px;
}

/* Certified partner badge */
.trust-badge {
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.trust-badge-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-badge-names {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-badge-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* Fade-in reveal */
.trust-bar .trust-item {
    opacity: 0;
    transform: translateY(12px);
    animation: trustItemIn 0.6s ease-out forwards;
}

.trust-bar .trust-item:nth-child(1) { animation-delay: 0.05s; }
.trust-bar .trust-item:nth-child(2) { animation-delay: 0.15s; }
.trust-bar .trust-item:nth-child(3) { animation-delay: 0.25s; }
.trust-bar .trust-item:nth-child(4) { animation-delay: 0.35s; }
.trust-bar .trust-item:nth-child(5) { animation-delay: 0.45s; }

@keyframes trustItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .trust-strip {
        justify-content: center;
        gap: 14px;
    }
    .trust-badge { order: 5; }
}

/* Mobile */
@media (max-width: 640px) {
    .trust-bar { padding: 16px 0; }
    .trust-strip { gap: 10px; }
    .trust-item {
        padding: 4px 8px;
        gap: 8px;
    }
    .trust-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }
    .trust-icon svg { width: 16px; height: 16px; }
    .trust-text strong { font-size: 13px; }
    .trust-text span { font-size: 11px; }
    .trust-badge {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 36px 32px;
    position: relative;
    transition: var(--transition);
}

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

.stat-card:hover {
    background: var(--bg-secondary);
}

.stat-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.stat-card:hover .stat-card-icon {
    background: var(--gradient-1);
    border-color: transparent;
}

.stat-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: var(--transition);
}

.stat-card:hover .stat-card-icon svg {
    stroke: #ffffff;
}

.stat-card-content {
    display: flex;
    flex-direction: column;
}

.stat-card-value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.stat-card-value[data-count]::after {
    content: '+';
    color: var(--accent);
}

.stat-card-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-weight: 500;
}

/* ============================================
   Marquee Section
   ============================================ */
.marquee-section {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Section Styles
   ============================================ */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
}

.section-intro {
    margin-bottom: 60px;
}

.section-intro.centered {
    text-align: center;
}

.section-intro.centered .section-desc {
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.section-header .section-desc {
    text-align: right;
}

/* ============================================
   About Section - Bento Grid
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--bg-primary);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.bento-wide {
    grid-column: 2 / span 2;
    grid-row: 2;
    min-height: 220px;
}

.bento-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.bento-card:hover {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 8px 40px rgba(14, 165, 233, 0.08);
}

/* Vision card (large, top left) */
.bento-large {
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.bento-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.bento-large h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.bento-large h3 span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-large p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0;
}

.bento-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 24px;
}

.bento-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-large:hover .bento-image img {
    transform: scale(1.03);
}

/* Image card (top right) */
.bento-image-card {
    position: relative;
    min-height: 280px;
}

.bento-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.bento-image-card:hover img {
    transform: scale(1.05);
}

.bento-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-overlay-tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.bento-image-overlay span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* About features row */
.about-features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bf-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

.about-feature span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   Products Section - Horizontal Scroll
   ============================================ */
.products {
    padding: 100px 0 80px;
    background: var(--bg-secondary);
}

.products-scroll-wrap {
    position: relative;
}

.products-scroll {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px;
    cursor: grab;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.products-scroll:active {
    cursor: grabbing;
}

.products-track {
    display: flex;
    gap: 24px;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2 + 24px));
    width: max-content;
}

/* Scroll Arrow Buttons */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.scroll-arrow:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.25);
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

.scroll-prev {
    left: max(12px, calc((100vw - var(--container)) / 2 - 8px));
}

.scroll-next {
    right: max(12px, calc((100vw - var(--container)) / 2 - 8px));
}

.scroll-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Product Cards */
.product-card {
    position: relative;
    width: 340px;
    min-width: 340px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
    scroll-snap-align: start;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.product-card.featured {
    border-color: rgba(14, 165, 233, 0.3);
}

.product-card.featured .product-visual {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fff;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: 2;
}

.product-visual {
    padding: 28px 28px 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.product-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-wrap svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent);
}

.product-info {
    padding: 24px 28px 28px;
}

.product-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    background: rgba(14, 165, 233, 0.08);
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.product-highlights li svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    fill: var(--accent);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    padding: 8px 18px 8px 0;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.product-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.product-cta:hover {
    gap: 12px;
}

.product-cta:hover svg {
    transform: translateX(2px);
}

/* Scroll Navigation */
.scroll-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.scroll-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.scroll-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.scroll-hint svg {
    width: 18px;
    height: 18px;
    animation: slideRight 1.5s ease-in-out infinite;
}

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

/* ============================================
   Services Section - Tabs
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services-tabs {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--bg-glass);
}

.tab-btn.active {
    background: var(--bg-card);
    border-color: var(--border-color);
}

.tab-btn.active .tab-num {
    color: var(--accent);
}

.tab-num {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.tab-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.tabs-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

.panel-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.panel-text h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.panel-text > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.panel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.panel-features li {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.panel-text .btn {
    margin-top: auto;
    align-self: flex-start;
}

.panel-image {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    min-height: 100%;
}

.panel-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.panel-image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.panel-image-slider img.active {
    opacity: 1;
}

.panel-image-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.panel-image-dots .img-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.panel-image-dots .img-dot.active {
    width: 22px;
    border-radius: 4px;
    background: #fff;
}

.panel-image-dots:empty {
    display: none;
}

/* ============================================
   Work / Projects Section
   ============================================ */
.work {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.work-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

.work-item.large {
    grid-column: span 2;
}

.work-item.tall {
    grid-row: span 2;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-item:hover img {
    transform: scale(1.06);
}

/* Base gradient — always visible so title/tag never disappear */
.work-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(2, 6, 23, 0.85) 0%,
        rgba(2, 6, 23, 0.45) 35%,
        rgba(2, 6, 23, 0) 70%);
    z-index: 1;
    transition: background 0.5s ease;
    pointer-events: none;
}

.work-item:hover::before {
    background: linear-gradient(to top,
        rgba(2, 6, 23, 0.92) 0%,
        rgba(2, 6, 23, 0.6) 50%,
        rgba(2, 6, 23, 0.15) 100%);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 26px;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    color: #ffffff;
}

.work-item:hover .work-overlay {
    transform: translateY(-4px);
}

.work-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(99, 102, 241, 0.9));
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.work-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    color: #ffffff;
    line-height: 1.2;
}

.work-item.large .work-title {
    font-size: 28px;
}

.work-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.work-overlay p::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

/* Mobile: no hover, keep overlay visible */
@media (hover: none) {
    .work-item::before {
        background: linear-gradient(to top,
            rgba(2, 6, 23, 0.9) 0%,
            rgba(2, 6, 23, 0.4) 55%,
            rgba(2, 6, 23, 0) 90%);
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.quote-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-box {
    position: relative;
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    padding: 80px;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--accent);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cta-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 100px;
}

.cta-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.cc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.cc-text {
    display: flex;
    flex-direction: column;
}

.cc-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-text strong {
    font-size: 16px;
    font-weight: 500;
    margin-top: 2px;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-socials > span {
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    stroke: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover svg {
    fill: white;
    stroke: white;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   Section cross-link (inline)
   ============================================ */
.section-crosslink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.14);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.section-crosslink:hover {
    background: rgba(14, 165, 233, 0.12);
    transform: translateY(-1px);
}

/* ============================================
   Products page — cross-link cards
   ============================================ */
.pd-crosslink-section {
    padding: 80px 0 40px;
    background: var(--bg-primary);
}

.pd-crosslink-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pd-crosslink-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.05),
        rgba(99, 102, 241, 0.03));
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pd-crosslink-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 233, 0.32);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.10);
}

.pd-crosslink-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    flex-shrink: 0;
}

.pd-crosslink-icon svg {
    width: 22px;
    height: 22px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pd-crosslink-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.pd-crosslink-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 6px;
}

.pd-crosslink-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.pd-crosslink-arrow {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.10);
    color: var(--accent);
    transition: background 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-crosslink-arrow svg {
    width: 16px;
    height: 16px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pd-crosslink-card:hover .pd-crosslink-arrow {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    transform: translate(3px, -3px);
}

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

@media (max-width: 640px) {
    .pd-crosslink-section { padding: 60px 0 20px; }
    .pd-crosslink-card {
        padding: 20px;
        gap: 14px;
    }
    .pd-crosslink-body h3 { font-size: 15px; }
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    padding: 14px 0;
    background: rgba(240, 249, 255, 0.6);
    border-bottom: 1px solid rgba(14, 165, 233, 0.10);
}

.crumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.crumbs-item {
    display: flex;
    align-items: center;
}

.crumbs-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.crumbs-item a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--accent);
}

.crumbs-item a svg {
    width: 14px;
    height: 14px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.crumbs-item.current {
    color: var(--text-primary);
    font-weight: 700;
    padding: 4px 10px;
}

.crumbs-sep {
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
}

.crumbs-sep svg {
    width: 12px;
    height: 12px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 640px) {
    .breadcrumbs { padding: 10px 0; }
    .crumbs-list { font-size: 12px; gap: 4px; }
    .crumbs-item a { padding: 4px 8px; }
}

/* ============================================
   Back-to-Top button
   ============================================ */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 128px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 50%;
    color: var(--accent);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(10px) scale(0.85);
    pointer-events: none;
    z-index: 985;
    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.2s ease,
        color 0.2s ease;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px) scale(1);
}

@media (max-width: 640px) {
    .back-to-top {
        right: 14px;
        bottom: 88px;
        width: 38px;
        height: 38px;
    }
    .back-to-top svg { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: opacity 0.2s ease;
    }
}

/* ============================================
   Floating Contact CTAs (WhatsApp + Call)
   ============================================ */
.float-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 990;
    align-items: flex-end;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: visible;
    transition:
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-call {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.float-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    flex-shrink: 0;
}

.float-icon svg {
    width: 22px;
    height: 22px;
}

.float-label {
    display: inline-block;
    max-width: 200px;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Pulse ring — WhatsApp only */
.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: floatPulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes floatPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    70%  { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Shrunk state — icon-only pill */
.float-cta.shrunk .float-btn {
    padding: 8px;
}

.float-cta.shrunk .float-label {
    max-width: 0;
    opacity: 0;
}

/* Re-expand on hover even when shrunk */
.float-cta.shrunk .float-btn:hover,
.float-cta.shrunk .float-btn:focus-visible {
    padding: 14px 20px 14px 14px;
}

.float-cta.shrunk .float-btn:hover .float-label,
.float-cta.shrunk .float-btn:focus-visible .float-label {
    max-width: 200px;
    opacity: 1;
}

/* Entry animation */
.float-cta .float-btn {
    animation: floatIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.float-cta .float-btn:nth-child(1) { animation-delay: 0.4s; }
.float-cta .float-btn:nth-child(2) { animation-delay: 0.55s; }

@keyframes floatIn {
    from { opacity: 0; transform: translateY(20px) scale(0.7); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile — always shrunk, side-by-side pinned to bottom-right */
@media (max-width: 640px) {
    .float-cta {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }
    .float-btn { padding: 8px; }
    .float-label { max-width: 0; opacity: 0; }
    .float-btn:hover { padding: 8px; transform: translateY(-2px); }
    .float-icon { width: 36px; height: 36px; }
    .float-icon svg { width: 20px; height: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .float-pulse { animation: none; }
    .float-cta .float-btn { animation: none; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-col a {
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-legal a {
    font-size: 14px;
    color: var(--text-muted);
}

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

/* ============================================
   Modal
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-dialog {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.modal-header p {
    font-size: 14px;
    color: var(--accent);
    margin-top: 4px;
}

/* ============================================
   Toast
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 3000;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    width: 24px;
    height: 24px;
    stroke: #22c55e;
}

.toast-content strong {
    display: block;
    font-size: 16px;
}

.toast-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   Quote Wizard
   ============================================ */
.qw-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qw-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qw-dialog {
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.3s ease;
}

.qw-overlay.active .qw-dialog {
    transform: translateY(0) scale(1);
}

/* Header */
.qw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--gradient-1);
    color: #fff;
    flex-shrink: 0;
}

.qw-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qw-logo {
    width: 32px;
    height: 32px;
    color: #fff;
}

.qw-logo svg {
    width: 100%;
    height: 100%;
}

.qw-header-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}

.qw-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: background 0.2s;
}

.qw-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.qw-close svg {
    width: 18px;
    height: 18px;
}

/* Progress */
.qw-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.qw-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.3s, transform 0.3s;
}

.qw-dot.done {
    background: var(--accent);
}

.qw-dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Chat area */
.qw-chat {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 120px;
    max-height: 260px;
}

.qw-bubble {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.55;
    animation: qwSlideIn 0.3s ease forwards;
}

.qw-bubble.bot {
    align-self: flex-start;
    background: var(--bg-card);
    border-radius: 16px 16px 16px 4px;
    color: var(--text-primary);
}

.qw-bubble.user {
    align-self: flex-end;
    background: var(--gradient-1);
    border-radius: 16px 16px 4px 16px;
    color: #fff;
}

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

/* Step content */
.qw-step-content {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
    overflow-y: auto;
    max-height: 340px;
    animation: qwFadeIn 0.2s ease;
}

@keyframes qwFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Option cards (Steps 1, 2, 5, 6) */
.qw-options {
    display: grid;
    gap: 10px;
}

.qw-options.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.qw-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    background: var(--bg-primary);
}

.qw-option:hover {
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
}

.qw-option.selected {
    border-color: var(--accent);
    background: rgba(14, 165, 233, 0.05);
}

.qw-option.selected::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.qw-option-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.qw-option-icon svg {
    width: 100%;
    height: 100%;
}

.qw-option-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
}

.qw-option-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Room chips (Step 3) */
.qw-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qw-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    background: var(--bg-primary);
}

.qw-chip:hover {
    border-color: var(--accent-light);
}

.qw-chip.selected {
    border-color: var(--accent);
    background: rgba(14, 165, 233, 0.08);
    color: var(--accent);
}

/* Counter for Bedroom/Bathroom */
.qw-chip-counter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 4px;
}

.qw-chip-counter button {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

.qw-chip-counter button:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.qw-chip-counter span {
    min-width: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--accent);
}

/* Style & Size form (Step 4) */
.qw-form-grid {
    display: grid;
    gap: 14px;
}

.qw-form-grid .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.qw-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qw-field input,
.qw-field select,
.qw-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.2s;
}

.qw-field input:focus,
.qw-field select:focus,
.qw-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.qw-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Contact form (Step 7) */
.qw-contact-grid {
    display: grid;
    gap: 14px;
}

.qw-contact-grid .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.qw-phone-wrap {
    display: flex;
    gap: 0;
}

.qw-phone-prefix {
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.qw-phone-wrap input {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Summary (after submit) */
.qw-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qw-summary-section {
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.qw-summary-section h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.qw-summary-section p {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

/* --- Wizard: grouped services multi-select --- */
.qw-services {
    display: grid;
    gap: 22px;
}

.qw-svc-group {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
}

.qw-svc-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.qw-svc-group-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(99, 102, 241, 0.08));
    padding: 3px 8px;
    border-radius: 6px;
}

.qw-svc-group-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.qw-svc-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.qw-svc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.qw-svc-item:hover {
    border-color: rgba(14, 165, 233, 0.35);
    background: rgba(14, 165, 233, 0.03);
    transform: translateY(-1px);
}

.qw-svc-item.selected {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.10), rgba(99, 102, 241, 0.06));
    box-shadow: inset 0 0 0 1.5px rgba(14, 165, 233, 0.35);
}

.qw-svc-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: #ffffff;
    position: relative;
    transition: all 0.2s ease;
}

.qw-svc-item.selected .qw-svc-check {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-color: transparent;
}

.qw-svc-item.selected .qw-svc-check::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.qw-svc-label {
    line-height: 1.35;
}

@media (max-width: 640px) {
    .qw-svc-items {
        grid-template-columns: 1fr;
    }
    .qw-svc-item {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* --- Wizard: Estimate step --- */
.qw-estimate {
    padding: 24px;
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.6) 0%,
        rgba(224, 242, 254, 0.4) 100%);
    border: 1px solid rgba(14, 165, 233, 0.20);
    border-radius: 16px;
}

.qw-estimate-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.qw-estimate-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.qw-estimate-context {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 4px 10px;
    background: rgba(14, 165, 233, 0.10);
    border-radius: 999px;
}

.qw-estimate-amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.qw-estimate-note {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
}

.qw-estimate-disclaimer {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.10), rgba(245, 158, 11, 0.06));
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
}

.qw-estimate-disclaimer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #d97706;
    display: grid;
    place-items: center;
}

.qw-estimate-disclaimer-icon svg { width: 20px; height: 20px; }

.qw-estimate-disclaimer strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.qw-estimate-disclaimer p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.qw-estimate-disclaimer p strong {
    display: inline;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

@media (max-width: 640px) {
    .qw-estimate { padding: 18px; }
    .qw-estimate-amount { font-size: 30px; }
}

.qw-summary-edit {
    font-size: 12px;
    color: var(--accent);
    cursor: pointer;
    float: right;
    font-weight: 600;
}

.qw-summary-edit:hover {
    text-decoration: underline;
}

/* Footer */
.qw-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
    gap: 10px;
}

.qw-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.qw-btn svg {
    width: 16px;
    height: 16px;
}

.qw-btn-back {
    color: var(--text-secondary);
    background: transparent;
}

.qw-btn-back:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.qw-btn-skip {
    color: var(--text-muted);
    background: transparent;
}

.qw-btn-skip:hover {
    color: var(--text-secondary);
}

.qw-btn-next {
    background: var(--gradient-1);
    color: #fff;
    border-radius: var(--radius-sm);
}

.qw-btn-next:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.qw-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.qw-btn-submit {
    background: var(--gradient-1);
    color: #fff;
    border-radius: var(--radius-sm);
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
}

.qw-btn-submit:hover {
    opacity: 0.9;
}

.qw-hidden {
    display: none !important;
}

/* Validation shake */
@keyframes qwShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

.qw-shake {
    animation: qwShake 0.3s ease;
}

/* Wizard Responsive */
@media (max-width: 768px) {
    .qw-dialog {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
    }

    .qw-chat {
        max-height: 200px;
    }

    .qw-step-content {
        max-height: 50vh;
    }

    .qw-options.cols-3 {
        grid-template-columns: 1fr;
    }

    .qw-options.cols-2 {
        grid-template-columns: 1fr;
    }

    .qw-contact-grid .form-row,
    .qw-form-grid .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .qw-header {
        padding: 14px 16px;
    }

    .qw-chat {
        padding: 16px;
        max-height: 160px;
    }

    .qw-step-content {
        padding: 14px 16px;
    }

    .qw-footer {
        padding: 12px 16px;
    }

    .qw-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero Banner */
.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-content .section-tag {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-hero-title span {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

/* Our Story Section */
.ap-story {
    padding: 100px 0;
    background: var(--bg-primary);
}

.ap-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ap-story-images {
    position: relative;
}

.ap-story-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ap-story-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ap-story-img-main:hover img {
    transform: scale(1.03);
}

.ap-story-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ap-story-img-float img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ap-story-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ap-story-badge svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.ap-story-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ap-story-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.ap-story-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ap-story-content p strong {
    color: var(--accent);
    font-weight: 600;
}

.ap-story-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.ap-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ap-highlight svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.ap-highlight span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* About Stats Section */
.ap-stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.ap-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ap-stat-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.ap-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ap-stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.ap-stat-number span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-stat-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ap-stat-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mission & Vision Cards */
.ap-mission {
    padding: 100px 0;
    background: var(--bg-primary);
}

.ap-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ap-mission-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.ap-mission-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ap-mission-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ap-mission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ap-mission-card:hover .ap-mission-img img {
    transform: scale(1.05);
}

.ap-mission-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-secondary), transparent);
}

.ap-mission-body {
    padding: 28px 32px 36px;
}

.ap-mission-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ap-mission-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.ap-mission-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.ap-mission-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* What We Offer */
.ap-offer {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ap-offer-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ap-offer-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ap-offer-block.reverse {
    direction: rtl;
}

.ap-offer-block.reverse > * {
    direction: ltr;
}

.ap-offer-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ap-offer-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ap-offer-img:hover img {
    transform: scale(1.03);
}

.ap-offer-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.ap-offer-content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.ap-offer-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.ap-offer-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.ap-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.ap-offer-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.ap-offer-link:hover {
    gap: 14px;
}

.ap-offer-link:hover svg {
    transform: translateX(4px);
}

/* Our Values */
.ap-values {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.ap-value-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.ap-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ap-value-icon {
    width: 52px;
    height: 52px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.ap-value-card:hover .ap-value-icon {
    background: var(--gradient-1);
    border-color: transparent;
}

.ap-value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: var(--transition);
}

.ap-value-card:hover .ap-value-icon svg {
    stroke: #ffffff;
}

.ap-value-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.ap-value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Partners */
.ap-partners {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ap-partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ap-partner-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
}

.ap-partner-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ap-partner-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.ap-partner-desc {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ap-partner-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Journey Timeline */
.ap-journey {
    padding: 100px 0;
    background: var(--bg-primary);
}

.ap-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.ap-timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.ap-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 48px;
    position: relative;
}

.ap-timeline-item:last-child {
    padding-bottom: 0;
}

.ap-timeline-year {
    width: 100px;
    min-width: 100px;
    text-align: right;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    padding-top: 4px;
}

.ap-timeline-dot {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    min-width: 14px;
    background: var(--accent);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
    margin-top: 6px;
}

.ap-timeline-content {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.ap-timeline-content:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ap-timeline-content h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.ap-timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ap-timeline-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0;
}

.ap-timeline-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.ap-timeline-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Founder Section */
.ap-founder {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ap-founder-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.ap-founder-image-wrap {
    position: relative;
}

.ap-founder-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ap-founder-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.ap-founder-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    white-space: nowrap;
}

.ap-founder-content {
    padding: 20px 0;
}

.ap-founder-quote {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -10px;
}

.ap-founder-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.ap-founder-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ap-founder-sig {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.ap-founder-sig strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.ap-founder-sig span {
    font-size: 14px;
    color: var(--text-muted);
}

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

/* --- Large tablets / small laptops --- */
@media (max-width: 1200px) {
    .services-tabs {
        grid-template-columns: 250px 1fr;
    }

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

    .work-item.large {
        grid-column: span 1;
    }
}

/* --- Tablets --- */
@media (max-width: 992px) {
    /* Navigation - Mobile Drawer */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
    }

    .nav-link {
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        padding: 14px 16px;
        border-radius: var(--radius-md);
        color: var(--text-primary);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-card);
        color: var(--accent);
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px 32px;
        margin-top: auto;
        border-top: 1px solid var(--border-color);
    }

    .btn-contact-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-primary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        transition: var(--transition);
    }

    .btn-contact-nav svg {
        width: 18px;
        height: 18px;
    }

    .btn-contact-nav:hover {
        background: var(--bg-card);
        border-color: rgba(14, 165, 233, 0.3);
        color: var(--accent);
    }

    .nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        text-align: center;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-glass-row {
        flex-direction: column;
        max-width: 360px;
        margin: 0 auto;
    }

    .title-outline {
        -webkit-text-stroke-width: 1.5px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    /* About */
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .bento-wide {
        grid-column: span 2;
        grid-row: auto;
    }

    /* Services */
    .services-tabs {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 16px;
        scrollbar-width: none;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .panel-content {
        grid-template-columns: 1fr;
    }

    .panel-image {
        position: relative;
        height: 300px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Testimonials */
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    /* About Page */
    .ap-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ap-story-img-float {
        right: 20px;
        bottom: -20px;
        width: 160px;
    }

    .ap-story-badge {
        left: 10px;
    }

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

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

    .ap-offer-block,
    .ap-offer-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .ap-partners-grid {
        grid-template-columns: 1fr;
    }

    .ap-founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ap-founder-image img {
        height: 400px;
    }
}

/* --- Small tablets / large phones --- */
@media (max-width: 768px) {
    /* Global section spacing */
    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .section-desc {
        font-size: 14px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header .section-desc {
        text-align: left;
    }

    /* Hero */
    .hero {
        padding: 120px 16px 60px;
    }

    .hero-title {
        font-size: clamp(20px, 5vw, 30px);
        white-space: normal;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Marquee */
    .marquee-content span {
        font-size: 15px;
    }

    .marquee-content {
        gap: 28px;
        padding-right: 28px;
    }

    /* About */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-large {
        grid-column: auto;
        padding: 28px;
    }

    .bento-image-card {
        min-height: 220px;
    }

    .about-features-row {
        flex-wrap: wrap;
        gap: 20px 32px;
    }

    /* Products */
    .product-card {
        width: 290px;
        min-width: 290px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-prev {
        left: 8px;
    }

    .scroll-next {
        right: 8px;
    }

    .scroll-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Services */
    .panel-text {
        padding: 28px;
    }

    .panel-text h3 {
        font-size: 22px;
    }

    .panel-features {
        gap: 8px;
        margin-bottom: 24px;
    }

    .panel-features li {
        padding: 6px 12px;
        font-size: 13px;
    }

    /* Work */
    .work-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .work-item.large,
    .work-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .work-item {
        height: 250px;
    }

    .work-overlay {
        padding: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* CTA */
    .cta-box {
        padding: 48px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-visual {
        display: none;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .contact-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

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

    .cc-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

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

    .cc-label {
        font-size: 11px;
    }

    .cc-text strong {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-main {
        gap: 32px;
        padding-bottom: 40px;
    }

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

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

    .footer-legal {
        gap: 16px;
    }

    /* About Page */
    .about-hero {
        min-height: 340px;
        padding: 120px 16px 60px;
    }

    .about-hero-title {
        font-size: clamp(26px, 5vw, 40px);
    }

    .about-hero-desc {
        font-size: 15px;
    }

    .ap-story {
        padding: 80px 0;
    }

    .ap-story-img-main img {
        height: 300px;
    }

    .ap-stats-grid {
        gap: 16px;
    }

    .ap-stat-card {
        padding: 24px 20px;
    }

    .ap-stat-number {
        font-size: 34px;
    }

    .ap-mission {
        padding: 80px 0;
    }

    .ap-offer {
        padding: 80px 0;
    }

    .ap-offer-img img {
        height: 280px;
    }

    .ap-offer-content h3 {
        font-size: 22px;
    }

    .ap-values {
        padding: 80px 0;
    }

    .ap-timeline-year {
        width: 70px;
        min-width: 70px;
        font-size: 14px;
    }

    .ap-timeline-line {
        left: 36px;
    }

    .ap-timeline-content {
        padding: 20px;
    }

    .ap-founder {
        padding: 80px 0;
    }

    .ap-founder-image img {
        height: 350px;
    }

    .ap-founder-content h3 {
        font-size: 22px;
    }

    .ap-founder-quote {
        font-size: 60px;
    }
}

/* --- Mobile phones --- */
@media (max-width: 576px) {
    /* Global */
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .section-tag {
        font-size: 11px;
    }

    /* Header */
    .header {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav {
        width: 280px;
        max-width: 85vw;
    }

    .nav-links {
        padding: 72px 20px 20px;
        gap: 2px;
    }

    .nav-link {
        font-size: 15px;
        padding: 12px 14px;
    }

    .nav-actions {
        padding: 14px 20px 28px;
        gap: 10px;
    }

    .btn-contact-nav {
        padding: 12px 16px;
        font-size: 14px;
    }

    .nav-cta {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 100px 16px 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(18px, 5.5vw, 26px);
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 8px;
    }

    .hero-tag {
        font-size: 12px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-glass-row {
        gap: 12px;
        max-width: 100%;
    }

    .hero-glass-card {
        padding: 14px 16px;
        gap: 10px;
    }

    .glass-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .glass-icon svg {
        width: 18px;
        height: 18px;
    }

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

    .glass-sub {
        font-size: 12px;
    }

    .title-outline {
        -webkit-text-stroke-width: 1px;
    }

    /* Stats */
    .stats-section {
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
    }

    .stat-card::after {
        display: none !important;
    }

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

    .stat-card {
        padding: 20px;
        gap: 14px;
    }

    .stat-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .stat-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-card-value {
        font-size: 24px;
    }

    .stat-card-label {
        font-size: 11px;
    }

    /* Marquee */
    .marquee-section {
        padding: 20px 0;
    }

    .marquee-content span {
        font-size: 13px;
    }

    .marquee-content {
        gap: 20px;
        padding-right: 20px;
    }

    .marquee-dot {
        width: 5px;
        height: 5px;
    }

    /* About */
    .bento-large {
        padding: 20px;
    }

    .bento-large h3 {
        font-size: 22px;
    }

    .bento-large > p {
        font-size: 14px;
    }

    .bento-image img {
        height: 160px;
    }

    .bento-image-card {
        min-height: 200px;
    }

    .about-features-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .about-feature {
        gap: 8px;
    }

    .bf-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .about-feature span {
        font-size: 13px;
    }

    /* Products */
    .products {
        padding: 60px 0 50px;
    }

    .product-card {
        width: 270px;
        min-width: 270px;
    }

    .products-track {
        padding: 0 16px;
    }

    .product-info {
        padding: 20px;
    }

    .product-visual {
        padding: 20px 20px 16px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .product-highlights {
        gap: 6px;
        margin-bottom: 16px;
    }

    .product-highlights li {
        font-size: 12px;
    }

    .product-cta {
        font-size: 13px;
    }

    .scroll-arrow {
        width: 34px;
        height: 34px;
    }

    .scroll-arrow svg {
        width: 16px;
        height: 16px;
    }

    .scroll-prev {
        left: 4px;
    }

    .scroll-next {
        right: 4px;
    }

    .scroll-nav {
        margin-top: 4px;
    }

    .scroll-hint {
        font-size: 12px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .tabs-nav {
        gap: 4px;
        padding-bottom: 12px;
    }

    .tab-btn {
        padding: 10px 14px;
        gap: 10px;
    }

    .tab-num {
        font-size: 12px;
    }

    .tab-text {
        font-size: 13px;
    }

    .panel-content {
        min-height: auto;
    }

    .panel-text {
        padding: 20px;
    }

    .panel-text h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .panel-text > p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .panel-features {
        gap: 6px;
        margin-bottom: 20px;
    }

    .panel-features li {
        padding: 5px 10px;
        font-size: 12px;
    }

    .panel-image {
        height: 220px;
    }

    .panel-text .btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    /* Work */
    .work {
        padding: 60px 0;
    }

    .work-item {
        height: 220px;
    }

    .work-overlay {
        padding: 16px;
    }

    .work-overlay h3 {
        font-size: 18px;
    }

    .work-overlay p {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .quote-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 14px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .testimonial-author {
        gap: 12px;
        padding-top: 16px;
    }

    .testimonial-author img {
        width: 44px;
        height: 44px;
    }

    .author-info strong {
        font-size: 14px;
    }

    .author-info span {
        font-size: 12px;
    }

    .testimonial-rating svg {
        width: 14px;
        height: 14px;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 36px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-content h2 {
        font-size: clamp(22px, 5.5vw, 32px);
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-visual {
        display: none;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        gap: 32px;
    }

    .contact-cards {
        gap: 12px;
        margin-bottom: 24px;
    }

    .contact-card {
        padding: 14px;
    }

    .cc-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .cc-text strong {
        font-size: 14px;
    }

    .contact-form-wrap {
        padding: 20px;
    }

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

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 14px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-main {
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 14px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-col a {
        font-size: 14px;
    }

    .footer-col ul {
        gap: 10px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-legal {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal a {
        font-size: 13px;
    }

    /* About Page */
    .about-hero {
        min-height: auto;
        padding: 100px 16px 50px;
    }

    .about-hero-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .about-hero-desc {
        font-size: 14px;
    }

    .ap-story {
        padding: 60px 0;
    }

    .ap-story-grid {
        gap: 30px;
    }

    .ap-story-img-main img {
        height: 240px;
    }

    .ap-story-img-float {
        width: 140px;
        right: 10px;
        bottom: -16px;
    }

    .ap-story-img-float img {
        height: 110px;
    }

    .ap-story-badge {
        left: 10px;
        top: 10px;
        padding: 10px 14px;
        gap: 8px;
    }

    .ap-story-badge svg {
        width: 20px;
        height: 20px;
    }

    .ap-story-badge strong {
        font-size: 18px;
    }

    .ap-story-badge span {
        font-size: 11px;
    }

    .ap-story-content p {
        font-size: 14px;
    }

    .ap-stats {
        padding: 60px 0;
    }

    .ap-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ap-stat-card {
        padding: 20px 16px;
    }

    .ap-stat-number {
        font-size: 28px;
    }

    .ap-stat-label {
        font-size: 14px;
    }

    .ap-stat-card p {
        font-size: 12px;
    }

    .ap-mission {
        padding: 60px 0;
    }

    .ap-mission-img {
        height: 180px;
    }

    .ap-mission-body {
        padding: 20px 24px 28px;
    }

    .ap-mission-body h3 {
        font-size: 20px;
    }

    .ap-mission-body p {
        font-size: 14px;
    }

    .ap-offer {
        padding: 60px 0;
    }

    .ap-offer-grid {
        gap: 40px;
    }

    .ap-offer-img img {
        height: 220px;
    }

    .ap-offer-content h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .ap-offer-content ul li {
        font-size: 14px;
    }

    .ap-values {
        padding: 60px 0;
    }

    .ap-values-grid {
        grid-template-columns: 1fr;
    }

    .ap-value-card {
        padding: 24px;
    }

    .ap-value-card h4 {
        font-size: 16px;
    }

    .ap-value-card p {
        font-size: 13px;
    }

    .ap-partners {
        padding: 60px 0;
    }

    .ap-partner-card {
        padding: 28px;
    }

    .ap-partner-name {
        font-size: 22px;
    }

    .ap-partner-card p {
        font-size: 14px;
    }

    .ap-journey {
        padding: 60px 0;
    }

    .ap-timeline-item {
        padding-bottom: 32px;
    }

    .ap-timeline-year {
        width: 50px;
        min-width: 50px;
        font-size: 13px;
    }

    .ap-timeline-line {
        left: 26px;
    }

    .ap-timeline-dot {
        width: 12px;
        height: 12px;
        min-width: 12px;
    }

    .ap-timeline-content {
        padding: 16px;
    }

    .ap-timeline-content h4 {
        font-size: 15px;
    }

    .ap-timeline-content p {
        font-size: 13px;
    }

    .ap-founder {
        padding: 60px 0;
    }

    .ap-founder-image img {
        height: 320px;
    }

    .ap-founder-quote {
        font-size: 50px;
    }

    .ap-founder-content h3 {
        font-size: 20px;
    }

    .ap-founder-content p {
        font-size: 14px;
    }

    /* Modal */
    .modal-dialog {
        margin: 12px;
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .modal-dialog h2 {
        font-size: 20px;
    }

    /* Toast */
    .toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 16px;
        gap: 12px;
    }

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

    .toast-content strong {
        font-size: 14px;
    }

    .toast-content p {
        font-size: 13px;
    }
}

/* --- Very small phones (320px) --- */
@media (max-width: 380px) {
    .hero-title {
        font-size: clamp(16px, 5vw, 22px);
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-tag {
        font-size: 11px;
    }

    .product-card {
        width: 250px;
        min-width: 250px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-card-value {
        font-size: 22px;
    }

    .about-features-row {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        padding: 8px 10px;
        gap: 6px;
    }

    .tab-num {
        font-size: 11px;
    }

    .tab-text {
        font-size: 12px;
    }

    .cta-box {
        padding: 28px 16px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .panel-text {
        padding: 16px;
    }

    .panel-image {
        height: 180px;
    }

    .contact-form-wrap {
        padding: 16px;
    }

    /* About Page */
    .ap-stat-number {
        font-size: 24px;
    }

    .ap-stat-card {
        padding: 16px 12px;
    }

    .ap-timeline-year {
        width: 40px;
        min-width: 40px;
        font-size: 12px;
    }

    .ap-timeline-line {
        left: 22px;
    }

    .ap-founder-image img {
        height: 260px;
    }
}

/* ============================================
   Homepage Products Teaser — 4-tile category showcase
   ============================================ */
.products-teaser {
    padding: 120px 0;
    background: var(--bg-primary);
}

.pt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 60px 0 40px;
}

.pt-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 26px 26px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.pt-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(14, 165, 233, 0.08) 0%,
        rgba(99, 102, 241, 0.02) 60%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pt-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pt-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 24px 60px rgba(14, 165, 233, 0.12);
}

.pt-tile:hover::before { opacity: 1; }
.pt-tile:hover::after { transform: scaleX(1); }

.pt-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(99, 102, 241, 0.10));
    color: var(--accent);
    border-radius: 16px;
    margin-bottom: 22px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-tile:hover .pt-icon {
    transform: rotate(-6deg) scale(1.06);
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.pt-icon svg {
    width: 30px;
    height: 30px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pt-tile-body { flex: 1; }

.pt-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.pt-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin: 0 0 10px;
}

.pt-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.pt-arrow {
    align-self: flex-end;
    margin-top: 22px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.08);
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease;
}

.pt-arrow svg {
    width: 16px;
    height: 16px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pt-tile:hover .pt-arrow {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    transform: translate(4px, -4px);
}

/* Featured (Complete Home) tile */
.pt-tile-featured {
    background: linear-gradient(180deg,
        rgba(14, 165, 233, 0.08) 0%,
        rgba(99, 102, 241, 0.04) 100%);
    border-color: rgba(14, 165, 233, 0.22);
}

.pt-tile-featured::after { transform: scaleX(1); }

.pt-tile-featured .pt-icon {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
}

.pt-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    z-index: 1;
}

/* Footer under the tile grid */
.pt-footer {
    text-align: center;
    padding-top: 20px;
}

.pt-footer .btn { margin-bottom: 12px; }

.pt-footer-note {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    margin: 0;
}

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

@media (max-width: 640px) {
    .products-teaser { padding: 80px 0; }
    .pt-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 40px 0 28px;
    }
    .pt-tile { padding: 24px 22px 22px; }
    .pt-name { font-size: 18px; }
}

/* ============================================
   Products Page (products.html)
   ============================================ */

/* Reuse .about-hero styles + specific tweaks */
.products-hero {
    min-height: 68vh;
}

/* Sticky Category Sub-nav */
.pd-subnav {
    position: sticky;
    top: 70px;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.96) 0%,
        rgba(15, 23, 42, 0.92) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(14, 165, 233, 0.25);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 50;
    padding: 12px 0;
}

.pd-subnav-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pd-subnav-scroll::-webkit-scrollbar { display: none; }

.pd-subnav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
}

.pd-subnav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.10);
}

.pd-subnav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.40);
}

/* Product Category Sections */
.pd-category {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pd-category-alt {
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.5) 0%,
        rgba(224, 242, 254, 0.35) 100%);
}

.pd-category-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.pd-category-header .section-title {
    margin: 12px 0 16px;
}

/* Product Grid */
.pd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pd-grid-single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}

/* Product Card */
.pd-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 32px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.pd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pd-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.10);
}

.pd-card:hover::before {
    transform: scaleX(1);
}

.pd-card-featured {
    border-color: rgba(14, 165, 233, 0.25);
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.6),
        rgba(255, 255, 255, 0.9));
}

.pd-card-featured::before {
    transform: scaleX(1);
}

/* Visual side */
.pd-card-visual {
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.08),
        rgba(99, 102, 241, 0.06));
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    padding: 24px;
    position: relative;
    min-height: 200px;
}

.pd-card-icon-wrap {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25);
    transition: transform 0.4s ease;
}

.pd-card:hover .pd-card-icon-wrap {
    transform: rotate(-4deg) scale(1.06);
}

.pd-card-icon-wrap svg {
    width: 44px;
    height: 44px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pd-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pd-card-badge.featured {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

/* Body side */
.pd-card-body {
    display: flex;
    flex-direction: column;
}

.pd-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

.pd-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 10px;
}

.pd-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.pd-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
}

.pd-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.5;
}

.pd-check {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.pd-card-meta {
    padding: 10px 14px;
    background: rgba(14, 165, 233, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    margin-bottom: 18px;
}

.pd-compat {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

.pd-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

.pd-card-actions .btn {
    padding: 10px 16px;
    font-size: 13px;
}

/* Package Tiers */
.pd-tiers {
    padding: 120px 0;
    background: var(--bg-primary);
}

.pd-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    align-items: stretch;
}

.pd-tier {
    display: flex;
    flex-direction: column;
    padding: 40px 32px 32px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.pd-tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(14, 165, 233, 0.12);
}

.pd-tier-featured {
    background: linear-gradient(180deg,
        rgba(14, 165, 233, 0.08),
        rgba(99, 102, 241, 0.05));
    border-color: rgba(14, 165, 233, 0.28);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(14, 165, 233, 0.14);
}

.pd-tier-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

.pd-tier-head { margin-bottom: 20px; }

.pd-tier-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.pd-tier-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 6px;
}

.pd-tier-audience {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.pd-tier-price {
    padding: 20px 0 24px;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 20px;
}

.pd-tier-from {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pd-tier-amount {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.pd-tier-amount span {
    font-size: 20px;
    color: var(--accent);
    font-weight: 700;
    margin-left: 2px;
}

.pd-tier-emi {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pd-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
    display: grid;
    gap: 10px;
}

.pd-tier-features li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.5;
}

.pd-tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background:
        linear-gradient(45deg, transparent 45%, #ffffff 45%, #ffffff 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #ffffff 45%, #ffffff 55%, transparent 55%),
        linear-gradient(135deg, #0ea5e9, #6366f1);
    border-radius: 50%;
}

/* Integrations */
.pd-integrations {
    padding: 100px 0;
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.6) 0%,
        rgba(224, 242, 254, 0.4) 100%);
}

.pd-integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pd-integration {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pd-integration:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.10);
}

.pd-integration-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pd-integration-role {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

/* FAQ */
.pd-faq {
    padding: 120px 0;
    background: var(--bg-primary);
}

.pd-faq-list {
    max-width: 820px;
    margin: 60px auto 0;
    display: grid;
    gap: 14px;
}

.pd-faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pd-faq-item[open] {
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
}

.pd-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.pd-faq-item summary::-webkit-details-marker { display: none; }

.pd-faq-icon {
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    background: rgba(14, 165, 233, 0.10);
    border-radius: 50%;
    color: var(--accent);
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pd-faq-icon::before,
.pd-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.pd-faq-icon::before {
    width: 12px;
    height: 2px;
}

.pd-faq-icon::after {
    width: 2px;
    height: 12px;
}

.pd-faq-item[open] .pd-faq-icon {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.pd-faq-item[open] .pd-faq-icon::before,
.pd-faq-item[open] .pd-faq-icon::after {
    background: #ffffff;
}

.pd-faq-item[open] .pd-faq-icon::after {
    transform: rotate(90deg);
}

.pd-faq-body {
    padding: 0 24px 22px;
}

.pd-faq-body p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* Bottom CTA */
.pd-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.7) 0%,
        rgba(224, 242, 254, 0.5) 100%);
}

.pd-cta-box {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 56px 48px;
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.08),
        rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: var(--radius-xl);
}

.pd-cta-content .section-title {
    margin: 12px 0 12px;
}

.pd-cta-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

.pd-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Tablet */
@media (max-width: 1024px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }
    .pd-card {
        grid-template-columns: 200px 1fr;
    }
    .pd-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .pd-tier-featured { transform: none; }
    .pd-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pd-cta-box {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        text-align: center;
    }
    .pd-cta-content p { margin-left: auto; margin-right: auto; }
    .pd-cta-actions { align-items: center; }
    .pd-subnav {
        top: 64px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .pd-category { padding: 70px 0; }
    .pd-category-header { margin-bottom: 40px; }
    .pd-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    .pd-card-visual {
        min-height: 160px;
    }
    .pd-card-icon-wrap {
        width: 72px;
        height: 72px;
    }
    .pd-card-icon-wrap svg { width: 36px; height: 36px; }
    .pd-card-title { font-size: 20px; }
    .pd-tiers { padding: 80px 0; }
    .pd-tier { padding: 32px 24px 24px; }
    .pd-tier-amount { font-size: 28px; }
    .pd-integrations-grid {
        grid-template-columns: 1fr;
    }
    .pd-faq { padding: 80px 0; }
    .pd-faq-item summary {
        padding: 16px 18px;
        font-size: 14px;
    }
    .pd-faq-body { padding: 0 18px 18px; }
    .pd-cta-box {
        padding: 32px 22px;
    }
}
