/* ==========================================================================
   Souq e Kamil Trading & Solutions WLL — Light + Bold Corporate
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    --red: #ed1c24;
    --red-dark: #c5161d;
    --red-light: #ff5a62;
    --red-soft: #fde8e9;

    --blue: #2a2986;
    --blue-dark: #1a1a5e;
    --blue-light: #5654c4;
    --blue-soft: #e8e8f5;

    --ink: #0d0d2b;
    --ink-2: #1a1a3d;
    --text: #2c2f4a;
    --muted: #4d5168;
    --hint: #5b5f78;

    --bg: #ffffff;
    --bg-alt: #f7f8fc;
    --bg-tinted: #fafbff;
    --border: #e6e8f0;
    --border-strong: #d5d8e5;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    --shadow-sm: 0 2px 8px rgba(13, 13, 43, 0.04);
    --shadow: 0 8px 30px rgba(13, 13, 43, 0.08);
    --shadow-lg: 0 20px 60px rgba(13, 13, 43, 0.12);
    --shadow-red: 0 14px 40px rgba(237, 28, 36, 0.28);
    --shadow-blue: 0 14px 40px rgba(42, 41, 134, 0.25);

    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --container: 1200px;
    --header-h: 76px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

::selection { background: var(--red); color: #fff; }

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

.section { padding: 120px 0; position: relative; }
.bg-alt { background: var(--bg-alt); }

/* --- Eyebrow / Accents --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--blue);
    text-transform: uppercase;
    padding: 8px 16px;
    background: var(--blue-soft);
    border-radius: 100px;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    position: relative;
}
.eyebrow-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.3;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.8); opacity: 0; }
}

.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }

/* --- Section Head --- */
.section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 18px;
}
.section-sub {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all .25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(237, 28, 36, 0.36);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.btn i { font-size: 0.8em; }
.btn:hover i.fa-arrow-right { transform: translateX(3px); }
.btn i { transition: transform .2s var(--ease); }
.btn-sm { padding: 11px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* --- Top Bar --- */
.top-bar {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    min-width: 0;
}
.top-bar-link {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-bar-link:hover { color: #fff; }
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(237,28,36,0.6);
    animation: pulseLive 1.8s infinite;
}
@keyframes pulseLive {
    0% { box-shadow: 0 0 0 0 rgba(237,28,36,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(237,28,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(237,28,36,0); }
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: all .3s var(--ease);
}
.header.scrolled {
    background: rgba(255,255,255,0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}
.logo-img {
    height: 44px;
    width: auto;
}
.logo-text-fallback {
    display: none;
    align-items: center;
    gap: 10px;
}
.logo-icon-mini { display: inline-flex; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-line-1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--blue);
    letter-spacing: -0.01em;
}
.logo-line-2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    color: var(--blue);
    letter-spacing: 0.02em;
    margin-top: 3px;
    text-transform: uppercase;
}

/* --- Nav --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links li a {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 100px;
    transition: all .2s var(--ease);
}
.nav-links li a:hover { color: var(--ink); background: var(--bg-alt); }
.nav-links li a.nav-cta {
    background: var(--ink);
    color: #fff;
    padding: 12px 22px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-links li a.nav-cta:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-1px);
}
.nav-links li a.nav-cta i { font-size: 0.75em; transition: transform .2s var(--ease); }
.nav-links li a.nav-cta:hover i { transform: translateX(2px); }

/* --- Nav dropdown --- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}
.nav-dropdown-trigger i {
    font-size: 0.65em;
    transition: transform .2s var(--ease);
    opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    min-width: 260px;
    opacity: 0;
    pointer-events: none;
    transition: all .25s var(--ease);
    list-style: none;
    z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}
.nav-dropdown-menu li a {
    display: flex !important;
    flex-direction: column;
    padding: 12px 14px !important;
    border-radius: 10px;
    gap: 2px;
    background: transparent !important;
}
.nav-dropdown-menu li a:hover {
    background: var(--bg-alt) !important;
}
.ndm-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}
.ndm-sub {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 400;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42,41,134,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,41,134,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
}
.hero-blob-2 {
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.875rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--ink);
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-meta-item {}
.hero-meta-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-meta-label {
    font-size: 0.875rem;
    color: var(--muted);
}
.hero-meta-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}
.hero-meta-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: transform .2s var(--ease);
}
.hero-meta-link:hover {
    transform: translateY(-2px);
}
.hero-meta-link .hero-meta-num {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.hero-meta-link .hero-meta-label {
    font-size: 0.8125rem;
    line-height: 1.4;
}
.hero-meta-link .hero-meta-label strong {
    color: var(--ink);
    font-weight: 700;
}

/* --- Hero Visual (dashboard card) --- */
.hero-visual {
    position: relative;
    height: 480px;
}
.hero-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: absolute;
}
.hero-card-main {
    width: 100%;
    max-width: 480px;
    right: 0;
    top: 30px;
    overflow: hidden;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-tinted);
}
.hero-card-dots {
    display: flex;
    gap: 6px;
}
.hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-strong);
}
.hero-card-dots span:first-child { background: var(--red); }
.hero-card-dots span:nth-child(2) { background: #ffd166; }
.hero-card-dots span:nth-child(3) { background: #06d6a0; }
.hero-card-title {
    font-size: 0.8125rem;
    color: var(--muted);
    font-weight: 500;
}
.hero-card-body { padding: 24px; }

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.hero-stat {
    padding: 18px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}
.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-trend {
    font-size: 0.75rem;
    font-weight: 600;
}
.hero-stat-trend.up { color: var(--red); }

.hero-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 110px;
    padding: 0 4px;
    margin-bottom: 20px;
}
.hero-chart .bar {
    flex: 1;
    height: var(--h);
    background: var(--blue-soft);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: growBar 1.2s var(--ease) backwards;
}
.hero-chart .bar.tall { background: var(--red); }
.hero-chart .bar:nth-child(odd):not(.tall) {
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
}
.hero-chart .bar:nth-child(1) { animation-delay: .1s; }
.hero-chart .bar:nth-child(2) { animation-delay: .15s; }
.hero-chart .bar:nth-child(3) { animation-delay: .2s; }
.hero-chart .bar:nth-child(4) { animation-delay: .25s; }
.hero-chart .bar:nth-child(5) { animation-delay: .3s; }
.hero-chart .bar:nth-child(6) { animation-delay: .35s; }
.hero-chart .bar:nth-child(7) { animation-delay: .4s; }
.hero-chart .bar:nth-child(8) { animation-delay: .45s; }

@keyframes growBar {
    from { height: 0; }
}

.hero-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.dot-live {
    width: 8px;
    height: 8px;
    background: #06d6a0;
    border-radius: 50%;
    animation: pulseLive 1.6s infinite;
    box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.6);
}

/* Floating mini cards */
.hero-card-float-1 {
    left: -10px;
    top: 60px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}
.hero-card-float-2 {
    left: 30px;
    bottom: 30px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 5s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.float-icon.blue { background: var(--blue); }
.float-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.float-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}

/* --- Stats Strip --- */
.stats-strip {
    padding: 56px 0;
    background: var(--ink);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--red-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* --- Bento Grid (Services) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 20px;
}
.bento-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.bento-card:hover::before { transform: scaleX(1); }
.bento-large { grid-row: span 2; }
.bento-large .bento-icon-wrap { width: 64px; height: 64px; font-size: 1.5rem; }
.bento-large h3 { font-size: 1.75rem; margin-bottom: 14px; }
.bento-wide { grid-column: span 2; }

.bento-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--red-soft);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: all .3s var(--ease);
}
.bento-icon-wrap.blue { background: var(--blue-soft); color: var(--blue); }
.bento-card:hover .bento-icon-wrap { transform: scale(1.05) rotate(-3deg); }

.bento-card h3 {
    font-size: 1.375rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.bento-card p {
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
}
.bento-list {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bento-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.bento-list li i {
    width: 18px;
    height: 18px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
}
.bento-cta {
    margin-top: 18px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}
.bento-cta i { transition: transform .2s var(--ease); font-size: 0.75em; }
.bento-cta:hover { color: var(--red); }
.bento-cta:hover i { transform: translateX(4px); }

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px);
    z-index: 0;
}
.process-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    z-index: 1;
    transition: all .3s var(--ease);
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}
.process-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.process-step p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.6;
}

/* --- Products Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bg-alt);
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.03); }
.product-body { padding: 28px; }
.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.1em;
    padding: 5px 12px;
    background: var(--blue-soft);
    border-radius: 100px;
    margin-bottom: 14px;
}
.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.product-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9375rem;
}
.product-link i { font-size: 0.8em; transition: transform .2s var(--ease); }
.product-link:hover i { transform: translateX(4px); }

/* --- Featured Product Card (spans full grid width) --- */
.product-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: stretch;
}
.product-card-featured .product-media {
    aspect-ratio: auto;
    background:
        radial-gradient(circle at 15% 15%, rgba(237, 28, 36, 0.10), transparent 55%),
        radial-gradient(circle at 85% 85%, rgba(42, 41, 134, 0.12), transparent 55%),
        linear-gradient(135deg, #f5f6fa 0%, #eef0fb 100%);
    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-phone-mock {
    position: relative;
    width: 220px;
    aspect-ratio: 9 / 19.5;
    border-radius: 32px;
    background: #0d0d2b;
    padding: 8px;
    box-shadow:
        0 30px 60px -20px rgba(13, 13, 43, 0.45),
        0 12px 24px -10px rgba(13, 13, 43, 0.22),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.product-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 6px;
    background: #000;
    border-radius: 100px;
    z-index: 2;
    opacity: 0.85;
}
.product-phone-mock img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    transition: transform .5s var(--ease);
}
.product-card-featured:hover .product-phone-mock img { transform: none; }
.product-card-featured .product-body {
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-featured-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.product-featured-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}
.product-featured-head .product-tag {
    margin-bottom: 0;
}
.product-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 22px;
    display: grid;
    gap: 10px;
}
.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.product-features li i {
    color: var(--red);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

/* --- Projects Grid --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s var(--ease);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.project-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
}
.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .6s var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.05); }
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13,13,43,0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    transition: opacity .3s var(--ease);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-visit {
    background: #fff;
    color: var(--ink);
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform .3s var(--ease);
}
.project-card:hover .project-visit { transform: translateY(0); }
.project-info { padding: 22px 24px; }
.project-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    padding: 5px 12px;
    background: var(--red-soft);
    border-radius: 100px;
    margin-bottom: 10px;
}
.project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.project-card p {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.55;
}

/* --- Brands Section (homepage) --- */
.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.brands-grid-3,
.brands-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.brands-grid-3 .brand-body,
.brands-grid-4 .brand-body { padding: 28px; }
.brands-grid-3 .brand-title-row h3,
.brands-grid-4 .brand-title-row h3 { font-size: 1.5rem; }
.brands-grid-3 .brand-pitch,
.brands-grid-4 .brand-pitch { font-size: 0.9375rem; }
.brands-grid-3 .brand-features li,
.brands-grid-4 .brand-features li { font-size: 0.875rem; }
.brands-grid-3 .brand-features li i,
.brands-grid-4 .brand-features li i { width: 26px; height: 26px; font-size: 0.8rem; }
.brand-feature {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
}
.brand-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.brand-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
}
.brand-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .6s var(--ease);
}
.brand-feature:hover .brand-media img { transform: scale(1.04); }
.brand-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.brand-badge i { color: var(--red); font-size: 0.85em; }
.brand-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.brand-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
    flex-wrap: wrap;
}
.brand-title-row h3 {
    font-size: 1.75rem;
    line-height: 1;
}
.brand-tld {
    color: var(--red);
}
.brand-tld-name {
    color: var(--red);
    font-weight: 700;
}
.brand-pill {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}
.brand-pill.red { background: var(--red-soft); color: var(--red); }
.brand-pill.blue { background: var(--blue-soft); color: var(--blue); }
.brand-pitch {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.brand-pitch strong { color: var(--ink); }
.brand-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text);
}
.brand-features li i {
    width: 28px;
    height: 28px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.brand-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

/* --- Branding Section --- */
.branding-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.branding-text .section-title {
    text-align: left;
    margin-bottom: 18px;
}
.branding-text > p {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.branding-case {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
}
.branding-case-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
    flex-wrap: wrap;
}
.branding-case-head h4 {
    font-size: 1.125rem;
}
.branding-case-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--blue);
    background: var(--blue-soft);
    padding: 4px 12px;
    border-radius: 100px;
}
.branding-case p {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.branding-visual {
    position: relative;
    padding: 32px;
}
.branding-mock {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transform: rotate(-2deg);
    transition: transform .4s var(--ease);
}
.branding-mock:hover { transform: rotate(0deg) scale(1.02); }
.branding-mock-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}
.branding-mock-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.branding-mock-logo i {
    font-size: 2.5rem;
    color: var(--red);
}
.bm-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.05em;
    line-height: 1;
}
.bm-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.05em;
}
.branding-palette {
    display: flex;
    gap: 10px;
}
.branding-palette span {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

/* --- Why Us --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: left;
    transition: all .3s var(--ease);
}
.why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.why-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.why-item:nth-child(even) .why-icon {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
}
.why-item h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.why-item p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.6;
}

/* --- About --- */
.about-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-lead {
    font-size: 1.125rem;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.6;
}
.about-text > p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
}
.about-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-fact {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    align-items: flex-start;
}
.about-fact > i {
    width: 38px;
    height: 38px;
    background: var(--blue);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-fact strong {
    display: block;
    color: var(--ink);
    font-size: 0.9375rem;
    margin-bottom: 2px;
}
.about-fact span {
    font-size: 0.875rem;
    color: var(--muted);
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-grid-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease);
}
.about-grid-card:hover { transform: translateY(-6px); }
.about-grid-card.red {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: var(--shadow-red);
}
.about-grid-card.blue {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    box-shadow: var(--shadow-blue);
}
.about-grid-card i {
    font-size: 1.75rem;
    margin-bottom: 16px;
    opacity: 0.9;
}
.about-grid-card h5 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 6px;
}
.about-grid-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    line-height: 1.5;
}
.about-grid-card:nth-child(2) { transform: translateY(28px); }
.about-grid-card:nth-child(2):hover { transform: translateY(22px); }
.about-grid-card:nth-child(3) { transform: translateY(-12px); }
.about-grid-card:nth-child(3):hover { transform: translateY(-18px); }

/* --- Contact --- */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-info {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.15;
    filter: blur(40px);
}
.contact-info h3 {
    color: #fff;
    font-size: 1.625rem;
    margin-bottom: 14px;
    position: relative;
}
.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    position: relative;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
    position: relative;
}
.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.contact-list strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-list a,
.contact-list span {
    color: #fff;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.contact-list a { display: block; }   /* stack multiple anchors (e.g., two phone numbers) */
.contact-list a:hover { color: var(--red-light); }

.contact-socials {
    display: flex;
    gap: 10px;
    position: relative;
}
.contact-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s var(--ease);
}
.contact-socials a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.contact-form {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hp-field {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--bg-alt);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--ink);
    transition: all .2s var(--ease);
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--hint);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(42, 41, 134, 0.1);
}
.form-error {
    font-size: 0.8125rem;
    color: var(--red);
    display: none;
}
.form-group.error input,
.form-group.error textarea {
    border-color: var(--red);
    background: var(--red-soft);
}
.form-group.error .form-error { display: block; }
.btn-submit {
    margin-top: 6px;
    align-self: flex-start;
}
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}
.form-status {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.form-status.success {
    display: block;
    background: #e7f9f2;
    color: #04825d;
    border: 1px solid #b9ecd9;
}
.form-status.error {
    display: block;
    background: var(--red-soft);
    color: var(--red-dark);
    border: 1px solid #f5c1c4;
}

/* ==========================================================================
   DEDICATED BRAND PAGES (leocreator.html, kamilhosting.html)
   ========================================================================== */

/* Sub-hero (smaller than homepage hero) */
.sub-hero {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}
.sub-hero .hero-blob-1 { top: -120px; right: -80px; width: 400px; height: 400px; }
.sub-hero .hero-blob-2 { bottom: -120px; left: -80px; width: 400px; height: 400px; }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 28px;
    font-weight: 500;
}
.breadcrumb a {
    color: var(--blue);
    transition: color .2s var(--ease);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 0.7em; opacity: 0.5; }

.sub-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.sub-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 22px;
}
.sub-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.sub-hero-tag.red { background: var(--red-soft); color: var(--red); }
.sub-hero-tag.blue { background: var(--blue-soft); color: var(--blue); }
.sub-hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 640px;
}
.sub-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Page hero image */
.page-shot {
    margin-top: 0;
    padding: 0 0 80px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
}
.page-shot-frame {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}
.page-shot-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.page-shot-bar {
    background: var(--bg-tinted);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}
.page-shot-bar .dots {
    display: flex;
    gap: 6px;
}
.page-shot-bar .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-strong);
}
.page-shot-bar .dots span:first-child { background: var(--red); }
.page-shot-bar .dots span:nth-child(2) { background: #ffd166; }
.page-shot-bar .dots span:nth-child(3) { background: #06d6a0; }
.page-shot-url {
    font-size: 0.85rem;
    color: var(--muted);
    font-family: ui-monospace, 'SF Mono', monospace;
}

/* Category cards (tool categories) */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.cat-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow);
}
.cat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: #fff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.cat-card:nth-child(3n+2) .cat-icon {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
}
.cat-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.cat-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 12px;
}
.cat-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.08em;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.pricing-grid.two-up { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.pricing-card.featured {
    background: linear-gradient(180deg, var(--ink) 0%, #0a0a22 100%);
    color: #fff;
    border-color: var(--ink);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-amount .price { color: #fff; }
.pricing-card.featured .pricing-feat li { color: rgba(255,255,255,0.85); }
.pricing-card:hover:not(.featured) {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: var(--shadow);
}
.pricing-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}
.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--ink);
}
.pricing-card > .pricing-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 22px;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}
.pricing-amount .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.pricing-amount .price-period {
    font-size: 0.9rem;
    color: var(--muted);
}
.pricing-card.featured .price-period { color: rgba(255,255,255,0.6); }
.pricing-feat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}
.pricing-feat li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}
.pricing-feat li i {
    color: var(--red);
    margin-top: 4px;
    font-size: 0.8em;
}
.pricing-card.featured .pricing-feat li i { color: var(--red-light); }
.pricing-cta {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 100px;
    background: var(--bg-alt);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all .2s var(--ease);
    border: 1.5px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pricing-cta:hover {
    background: var(--ink);
    color: #fff;
}
.pricing-card.featured .pricing-cta {
    background: var(--red);
    color: #fff;
}
.pricing-card.featured .pricing-cta:hover {
    background: var(--red-dark);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.18;
    filter: blur(60px);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--red-light);
    opacity: 0.12;
    filter: blur(60px);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.cta-banner p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto 32px;
}
.cta-banner-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-banner .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.cta-banner .btn-ghost:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* Legal / policy pages */
.legal-content {
    padding: 64px 0 96px;
    background: #ffffff;
}
.legal-doc {
    max-width: 780px;
    margin: 0 auto;
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.75;
}
.legal-doc > p,
.legal-doc > ul,
.legal-doc > ol,
.legal-doc > blockquote {
    margin-bottom: 1.25em;
}
.legal-doc h2 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-top: 2.4em;
    margin-bottom: 0.6em;
    scroll-margin-top: 100px;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 {
    font-size: 1.125rem;
    color: var(--ink);
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}
.legal-doc ul, .legal-doc ol {
    padding-left: 1.5em;
}
.legal-doc ul li {
    list-style: disc;
    margin-bottom: 0.4em;
}
.legal-doc ol li {
    list-style: decimal;
    margin-bottom: 0.4em;
}
.legal-doc a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.legal-doc a:hover { color: var(--red-dark); }
.legal-doc strong { color: var(--ink); font-weight: 600; }
.legal-doc blockquote {
    padding: 16px 20px;
    background: var(--bg-alt);
    border-left: 3px solid var(--red);
    border-radius: 8px;
    color: var(--ink);
    font-size: 0.9375rem;
}
.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-alt);
    color: var(--muted);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.legal-meta i { color: var(--blue); font-size: 0.85em; }

.legal-toc {
    background: var(--bg-alt);
    padding: 24px 28px;
    border-radius: var(--radius);
    margin-bottom: 56px;
    border-left: 3px solid var(--blue);
}
.legal-toc h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 700;
}
.legal-toc ol {
    list-style: none;
    padding-left: 0;
    counter-reset: toc-counter;
    columns: 2;
    column-gap: 32px;
}
.legal-toc ol li {
    list-style: none;
    counter-increment: toc-counter;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    break-inside: avoid;
}
.legal-toc ol li a {
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.legal-toc ol li a::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    font-variant-numeric: tabular-nums;
}
.legal-toc ol li a:hover { color: var(--red); }

/* Contact page map */
.contact-map-section {
    padding: 40px 0;
    background: var(--bg-alt);
}
.contact-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Contact page hero (lighter than sub-hero) */
.contact-hero {
    padding: 64px 0 32px;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.contact-hero .hero-blob-1 { top: -120px; right: -100px; width: 360px; height: 360px; }
.contact-hero .hero-blob-2 { bottom: -120px; left: -100px; width: 360px; height: 360px; }
.contact-hero > .container { position: relative; z-index: 1; }
.contact-hero .breadcrumb { margin-bottom: 24px; }
.contact-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.1;
}
.contact-hero p {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}
.contact-hero .breadcrumb { justify-content: center; }

/* Stat tile row (used on dedicated pages) */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
}
.tile-num {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}
.tile-label {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* --- Footer --- */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), var(--blue), transparent);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 18px; display: inline-flex; }
.footer-logo {
    background: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.footer-logo .logo-img { height: 38px; display: block; }
.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 360px;
    color: rgba(255,255,255,0.78);
}
.footer-col h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    color: rgba(255,255,255,0.78);
    font-size: 0.9375rem;
    transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--red-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}
.footer-meta { font-style: italic; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 95;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(13,13,43,0.18);
    padding: 18px 22px;
    max-width: 980px;
    margin: 0 auto;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--red-soft);
    color: var(--red);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.cookie-banner-text {
    flex: 1;
    min-width: 240px;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}
.cookie-banner-text strong {
    display: block;
    color: var(--ink);
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 0.95rem;
}
.cookie-banner-text a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-actions .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
        border-radius: var(--radius-sm);
    }
    .cookie-banner-icon { display: none; }
    .cookie-banner-inner { gap: 14px; }
    .cookie-banner-actions {
        width: 100%;
        flex-direction: row-reverse;
    }
    .cookie-banner-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .3s var(--ease);
    z-index: 90;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--red-dark);
}

/* --- Scroll Reveal Animations --- */
.fade-in,
.fade-in-up,
.reveal {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in-up,
.reveal { transform: translateY(28px); }
.fade-in.visible,
.fade-in-up.visible,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ==========================================================================
   RESPONSIVE — Mobile-first overrides
   ========================================================================== */

@media (max-width: 1024px) {
    .section { padding: 96px 0; }
    .hero { padding: 60px 0 96px; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { height: auto; min-height: 440px; }
    .hero-card-main { position: relative; top: 0; right: auto; margin: 0 auto; max-width: 100%; }
    .hero-card-float-1 { left: 0; top: -10px; }
    .hero-card-float-2 { right: 0; bottom: -10px; left: auto; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large, .bento-wide { grid-row: auto; grid-column: auto; }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid,
    .brands-grid-3,
    .brands-grid-4 { grid-template-columns: 1fr; gap: 24px; }

    .branding-wrap, .about-wrap { grid-template-columns: 1fr; gap: 56px; }
    .branding-visual { padding: 0; }

    .contact-wrap { grid-template-columns: 1fr; }

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

    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-col:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 768px) {
    body { font-size: 15.5px; }

    .top-bar { font-size: 11px; padding: 8px 0; }
    .top-bar-inner { justify-content: center; text-align: center; flex-wrap: nowrap; }
    .top-bar-link { display: none; }
    .top-bar-text {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 0 4px;
    }
    .top-bar-text .pulse-dot {
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }

    .container { padding: 0 18px; }
    .section { padding: 72px 0; }

    /* Mobile nav */
    .menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(85%, 340px);
        background: #fff;
        padding: 96px 28px 32px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        z-index: 99;
    }
    .nav.active { transform: translateX(0); }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-links li a {
        display: block;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-links li a.nav-cta {
        margin: 12px 0 0;
        justify-content: center;
        padding: 16px;
    }

    /* Nav backdrop */
    body.nav-open {
        overflow: hidden;
    }
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(13,13,43,0.5);
        z-index: 98;
        animation: fadeIn .3s var(--ease);
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    .logo-img { height: 36px; }

    /* Hero */
    .hero { padding: 40px 0 64px; }
    .hero-title { font-size: clamp(1.625rem, 6.4vw, 2.25rem); line-height: 1.1; }
    .hero-sub { font-size: 1rem; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; padding: 14px 24px; }
    .hero-meta { gap: 20px; flex-wrap: wrap; }
    .hero-meta-divider { display: none; }
    .hero-meta-num { font-size: 1.625rem; }
    .hero-visual { min-height: 360px; }
    .hero-card-main { max-width: 100%; }
    .hero-card-body { padding: 18px; }
    .hero-stat-row { gap: 12px; }
    .hero-stat { padding: 14px; }
    .hero-stat-value { font-size: 1.375rem; }
    .hero-card-float-1, .hero-card-float-2 {
        padding: 10px 14px;
        font-size: 0.875rem;
    }
    .hero-card-float-1 { top: -5px; left: -5px; }
    .hero-card-float-2 { right: -5px; bottom: -5px; left: auto; }
    .float-icon { width: 30px; height: 30px; font-size: 0.75rem; }

    /* Stats */
    .stats-strip { padding: 40px 0; }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.8125rem; }

    /* Section heads */
    .section-head { margin-bottom: 44px; padding: 0 4px; }
    .section-title { font-size: clamp(1.375rem, 5.2vw, 1.875rem); line-height: 1.2; word-spacing: -0.02em; }
    .section-sub { font-size: 0.9375rem; }
    .branding-text .section-title, .about-text .section-title { font-size: clamp(1.5rem, 5.6vw, 2rem); }

    /* Bento */
    .bento-grid { grid-template-columns: 1fr; gap: 16px; grid-auto-rows: auto; }
    .bento-card { padding: 24px; }
    .bento-card h3 { font-size: 1.25rem; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; gap: 16px; }
    .process-step { padding: 24px; display: flex; gap: 18px; align-items: flex-start; }
    .process-step .process-icon { margin-bottom: 0; flex-shrink: 0; }
    .process-step h4 { font-size: 1.125rem; margin-bottom: 6px; }
    .process-num { margin-bottom: 6px; }

    /* Products */
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-body { padding: 22px; }
    .product-card h3 { font-size: 1.25rem; }
    .product-card-featured { grid-template-columns: 1fr; }
    .product-card-featured .product-media { padding: 36px 20px; }
    .product-phone-mock { width: 200px; }
    .product-card-featured .product-body { padding: 24px 22px 26px; }
    .product-featured-logo { width: 44px; height: 44px; }

    /* Projects */
    .projects-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Brands */
    .brand-body { padding: 24px; }
    .brand-title-row h3 { font-size: 1.5rem; }
    .brand-actions .btn { width: auto; flex: 1; min-width: 0; }

    /* Dedicated brand pages */
    .sub-hero { padding: 40px 0 48px; }
    .sub-hero-title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    .sub-hero-sub { font-size: 1rem; }
    .sub-hero-actions { flex-direction: column; align-items: stretch; }
    .page-shot { padding: 0 0 56px; }
    .page-shot-frame { border-radius: var(--radius); }
    .cat-grid { grid-template-columns: 1fr; gap: 14px; }
    .pricing-grid, .pricing-grid.two-up { grid-template-columns: 1fr; gap: 18px; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card { padding: 28px 24px; }
    .cta-banner { padding: 44px 24px; }
    .cta-banner-actions { flex-direction: column; align-items: stretch; }
    .cta-banner-actions .btn { width: 100%; }
    .tile-grid { grid-template-columns: repeat(2, 1fr); }

    /* Legal pages */
    .legal-content { padding: 40px 0 64px; }
    .legal-doc { font-size: 1rem; line-height: 1.7; }
    .legal-doc h2 { font-size: 1.25rem; margin-top: 2em; }
    .legal-doc h3 { font-size: 1.0625rem; }
    .legal-toc { padding: 18px 20px; margin-bottom: 40px; }
    .legal-toc ol { columns: 1; }

    /* Contact page */
    .contact-hero { padding: 40px 0 24px; }
    .contact-hero h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    .contact-hero p { font-size: 1rem; }
    .contact-map-section { padding: 24px 0; }
    .contact-map-wrap { aspect-ratio: 4 / 3; border-radius: var(--radius); max-height: none; }

    /* Mobile nav dropdown */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        padding: 4px 0 4px 12px;
        background: var(--bg-alt);
        min-width: 0;
        margin: 4px 0 8px;
        border-radius: var(--radius-sm);
        border-left: 2px solid var(--border-strong);
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }
    .nav-dropdown-menu li a { padding: 10px 14px !important; }
    .nav-dropdown-trigger i { display: none; }

    /* Branding */
    .branding-mock { transform: rotate(0deg); padding: 28px; }

    /* Why */
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-item { padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
    .why-item .why-icon { margin-bottom: 0; flex-shrink: 0; }

    /* About */
    .about-visual { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-grid-card { padding: 20px; }
    .about-grid-card:nth-child(2), .about-grid-card:nth-child(3) { transform: none; }

    /* Contact */
    .contact-info, .contact-form { padding: 32px 24px; }
    .contact-info h3 { font-size: 1.375rem; }
    .form-row { grid-template-columns: 1fr; gap: 18px; }
    .btn-submit { width: 100%; }

    /* Footer */
    .footer { padding: 56px 0 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }

    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .hero-meta-num { font-size: 1.5rem; }
    .about-visual { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .branding-mock-logo { flex-direction: column; text-align: center; padding: 24px 18px; }
}

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

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-radius: 4px;
}
