/* =========================================================
   Mekik Bakım — Modern Light Theme
   Shared stylesheet for all pages
   ========================================================= */

:root {
    /* Brand */
    --blue: #1d47fb;
    --blue-600: #1536c9;
    --blue-700: #1230ad;
    --blue-soft: #eef2ff;
    --blue-tint: #f4f7ff;

    /* Neutrals */
    --ink: #0e1726;
    --body: #43506b;
    --muted: #7b8aa6;
    --line: #e7ecf5;
    --bg: #f6f8fc;
    --bg-2: #eef2f9;
    --card: #ffffff;
    --dark: #131722;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(16, 27, 53, .06);
    --shadow: 0 10px 30px -12px rgba(29, 71, 251, .18), 0 4px 12px rgba(16, 27, 53, .05);
    --shadow-lg: 0 30px 60px -20px rgba(29, 71, 251, .28);
    --ring: 0 0 0 4px rgba(29, 71, 251, .12);

    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --maxw: 1200px;

    --ease: cubic-bezier(.22, 1, .36, 1);

    --font: "Plus Jakarta Sans", "gopher", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background:
        radial-gradient(1200px 600px at 100% -10%, rgba(29, 71, 251, .07), transparent 60%),
        radial-gradient(900px 500px at -10% 10%, rgba(29, 71, 251, .05), transparent 55%),
        var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0; }

.container {
    width: min(var(--maxw), 92vw);
    margin-inline: auto;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    --pad: 14px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: var(--pad);
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: linear-gradient(135deg, var(--blue), #4d6dff);
    color: #fff;
    box-shadow: 0 12px 24px -10px rgba(29, 71, 251, .65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(29, 71, 251, .75); }
.btn-ghost {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: #cfd9ee; box-shadow: var(--shadow); }
.btn-light {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
    backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255, 255, 255, .24); transform: translateY(-2px); }

/* =========================================================
   Header / Navbar
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px -16px rgba(16, 27, 53, .35);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}
.brand img { width: 138px; height: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-links a {
    position: relative;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    transition: color .2s, background .2s;
}
.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta):hover { color: var(--blue); }
.nav-links a.active:not(.nav-cta) { color: var(--blue); }
.nav-cta {
    background: linear-gradient(135deg, var(--blue), #4d6dff);
    color: #fff !important;
    box-shadow: 0 10px 20px -10px rgba(29, 71, 251, .7);
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after { transform: translate(-50%, 6px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translate(-50%, 0) rotate(-45deg); }

@media (max-width: 880px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 84vw);
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 96px 20px 30px;
        background: #fff;
        box-shadow: -20px 0 60px -20px rgba(16, 27, 53, .35);
        transform: translateX(105%);
        transition: transform .4s var(--ease);
    }
    .nav-open .nav-links { transform: translateX(0); }
    .nav-links a { font-size: 17px; padding: 14px 18px; border-radius: 14px; }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .nav-links a:not(.nav-cta):hover { background: var(--blue-soft); }
    .nav-cta { text-align: center; justify-content: center; }
    .nav-scrim {
        position: fixed; inset: 0;
        background: rgba(13, 20, 35, .45);
        opacity: 0; visibility: hidden;
        transition: opacity .3s;
        z-index: 55;
    }
    .nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 8vw, 110px);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .02em;
    margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(29, 71, 251, .18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(29,71,251,.22);} 50% { box-shadow: 0 0 0 7px rgba(29,71,251,0);} }

.hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.hero h1 .grad {
    background: linear-gradient(120deg, var(--blue), #6a86ff 60%, #1230ad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.lead {
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--body);
    max-width: 52ch;
    margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta .m { display: flex; flex-direction: column; }
.hero-meta .m b { font-size: 26px; color: var(--ink); font-weight: 800; }
.hero-meta .m span { font-size: 13.5px; color: var(--muted); }

.hero-visual { position: relative; }
.hero-visual .frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, .6);
    transform: rotate(-1.2deg);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; }
.hero-visual .frame::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(13, 20, 35, .28));
}
.hero-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px;
    z-index: 2;
}
.hero-badge .ic {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), #4d6dff);
    display: grid; place-items: center; color: #fff;
    flex-shrink: 0;
}
.hero-badge .ic svg { width: 22px; height: 22px; }
.hero-badge b { display: block; color: var(--ink); font-size: 15px; }
.hero-badge span { font-size: 12.5px; color: var(--muted); }
.hero-badge.b1 { top: 18px; left: -26px; animation: float 5s ease-in-out infinite; }
.hero-badge.b2 { bottom: 22px; right: -22px; animation: float 5s ease-in-out infinite .8s; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

.hero-blob {
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(29, 71, 251, .22), transparent 70%);
    filter: blur(10px);
    z-index: -1;
    top: -60px; right: -80px;
}

@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p.lead { margin-inline: auto; }
    .hero-actions, .hero-meta { justify-content: center; }
    .hero-visual { max-width: 560px; margin: 10px auto 0; }
    .hero-badge.b1 { left: 6px; }
    .hero-badge.b2 { right: 6px; }
}

/* =========================================================
   Marquee / trust bar
   ========================================================= */
.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .6);
    padding: 18px 0;
    overflow: hidden;
}
.trust .track {
    display: flex; gap: 56px; align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: scroll 26s linear infinite;
    color: var(--muted);
    font-weight: 700;
    font-size: 15px;
}
.trust .track span { display: inline-flex; align-items: center; gap: 12px; }
.trust .track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   Section primitives
   ========================================================= */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.03em; }
.section-head p { margin-top: 16px; color: var(--body); font-size: 17px; }

/* =========================================================
   Service cards
   ========================================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1000px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }

.s-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.s-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(29, 71, 251, .06), transparent 50%);
    opacity: 0; transition: opacity .35s;
}
.s-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #d7e0f5; }
.s-card:hover::before { opacity: 1; }
.s-card .ic {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), #4d6dff);
    display: grid; place-items: center;
    box-shadow: 0 12px 22px -10px rgba(29, 71, 251, .7);
    margin-bottom: 20px;
    transition: transform .35s var(--ease);
}
.s-card:hover .ic { transform: rotate(-6deg) scale(1.06); }
.s-card .ic img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.s-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); }
.s-card p { font-size: 14.5px; color: var(--body); }
.s-card .no { position: absolute; top: 18px; right: 22px; font-size: 42px; font-weight: 800; color: var(--blue-soft); letter-spacing: -.04em; }

/* =========================================================
   Feature / blog split
   ========================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-media .tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    color: var(--blue);
    font-weight: 700; font-size: 13px;
    padding: 7px 14px; border-radius: 999px;
}
.split-body .eyebrow { margin-bottom: 16px; }
.split-body h3 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; letter-spacing: -.02em; }
.split-body p { color: var(--body); margin-bottom: 22px; }
.readmore {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blue); font-weight: 700;
    transition: gap .25s var(--ease);
}
.readmore:hover { gap: 14px; }
.readmore svg { width: 18px; height: 18px; }

@media (max-width: 820px) {
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
}

/* =========================================================
   Stats band
   ========================================================= */
.stats-band {
    position: relative;
    background: linear-gradient(135deg, var(--blue-700), var(--blue) 55%, #4d6dff);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
    overflow: hidden;
    color: #fff;
}
.stats-band::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 90% -20%, rgba(255,255,255,.18), transparent 60%),
        radial-gradient(500px 260px at -10% 120%, rgba(255,255,255,.12), transparent 60%);
}
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.stat .ic {
    width: 64px; height: 64px; margin: 0 auto 14px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 18px;
    display: grid; place-items: center;
}
.stat .ic img { width: 34px; height: 34px; }
.stat .num { font-size: clamp(36px, 5vw, 54px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat .label { margin-top: 8px; font-size: 15px; color: rgba(255,255,255,.86); }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery .g-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery .g-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 20, 35, .55));
    opacity: 0; transition: opacity .35s;
}
.gallery .g-item .zoom {
    position: absolute; right: 14px; bottom: 14px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: grid; place-items: center;
    transform: translateY(10px); opacity: 0;
    transition: transform .35s var(--ease), opacity .35s;
    z-index: 2;
}
.gallery .g-item .zoom svg { width: 18px; height: 18px; color: var(--blue); }
.gallery .g-item:hover img { transform: scale(1.08); }
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-item:hover .zoom { transform: translateY(0); opacity: 1; }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(8, 12, 22, .9);
    backdrop-filter: blur(6px);
    display: grid; place-items: center;
    padding: 24px;
    opacity: 0; visibility: hidden;
    transition: opacity .3s;
    z-index: 200;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.6); transform: scale(.96); transition: transform .3s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox .lb-close, .lightbox .lb-nav {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    width: 50px; height: 50px; border-radius: 50%;
    display: grid; place-items: center; cursor: pointer;
    transition: background .2s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.25); }
.lightbox .lb-close { top: 22px; right: 22px; font-size: 22px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }
.lightbox .lb-nav svg { width: 22px; height: 22px; }
@media (max-width: 560px){ .lightbox .lb-nav { width: 42px; height: 42px; } .lightbox .lb-prev{left:10px} .lightbox .lb-next{right:10px} }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
    text-align: center;
    padding: clamp(50px, 7vw, 90px) 0 clamp(30px, 4vw, 50px);
}
.page-hero h1 { font-size: clamp(34px, 5.5vw, 60px); letter-spacing: -.03em; }
.page-hero h1 .grad {
    background: linear-gradient(120deg, var(--blue), #6a86ff 60%, #1230ad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p { margin: 18px auto 0; max-width: 60ch; color: var(--body); font-size: 17px; }
.crumbs { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { opacity: .5; }

/* =========================================================
   About
   ========================================================= */
.about-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 50px);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(28px, 4vw, 50px);
    align-items: center;
}
.about-card .ac-body h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; letter-spacing: -.02em; }
.about-card .ac-body p { color: var(--body); margin-bottom: 16px; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
@media (max-width: 820px) { .about-card { grid-template-columns: 1fr; } .about-media { aspect-ratio: 16/10; } .about-media img { aspect-ratio: 16/10; } }

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.value {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 16px; }
.value .ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--body); }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }

/* =========================================================
   Blog article
   ========================================================= */
.article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 44px;
}
.article .a-cover { position: relative; }
.article .a-cover img { width: 100%; height: clamp(220px, 32vw, 380px); object-fit: cover; }
.article .a-cover .tag {
    position: absolute; top: 18px; left: 18px;
    background: rgba(255,255,255,.92); color: var(--blue);
    font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 999px;
}
.article .a-body { padding: clamp(26px, 4vw, 50px); }
.article .a-meta { display: flex; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 16px; flex-wrap: wrap; }
.article .a-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article .a-meta svg { width: 16px; height: 16px; color: var(--blue); }
.article h2 { font-size: clamp(24px, 3.5vw, 38px); letter-spacing: -.02em; margin-bottom: 18px; }
.article .a-body h3 { font-size: 20px; color: var(--blue); margin: 30px 0 4px; }
.article .a-body p { color: var(--body); margin-bottom: 14px; font-size: 16px; }
.article .lead { font-size: 18px; color: var(--ink); font-weight: 500; }
.article .a-points { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 16px; }
.article .a-points li { display: flex; gap: 14px; align-items: flex-start; }
.article .a-points .n {
    flex-shrink: 0;
    width: 34px; height: 34px; border-radius: 10px;
    background: var(--blue-soft); color: var(--blue);
    font-weight: 800; display: grid; place-items: center; font-size: 15px;
}
.article .a-points b { color: var(--ink); display: block; margin-bottom: 2px; }
.article .a-points p { margin: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 44px);
    align-items: start;
}
.contact-info { display: grid; gap: 16px; }
.c-row {
    display: flex; align-items: center; gap: 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.c-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d7e0f5; }
.c-row .ic {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), #4d6dff);
    display: grid; place-items: center; color: #fff;
}
.c-row .ic svg { width: 24px; height: 24px; }
.c-row .t span { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.c-row .t b { display: block; color: var(--ink); font-size: 16.5px; font-weight: 700; margin-top: 2px; }

.contact-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 40px);
    box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-ok { display: none; margin-top: 16px; padding: 14px; border-radius: 12px; background: #e9f9ef; color: #157a45; font-weight: 600; font-size: 14.5px; text-align: center; }
.form-ok.show { display: block; }
.form-err { display: none; margin-top: 16px; padding: 14px; border-radius: 12px; background: #fdecec; color: #b3261e; font-weight: 600; font-size: 14.5px; text-align: center; }
.form-err.show { display: block; }
.map-wrap { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CTA band
   ========================================================= */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--dark), #1c2540);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 68px);
    text-align: center;
    overflow: hidden;
    color: #fff;
}
.cta::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 80% -30%, rgba(29, 71, 251, .5), transparent 60%),
        radial-gradient(500px 260px at 10% 130%, rgba(29, 71, 251, .35), transparent 60%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(26px, 4vw, 42px); letter-spacing: -.03em; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.82); max-width: 54ch; margin: 0 auto 28px; font-size: 17px; }
.cta .hero-actions { justify-content: center; margin: 0; }

/* Split CTA: text left, image right */
.cta--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    text-align: left;
}
.cta--split p { margin-left: 0; margin-right: 0; }
.cta--split .hero-actions { justify-content: flex-start; }
.cta-media { position: relative; }
.cta-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
    border-radius: var(--radius);
}
@media (max-width: 860px) {
    .cta--split { grid-template-columns: 1fr; text-align: center; }
    .cta--split p { margin-left: auto; margin-right: auto; }
    .cta--split .hero-actions { justify-content: center; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    margin-top: clamp(60px, 8vw, 110px);
    padding-top: clamp(50px, 6vw, 76px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { width: 150px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .ln { display: inline-flex; gap: 10px; align-items: flex-start; }
.footer-col .ln svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    flex-wrap: wrap;
    padding: 24px 0;
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: grid; place-items: center;
    transition: background .2s, transform .2s;
}
.footer-bottom .socials a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 18px; height: 18px; color: #fff; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: center; text-align: center; } }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; scroll-behavior: auto; }
}

/* Floating WhatsApp */
.wa-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366;
    display: grid; place-items: center;
    box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .6);
    transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid #25d366; animation: ripple 2s infinite;
}
@keyframes ripple { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
