/* Xevon Technologies — site styles
   Brand: orange #ff5c01 · navy #0e1b51
---------------------------------------------------------------- */

:root {
    --orange: #ff5c01;
    --orange-600: #e64f00;
    --orange-50: #fff4ec;
    --navy: #0e1b51;
    --navy-800: #0b1642;
    --navy-700: #15205b;
    --text: #1d1d1f;
    --muted: #6b7280;
    --line: #e6e8ef;
    --bg: #ffffff;
    --bg-muted: #f7f8fb;
    --radius-card: 18px;
    --radius-btn: 10px;
    --shadow-sm: 0 6px 18px rgba(14,27,81,.06);
    --shadow-md: 0 10px 30px rgba(14,27,81,.08);
    --shadow-lg: 0 24px 60px rgba(14,27,81,.14);
    --ease: cubic-bezier(.2,.7,.2,1);
    --maxw: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
html { overflow-x: clip; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--orange-600); }

h1, h2, h3, h4 { color: var(--navy); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(28px, 4.6vw, 58px); }
h2 { font-size: clamp(22px, 4vw, 44px); }
h3 { font-size: clamp(17px, 2vw, 24px); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(15px, 1.6vw, 22px); color: #374151; }

@media (max-width: 720px) {
    body { font-size: 14px; line-height: 1.65; }
    .section { padding: clamp(40px, 8vw, 60px) 0; }
    .section__head { margin-bottom: 1.4rem; }
    .eyebrow { font-size: 12px; margin-bottom: .7rem; }
    .lead { font-size: 15px; }
    .btn { padding: .65rem 1rem; font-size: 14px; }
    .btn--lg { padding: .8rem 1.2rem; font-size: 15px; }
    .stat-card { padding: 1rem; gap: .6rem; flex-direction: column; align-items: center; text-align: center; }
    .stat-card strong { font-size: 22px; }
    .stat-card em { font-size: 14px; }
    .stat-card__icon { width: 36px; height: 36px; border-radius: 10px; }
    .stat-card__icon svg { width: 16px; height: 16px; }
    .stat-card__body { gap: 0; align-items: center; }
    .stat-card__number { justify-content: center; }
    .stat-card span { font-size: 12px; white-space: nowrap; }
    .service-card { padding: .9rem 1rem; gap: .8rem; align-items: center; }
    .service-card__icon { width: 42px; height: 42px; }
    .service-card__icon svg { width: 18px; height: 18px; }
    .service-card__title { font-size: 14.5px; margin-bottom: .15rem; }
    .service-card__desc {
        font-size: 12px; line-height: 1.45;
        display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
        -webkit-box-orient: vertical; overflow: hidden;
    }
    .service-card__arrow { width: 28px; height: 28px; }
    .service-card__arrow svg { width: 14px; height: 14px; }
    .services-grid { gap: .7rem; }
    .why-feature__icon { width: 44px; height: 44px; }
    .why-feature h3 { font-size: 16px; }
    .why-feature p { font-size: 13.5px; }
    .page-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(30px, 5vw, 60px); }
}

@media (max-width: 720px) {
    .site-header__inner { min-height: 60px; gap: .8rem; }
    .brand__logo { height: 34px; }
}
.eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 1rem;
}
.eyebrow--light { color: #ff8c4c; }
.eyebrow a { color: inherit; }

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

/* Buttons ----------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .65rem 1.1rem; border-radius: var(--radius-btn);
    font-weight: 600; font-size: 14px;
    cursor: pointer; border: 1px solid transparent;
    transition: all .18s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    justify-content: center;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,92,1,.28); }
.btn--primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255,92,1,.36); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--bg-muted); color: var(--navy); }
.btn--danger { background: #e11d48; color: #fff; }
.btn--sm { padding: .4rem .75rem; font-size: 12.5px; }
.btn--lg { padding: .85rem 1.4rem; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* Header ------------------------------------------------------ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(1.2) blur(14px);
    border-bottom: 1px solid transparent;
    transition: all .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 40px; width: auto; transition: transform .25s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04); }
@media (max-width: 720px) { .brand__logo { height: 32px; } }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.site-nav a { color: var(--navy); font-weight: 500; font-size: 15px; position: relative; }
.site-nav a:hover, .site-nav a.is-active { color: var(--orange); }
.site-nav a.is-active::after {
    content:''; position:absolute; left:0; right:0; bottom:-22px; height:3px;
    background: var(--orange); border-radius: 3px 3px 0 0;
}
.site-header__cta { margin-left: .5rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* Hero -------------------------------------------------------- */
.hero {
    position: relative; overflow: hidden;
    padding: clamp(56px, 7vw, 100px) 0 clamp(64px, 8vw, 110px);
    background: linear-gradient(180deg, #fff 0%, #f0f3fe 60%, #eaeffb 100%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); animation: orb-float 18s ease-in-out infinite; }
.hero__orb--a { width: 520px; height: 520px; background: radial-gradient(circle, #ff5c01 0%, transparent 70%); top: -200px; right: -140px; opacity: .5; }
.hero__orb--b { width: 460px; height: 460px; background: radial-gradient(circle, #0e1b51 0%, transparent 70%); bottom: -180px; left: -140px; opacity: .32; animation-duration: 22s; animation-direction: reverse; }
.hero__orb--c { width: 360px; height: 360px; background: radial-gradient(circle, #ff8549 0%, transparent 70%); top: 40%; left: 40%; opacity: .28; animation-duration: 26s; }
@keyframes orb-float {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-30px) scale(1.05); }
    66% { transform: translate(-30px,25px) scale(.97); }
}
.hero__grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(14,27,81,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(14,27,81,.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
}
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 110px; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__content { position: relative; z-index: 2; }
.hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,92,1,.1); color: var(--orange);
    padding: .5rem 1rem; border-radius: 999px;
    font-size: 13px; font-weight: 700;
    border: 1px solid rgba(255,92,1,.25);
    margin-bottom: 1.5rem;
    animation: badge-in .6s var(--ease) both;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,92,1,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,92,1,.5); } 70% { box-shadow: 0 0 0 10px rgba(255,92,1,0); } 100% { box-shadow: 0 0 0 0 rgba(255,92,1,0); } }
@keyframes badge-in { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform:none; } }

.hero__title { margin-top: .4rem; background: linear-gradient(135deg, var(--navy) 0%, #2a3a8c 55%, #ff5c01 120%); -webkit-background-clip: text; background-clip: text; color: transparent; animation: title-in .7s var(--ease) both .1s; }
@keyframes title-in { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform:none; } }
.hero__sub { font-size: clamp(16px, 1.2vw, 18px); color: #475166; max-width: 560px; margin-top: 1rem; animation: title-in .7s var(--ease) both .2s; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; animation: title-in .7s var(--ease) both .3s; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; list-style: none; padding: 0; margin: 1.6rem 0 0; color: #475166; font-size: 13.5px; animation: title-in .7s var(--ease) both .4s; }
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.hero__trust li svg { color: var(--orange); background: var(--orange-50); padding: 3px; border-radius: 50%; width: 22px; height: 22px; }

/* Hero orbit visual ------------------------------------------- */
.hero__visual { position: relative; aspect-ratio: 1/1; max-width: 540px; margin-left: auto; width: 100%; }
.hero__blob {
    position: absolute; inset: 12%; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,92,1,.1), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(14,27,81,.1), transparent 60%);
    filter: blur(8px); z-index: 0;
}
.orbit { position: absolute; inset: 0; }
.orbit__rings { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit__core {
    position: absolute; inset: 30%;
    display: grid; place-items: center;
    background: radial-gradient(circle, #fff 0%, #fff 70%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    box-shadow: 0 30px 80px rgba(14,27,81,.18), inset 0 0 0 1px rgba(14,27,81,.06);
    animation: core-pop .8s var(--ease) both .4s;
}
.orbit__core img { width: 80%; height: auto; animation: gentle-float 6s ease-in-out infinite; }
@keyframes core-pop { from { opacity: 0; transform: scale(.7); } to { opacity:1; transform:none; } }
@keyframes gentle-float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px); } }

.orbit__node { position: absolute; animation: node-in .7s var(--ease) both; }
.orbit-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; border: 1px solid var(--line);
    padding: .65rem 1rem; border-radius: 999px;
    box-shadow: 0 12px 30px rgba(14,27,81,.12);
    font-weight: 700; color: var(--navy); font-size: 13px;
    transition: transform .25s var(--ease);
}
.orbit-chip svg { color: var(--orange); }
.orbit-chip:hover { transform: translateY(-3px) scale(1.05); }
.orbit__node--1 { top: 0;    left: 42%; animation-delay: .5s; }
.orbit__node--2 { top: 22%;  left: -4%; animation-delay: .6s; }
.orbit__node--3 { bottom: 8%; left: 6%; animation-delay: .7s; }
.orbit__node--4 { bottom: 4%; right: 4%; animation-delay: .8s; }
.orbit__node--5 { top: 22%;  right: -4%; animation-delay: .9s; }
.orbit__node--6 { top: 54%;  right: -6%; animation-delay: 1s; }
.orbit__node::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    animation: bob 6s ease-in-out infinite;
}
.orbit__node { animation: node-in .7s var(--ease) both, bob 6s ease-in-out infinite; }
.orbit__node--2 { animation-duration: .7s, 7s; }
.orbit__node--3 { animation-duration: .7s, 5.5s; }
.orbit__node--4 { animation-duration: .7s, 6.5s; }
.orbit__node--5 { animation-duration: .7s, 6s; }
.orbit__node--6 { animation-duration: .7s, 7.5s; }
@keyframes node-in { from { opacity: 0; transform: scale(.6); } to { opacity:1; transform: none; } }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

/* Trust strip / marquee -------------------------------------- */
.trust-strip { padding: 2.5rem 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.trust-strip__label { text-align: center; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 1.2rem; font-weight: 700; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 3rem; animation: marquee 40s linear infinite; width: max-content; padding: .3rem 0; }
.marquee__track span { color: var(--navy); font-weight: 700; font-size: 20px; opacity: .65; letter-spacing: -.01em; flex-shrink: 0; transition: opacity .2s; }
.marquee__track span:hover { opacity: 1; color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections ---------------------------------------------------- */
.section { padding: clamp(48px, 6vw, 80px) 0; }
.section--muted { background: var(--bg-muted); }
.section--dark { background: var(--navy); color: #e5e8f4; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 780px; margin-bottom: 2rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__cta { text-align: center; margin-top: 3rem; }

/* About preview ----------------------------------------------- */
.about-preview__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-preview__stats { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.stat-card {
    background: #fff; padding: 1.3rem 1.4rem; border-radius: 14px;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; align-items: center; gap: 1rem;
    position: relative; overflow: hidden;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,92,1,.3); }
.stat-card__icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), #ff8549);
    color: #fff; display: grid; place-items: center;
    box-shadow: 0 6px 14px rgba(255,92,1,.3);
}
.stat-card__body { display: flex; flex-direction: column; gap: 0; line-height: 1.15; }
.stat-card__number { display: flex; align-items: baseline; gap: 2px; color: var(--navy); }
.stat-card strong { font-size: 30px; font-weight: 800; line-height: 1; }
.stat-card em { font-size: 20px; font-weight: 800; color: var(--orange); font-style: normal; line-height: 1; }
.stat-card span { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* Services grid — compact list-style cards ------------------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; position: relative; z-index: 2; }
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

/* Services section — decorative side widgets ---------------- */
.services-section { position: relative; overflow: hidden; }
.services-deco { position: absolute; top: 0; bottom: 0; width: 18%; max-width: 220px; pointer-events: none; z-index: 1; }
.services-deco--left { left: -220px; }
.services-deco--right { right: -220px; }
@media (max-width: 1700px) {
    .services-deco--left { left: 0; }
    .services-deco--right { right: 0; }
}
.services-deco__blob { position: absolute; border-radius: 50%; filter: blur(70px); }
.services-deco__blob--a { width: 240px; height: 240px; background: rgba(255,92,1,.25); top: 20%; left: -60px; }
.services-deco__blob--b { width: 260px; height: 260px; background: rgba(14,27,81,.18); bottom: 10%; right: -80px; }
.services-deco__dots { position: absolute; top: 8%; left: 10%; animation: gentle-float 7s ease-in-out infinite; }
.services-deco__ring {
    position: absolute; bottom: 10%; left: 30%;
    width: 90px; height: 90px; border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: var(--orange); border-right-color: var(--orange);
    opacity: .35; animation: spin 12s linear infinite;
}
.services-deco__wave { position: absolute; top: 15%; right: 8%; animation: gentle-float 8s ease-in-out infinite; }
.services-deco__x {
    position: absolute; top: 8%; right: 20%;
    animation: spin 20s linear infinite;
}
.services-deco__chip {
    position: absolute; display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; padding: .55rem .9rem; border-radius: 999px;
    box-shadow: 0 12px 30px rgba(14,27,81,.12);
    border: 1px solid var(--line);
    font-size: 13px; color: var(--navy); font-weight: 600;
    animation: gentle-float 5s ease-in-out infinite;
}
.services-deco__chip svg { color: var(--orange); flex-shrink: 0; }
.services-deco__chip strong { font-weight: 800; color: var(--orange); }
.services-deco__chip--1 { top: 38%; left: 8%; animation-duration: 6s; }
.services-deco__chip--2 { top: 32%; right: 6%; animation-duration: 7s; }
.services-deco__chip--3 { bottom: 20%; right: 14%; animation-duration: 8s; }

@media (max-width: 1100px) {
    .services-deco { display: none; }
}
.service-card {
    background: #fff; border-radius: 14px; padding: 1.2rem 1.3rem;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none; color: inherit;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--orange), #ff8549);
    transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(255,92,1,.3); }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: var(--orange-50); color: var(--orange);
    display: grid; place-items: center;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--orange), #ff8549); color: #fff;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 6px 14px rgba(255,92,1,.3);
}
.service-card__body { flex: 1; min-width: 0; }
.service-card__title { margin: 0 0 .2rem; font-size: 16px; }
.service-card__desc { color: #4a5370; margin: 0; font-size: 13.5px; line-height: 1.5; }
.service-card__arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-muted); color: var(--navy);
    display: grid; place-items: center; flex-shrink: 0;
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.service-card:hover .service-card__arrow { background: var(--orange); color: #fff; transform: translateX(4px); }

/* Why — two-column with visuals ----------------------------- */
.why-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

.why-visuals { position: relative; aspect-ratio: 1/1; max-width: 520px; }
.why-visuals__blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; }
.why-visuals__blob--a { width: 180px; height: 180px; background: rgba(255,92,1,.35); top: -30px; left: -30px; }
.why-visuals__blob--b { width: 200px; height: 200px; background: rgba(14,27,81,.25); bottom: -30px; right: -30px; }
.why-visuals__a, .why-visuals__b { position: absolute; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(14,27,81,.18); transition: transform .3s var(--ease); }
.why-visuals__a { top: 0; left: 0; width: 58%; height: 78%; z-index: 1; animation: float-a 7s ease-in-out infinite; }
.why-visuals__b { bottom: 0; right: 0; width: 54%; height: 62%; z-index: 2; animation: float-b 8s ease-in-out infinite; }
.why-visuals__a img, .why-visuals__b img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes float-a { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(-2deg); } }
@keyframes float-b { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }

.why-visuals__badge {
    position: absolute; top: 38%; left: -20px; z-index: 3;
    background: #fff; padding: .8rem 1.2rem; border-radius: 14px;
    box-shadow: 0 14px 34px rgba(14,27,81,.15);
    display: flex; align-items: center; gap: .8rem;
    border: 1px solid var(--line);
    animation: badge-bob 5s ease-in-out infinite;
}
.why-visuals__badge svg { color: var(--orange); background: var(--orange-50); width: 38px; height: 38px; padding: 8px; border-radius: 10px; }
.why-visuals__badge strong { display: block; color: var(--navy); font-size: 15px; }
.why-visuals__badge span { color: var(--muted); font-size: 12px; }
@keyframes badge-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.why-content .eyebrow { margin-bottom: 1rem; }
.why-content h2 { margin-bottom: .6rem; }
.why-content__sub { color: var(--orange); font-weight: 600; font-size: 17px; margin-bottom: 2rem; }

.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.why-feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-feature__icon {
    width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
    background: var(--orange-50); color: var(--orange);
    display: grid; place-items: center;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.why-feature:hover .why-feature__icon { background: linear-gradient(135deg, var(--orange), #ff8549); color: #fff; transform: rotate(-6deg) scale(1.06); box-shadow: 0 8px 18px rgba(255,92,1,.32); }
.why-feature h3 { margin: 0 0 .3rem; font-size: 19px; }
.why-feature p { margin: 0; color: #4a5370; font-size: 14.5px; line-height: 1.65; }

@media (max-width: 1000px) {
    .why-layout { grid-template-columns: 1fr; }
    .why-visuals { margin: 0 auto; max-width: 360px; }
}
@media (max-width: 720px) {
    .why-visuals { display: none; }
}

/* legacy grid (kept just in case) */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.why-card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.why-card::before {
    content: ''; position: absolute; inset: auto -40% -70% auto;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,92,1,.12), transparent 70%);
    opacity: 0; transition: opacity .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,92,1,.3); }
.why-card:hover::before { opacity: 1; }
.why-card__icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--orange-50); color: var(--orange);
    display: grid; place-items: center;
    margin-bottom: 1rem;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.why-card:hover .why-card__icon { background: linear-gradient(135deg, var(--orange), #ff8549); color: #fff; transform: rotate(-6deg) scale(1.06); }
.why-card h3 { margin: 0 0 .4rem; font-size: 17px; }
.why-card p { margin: 0; color: #4a5370; font-size: 14.5px; line-height: 1.6; }

.why-card--accent {
    background: linear-gradient(135deg, var(--navy) 0%, #1e2d75 100%);
    color: #fff; border-color: transparent;
}
.why-card--accent h3 { color: #fff; }
.why-card--accent p { color: rgba(255,255,255,.78); }
.why-card--accent .why-card__icon { background: rgba(255,255,255,.12); color: #fff; }
.why-card--accent:hover .why-card__icon { background: var(--orange); color: #fff; }
.why-card__cta {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: 1rem; color: #ff8549; font-weight: 700; font-size: 14px;
    transition: gap .2s var(--ease);
}
.why-card__cta:hover { gap: .7rem; color: var(--orange); }

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

/* Process ----------------------------------------------------- */
/* Process — vertical zigzag timeline */
.process__steps {
    list-style: none; padding: 0; margin: 0; position: relative;
    max-width: 980px; margin-inline: auto;
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem; row-gap: 2rem;
    align-items: start;
}
.process__steps::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
    width: 6px; margin-left: -3px;
    background: linear-gradient(180deg, rgba(255,92,1,.15), var(--orange) 8%, var(--orange) 92%, rgba(255,92,1,.15));
    border-radius: 6px;
}
.process__steps li {
    background: #fff; border-radius: 16px;
    padding: 1.4rem 1.6rem; border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); position: relative;
}
.process__steps li:nth-child(odd) { grid-column: 1; }
.process__steps li:nth-child(even) { grid-column: 2; margin-top: 5rem; }
.process__steps li:nth-child(odd) ~ li:nth-child(odd) { margin-top: -3rem; }
/* Connector dot on the center line */
.process__steps li::before {
    content: ''; position: absolute; top: 1.75rem;
    width: 14px; height: 14px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff8549);
    box-shadow: 0 0 0 4px #fff, 0 0 0 7px rgba(255,92,1,.22), 0 4px 10px rgba(255,92,1,.4);
    z-index: 2;
}
.process__steps li:nth-child(odd)::before { right: -2.1rem; }
.process__steps li:nth-child(even)::before { left: -2.1rem; }
/* Arrow pointer from card to line */
.process__steps li::after {
    content: ''; position: absolute; top: 2.1rem;
    border: 8px solid transparent;
}
.process__steps li:nth-child(odd)::after { right: -16px; border-left-color: #fff; filter: drop-shadow(1px 0 0 var(--line)); }
.process__steps li:nth-child(even)::after { left: -16px; border-right-color: #fff; filter: drop-shadow(-1px 0 0 var(--line)); }
.process__steps li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,92,1,.3); }
.process__steps li:hover::before { transform: scale(1.25); transition: transform .2s var(--ease); box-shadow: 0 0 0 4px #fff, 0 0 0 10px rgba(255,92,1,.3), 0 6px 14px rgba(255,92,1,.5); }

@media (max-width: 820px) {
    .process__steps { display: block; max-width: 100%; padding-left: 2rem; }
    .process__steps::before { left: 10px; width: 4px; margin-left: 0; }
    .process__steps li {
        width: 100% !important;
        margin: 0 0 1rem 0 !important;
        grid-column: auto !important;
        padding: 1rem 1.2rem;
    }
    .process__steps li:nth-child(even), .process__steps li:nth-child(odd) ~ li:nth-child(odd) { margin-top: 0 !important; }
    .process__steps li::before {
        left: -1.6rem !important; right: auto !important;
        top: 1.3rem;
    }
    .process__steps li::after {
        left: -16px !important; right: auto !important;
        top: 1.7rem;
        border-right-color: #fff !important; border-left-color: transparent !important;
    }
    .process__num { font-size: 28px; top: .8rem; right: 1rem; }
}
.process__icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8549 100%);
    color: #fff; display: grid; place-items: center;
    margin-bottom: 1rem; box-shadow: 0 10px 20px rgba(255,92,1,.25);
    transition: transform .3s var(--ease);
}
.process__steps li:hover .process__icon { transform: rotate(8deg) scale(1.06); }
.process__num {
    position: absolute; top: 1.2rem; right: 1.4rem;
    font-size: 42px; font-weight: 800; color: var(--orange-50);
    line-height: 1; letter-spacing: -.02em;
}
.process__steps li { transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.process__steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process__steps h3 { margin: 0 0 .4rem; }
.process__steps p { color: #404a60; margin: 0; font-size: 15px; }

.site-footer__slogan { color: #ff8c4c !important; font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; margin: 0 0 .8rem !important; }

/* Button icon spacing polish */
.btn svg { flex-shrink: 0; }

/* Responsive hero ------------------------------------------- */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 380px; margin: 1rem auto 0; }
}
@media (max-width: 560px) {
    .hero__visual { max-width: 280px; }
    .orbit-chip { padding: .45rem .75rem; font-size: 12px; }
    .orbit-chip svg { width: 16px; height: 16px; }
    .orbit__node--2 { left: -10px; }
    .orbit__node--5 { right: -10px; }
    .orbit__node--6 { right: -12px; }
    .hero__actions { gap: .6rem; }
    .hero__actions .btn { flex: 1 1 140px; padding: .7rem 1rem; font-size: 14px; }
    .hero__actions .btn svg { display: none; }
}

/* Projects ---------------------------------------------------- */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.8rem; }

@media (max-width: 720px) {
    .projects-grid {
        display: flex; gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: .5rem .2rem 1.5rem;
        margin: 0 -1.2rem;
        padding-inline: 1.2rem;
        scrollbar-width: none;
    }
    .projects-grid::-webkit-scrollbar { display: none; }
    .projects-grid > * {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }
}
.project-card {
    background: #fff; border-radius: var(--radius-card); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--navy), #2a3a8c); }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.project-card:hover .project-card__image img { transform: scale(1.04); }
.project-card__body { padding: 1.6rem 1.8rem 1.8rem; }
.project-card__category { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }
.project-card__title { margin: 0 0 .5rem; font-size: 22px; }
.project-card__title a { color: var(--navy); }
.project-card__title a:hover { color: var(--orange); }
.project-card__summary { color: #404a60; font-size: 15px; margin: 0 0 1rem; }
.project-card__stack { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.project-card__stack li {
    background: var(--bg-muted); border-radius: 999px;
    padding: .25rem .7rem; font-size: 12px; color: var(--navy); font-weight: 500;
}

/* Testimonials — carousel with center highlight ------------- */
.testimonials-carousel { position: relative; padding: .5rem 0 1.5rem; }
.testimonials-track {
    display: flex; gap: 1.2rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 1rem 0 1.5rem; margin: 0;
    scrollbar-width: none; scroll-behavior: smooth;
    scroll-padding-inline: 50%;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-slide {
    flex: 0 0 clamp(280px, 34vw, 400px);
    scroll-snap-align: center;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
    opacity: .45; transform: scale(.88);
}
.testimonials-slide.is-active { opacity: 1; transform: scale(1.02); }
.testimonials-slide.is-active .testimonial-card {
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    border-color: rgba(255,92,1,.25);
    box-shadow: 0 14px 34px rgba(14,27,81,.08);
}
.testimonials-slide.is-active .testimonial-card__quote { color: var(--navy); }
.testimonial-card {
    background: #fff; border-radius: var(--radius-card);
    padding: 2rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 1rem;
    height: 100%;
    transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-md); cursor: pointer; z-index: 3;
    display: grid; place-items: center;
    color: var(--navy);
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.carousel-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-50%) scale(1.08); }
.carousel-btn--prev { left: -8px; }
.carousel-btn--prev svg { transform: rotate(180deg); }
.carousel-btn--next { right: -8px; }

.carousel-dots {
    display: flex; justify-content: center; gap: .5rem;
    margin-top: 1.5rem;
}
.carousel-dots button {
    width: 10px; height: 10px; border-radius: 50%;
    border: 0; padding: 0; cursor: pointer;
    background: rgba(14,27,81,.18);
    transition: background .2s var(--ease), transform .2s var(--ease), width .25s var(--ease);
}
.carousel-dots button.is-active { background: var(--orange); width: 28px; border-radius: 999px; }
.carousel-dots button:hover { background: var(--orange); }

@media (max-width: 720px) {
    .carousel-btn { display: none; }
    .testimonials-slide {
        flex: 0 0 100%;
        transform: none;
        opacity: 1;
    }
    .testimonials-carousel { padding: 0 0 1rem; overflow: hidden; }
    .testimonials-track {
        padding: .5rem 0 1rem;
        gap: 0;
        scroll-padding-inline: 0;
        scroll-snap-type: x mandatory;
    }
    .testimonials-slide { scroll-snap-align: center; }
    .testimonial-card { padding: 1.4rem 1.3rem; }
    .carousel-dots { margin-top: .8rem; }
}
.testimonial-card__rating { color: var(--orange); letter-spacing: 2px; font-size: 16px; }
.testimonial-card__quote {
    margin: 0; font-size: 16px; line-height: 1.7; color: #2a3247;
    position: relative; padding-left: 1rem;
}
.testimonial-card__quote::before {
    content: '"'; position: absolute; left: -.2rem; top: -1.2rem;
    font-size: 60px; color: var(--orange-50); font-weight: 800; line-height: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; border-top: 1px solid var(--line); padding-top: 1rem; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { margin: 0; color: var(--navy); font-weight: 700; font-size: 15px; }
.testimonial-card__meta { margin: 0; color: var(--muted); font-size: 13px; }

/* CTA banner -------------------------------------------------- */
.cta-banner { padding: clamp(60px, 8vw, 100px) 0; position: relative; }
.cta-banner__inner {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8549 100%);
    border-radius: 28px; padding: clamp(2rem, 5vw, 4rem);
    color: #fff; display: flex; justify-content: space-between;
    align-items: center; gap: 2rem; flex-wrap: wrap;
    box-shadow: 0 30px 70px rgba(255,92,1,.28);
    position: relative; overflow: hidden;
}
.cta-banner__inner::before {
    content: ''; position: absolute; top: -40%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.cta-banner__inner h2 { color: #fff; margin: 0 0 .4rem; }
.cta-banner__inner p { margin: 0; color: rgba(255,255,255,.88); max-width: 540px; }
.cta-banner__actions { display: flex; gap: .8rem; flex-wrap: wrap; position: relative; }
.cta-banner .btn--primary { background: #fff; color: var(--orange); box-shadow: none; }
.cta-banner .btn--primary:hover { background: #fff; color: var(--orange-600); }
.cta-banner .btn--ghost { color: #fff; border: 1px solid rgba(255,255,255,.6); }
.cta-banner .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Contact preview --------------------------------------------- */
.contact-preview__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 720px) { .contact-preview { display: none; } }
.contact-preview__card {
    background: var(--navy); color: #fff; padding: 2.2rem;
    border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
}
.contact-preview__label { color: #ffb27a; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin: 0 0 .4rem; }
.contact-preview__email { display: block; font-size: clamp(18px, 2vw, 22px); color: #fff; font-weight: 600; margin-bottom: 1.4rem; word-break: break-all; }
.contact-preview__email:hover { color: var(--orange); }

/* Page hero --------------------------------------------------- */
.page-hero {
    padding: clamp(80px, 8vw, 120px) 0 clamp(50px, 6vw, 80px);
    background: linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -60px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,92,1,.25), transparent 70%);
    filter: blur(60px); z-index: 0;
}
.page-hero::after {
    content: ''; position: absolute; bottom: -60px; left: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,27,81,.2), transparent 70%);
    filter: blur(60px); z-index: 0;
}
.page-hero h1 { max-width: 900px; }
.page-hero .lead { max-width: 780px; margin-top: 1rem; }

/* About page -------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.about__pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.about__pills li {
    background: #fff; border: 1px solid var(--line);
    padding: .6rem 1rem; border-radius: 999px; font-size: 14px;
    color: var(--navy); font-weight: 500;
}
.about__principles .section__head { margin-bottom: 2rem; }
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.principles-grid article {
    background: rgba(255,255,255,.04); padding: 1.6rem;
    border-radius: 14px; border: 1px solid rgba(255,255,255,.1);
}
.principles-grid h3 { color: #fff; font-size: 18px; }
.principles-grid p { color: rgba(255,255,255,.72); font-size: 14px; margin: 0; }

/* Service detail --------------------------------------------- */
.prose { max-width: 800px; font-size: 17px; color: #2a3247; }
.prose h2 { margin-top: 2rem; }
.prose p { margin-bottom: 1.2rem; }

/* Project detail --------------------------------------------- */
.project-detail__grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.project-detail__image { width: 100%; border-radius: var(--radius-card); box-shadow: var(--shadow-md); margin-bottom: 2rem; }
.project-detail__side {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 1.6rem; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 1rem; height: fit-content;
    position: sticky; top: 100px;
}
.project-detail__side h4 { margin: 0 0 .2rem; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.project-detail__side p { margin: 0; color: var(--navy); font-weight: 500; }
.tech-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.tech-list li { background: var(--bg-muted); padding: .3rem .7rem; border-radius: 6px; font-size: 13px; color: var(--navy); }

/* Contact ---------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact__info-card { background: var(--navy); color: #fff; padding: 1.6rem; border-radius: 14px; margin: 1.4rem 0; }
.contact__label { margin: 0 0 .3rem; color: #ffb27a; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.contact__email { color: #fff; font-size: 18px; font-weight: 600; word-break: break-all; }
.contact__email:hover { color: var(--orange); }
.contact__note { color: var(--muted); font-size: 14px; }
.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); padding: 2rem; box-shadow: var(--shadow-sm); }

.field { display: block; margin-bottom: 1.1rem; }
.field label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: 14px; color: var(--navy); }
.field input, .field textarea, .contact__form input, .contact__form textarea {
    width: 100%; padding: .8rem 1rem; border: 1px solid var(--line);
    border-radius: 10px; font: inherit; color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .contact__form input:focus, .contact__form textarea:focus {
    outline: none; border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,92,1,.15);
}
.field__error { color: #c4183c; font-size: 13px; margin: .3rem 0 0; }
.field--hp { position: absolute; left: -9999px; }

.alert { padding: .9rem 1.2rem; border-radius: 10px; margin-bottom: 1.2rem; font-size: 14px; }
.alert--success { background: #e7f8ee; color: #116534; border: 1px solid #b8e5c8; }
.alert--error { background: #fde8ec; color: #9e1b3a; border: 1px solid #f6bfcb; }

/* Generic section decorations ------------------------------- */
.section, .page-hero, .cta-banner, .trust-strip, .hero { position: relative; overflow: hidden; }
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco--blob {
    border-radius: 50%; filter: blur(70px);
}
.deco--blob-o { background: rgba(255,92,1,.22); }
.deco--blob-n { background: rgba(14,27,81,.18); }
.deco--dots svg, .deco--wave svg, .deco--x svg, .deco--ring {
    opacity: .35; animation: gentle-float 7s ease-in-out infinite;
}
.deco--ring {
    width: 80px; height: 80px; border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: var(--orange); border-right-color: var(--orange);
    animation: spin 14s linear infinite;
}
.deco--ring-sm { width: 50px; height: 50px; border-width: 6px; }
.deco--x { animation: spin 22s linear infinite; }

.deco-chip {
    position: absolute; display: inline-flex; align-items: center; gap: .5rem;
    background: #fff; padding: .55rem .9rem; border-radius: 999px;
    box-shadow: 0 12px 30px rgba(14,27,81,.12);
    border: 1px solid var(--line);
    font-size: 13px; color: var(--navy); font-weight: 600;
    animation: gentle-float 6s ease-in-out infinite;
    z-index: 3; pointer-events: none;
}
.deco-chip svg { color: var(--orange); flex-shrink: 0; }
.deco-chip strong { color: var(--orange); font-weight: 800; }

.container { position: relative; z-index: 2; }

@media (max-width: 1100px) { .deco, .deco-chip { display: none; } }

/* Social pill (Follow us) ----------------------------------- */
.social-pill {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8549 100%);
    border-radius: 16px; padding: .9rem 1rem;
    display: flex; flex-direction: column; gap: .55rem;
    box-shadow: 0 12px 30px rgba(255,92,1,.3);
    position: relative; overflow: hidden;
}
.social-pill::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,.12);
}
.social-pill__row {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: .6rem;
    color: #fff !important; font-weight: 600; font-size: 14px;
    transition: transform .2s var(--ease);
}
.social-pill__row:hover { transform: translateX(4px); color: #fff !important; }
.social-pill__icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; color: var(--orange);
    display: grid; place-items: center; flex-shrink: 0;
    transition: transform .2s var(--ease);
}
.social-pill__row:hover .social-pill__icon { transform: scale(1.1) rotate(-6deg); }
.social-pill__handle { letter-spacing: .01em; }

/* Footer ------------------------------------------------------ */
.site-footer { background: var(--navy); color: #b7bcd5; padding: clamp(64px, 8vw, 100px) 0 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer__logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.site-footer__brand p { color: #b7bcd5; max-width: 360px; font-size: 14px; }
.site-footer__email { color: #fff; font-weight: 600; display: inline-block; margin-top: .8rem; }
.site-footer__email:hover { color: var(--orange); }
.site-footer__col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 1.2rem; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer__col a { color: #b7bcd5; font-size: 14px; }
.site-footer__col a:hover { color: var(--orange); }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 13px; color: #9097b6; }
@media (max-width: 720px) {
    .site-footer__bottom { justify-content: center; text-align: center; gap: .3rem; }
    .site-footer__bottom p { width: 100%; }
}
.site-footer__bottom p { margin: 0; }

/* Pagination -------------------------------------------------- */
.pagination-wrap { margin-top: 3rem; display: flex; justify-content: center; }
.pagination-wrap nav { display: flex; gap: .4rem; }
.pagination-wrap a, .pagination-wrap span {
    padding: .5rem .9rem; border-radius: 8px; border: 1px solid var(--line);
    color: var(--navy); font-weight: 600; font-size: 14px;
}
.pagination-wrap .is-active, .pagination-wrap [aria-current="page"] span { background: var(--orange); color: #fff; border-color: var(--orange); }

.empty { color: var(--muted); text-align: center; padding: 4rem 1rem; }

/* Reveal animations ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Responsive -------------------------------------------------- */
@media (max-width: 960px) {
    .about-preview__grid, .why__grid, .about__grid, .contact-preview__inner, .project-detail__grid, .contact__grid { grid-template-columns: 1fr; }
    .project-detail__side { position: static; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-toggle { display: block; margin-left: auto; }
    .site-header__cta { display: none; }
    .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .2s; }
    .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
    .site-nav ul { flex-direction: column; padding: 1rem 1.2rem; gap: .2rem; }
    .site-nav a { padding: .8rem 0; display: block; border-bottom: 1px solid var(--line); }
    .site-nav a.is-active::after { display: none; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .hero__actions .btn { flex: 1; justify-content: center; }
}
