/* PowerGSM — Design System v3 (Apple Liquid Glass + Soft Gradients + Modern Motion)
 * Inspired by iOS 26 / visionOS / Apple 2026 web design language
 */

:root {
    /* Brand */
    --navy: #0E2144;
    --navy-700: #1A3266;
    --navy-50: #EEF1F6;
    --orange: #E78720;
    --orange-light: #FFA94D;
    --orange-50: #FFF4E6;
    --green: #2BA84A;

    /* Soft pastels for Apple-like gradients */
    --sky: #DCE7F3;
    --rose: #F4DCDC;
    --peach: #FCE4CE;
    --mint: #D9EDE3;
    --lilac: #E5DCEF;
    --sand: #F5EFE3;

    /* Surfaces */
    --bg: #FAFAF7;
    --bg-alt: #F4F4F0;
    --surface: #FFFFFF;

    /* Text */
    --text: #0A0A0A;
    --text-2: #4A4A4A;
    --text-3: #8A8A8A;
    --border: #E8E8E5;
    --border-strong: #D4D4D0;

    /* Radius */
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-pill: 9999px;

    /* Shadows — colored, soft */
    --shadow-sm: 0 1px 3px rgba(14, 33, 68, 0.06), 0 1px 2px rgba(14, 33, 68, 0.04);
    --shadow: 0 8px 24px -4px rgba(14, 33, 68, 0.08), 0 4px 8px -2px rgba(14, 33, 68, 0.04);
    --shadow-lg: 0 30px 60px -20px rgba(14, 33, 68, 0.16), 0 10px 20px -8px rgba(14, 33, 68, 0.08);
    --shadow-xl: 0 50px 100px -30px rgba(14, 33, 68, 0.25);
    --shadow-orange: 0 20px 40px -16px rgba(231, 135, 32, 0.4);

    --container: 1280px;
    --gutter: clamp(20px, 4vw, 32px);

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--navy); color: #fff; }

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

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Animated mesh gradient background (Apple-like multi-color soft blobs) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 10%, rgba(231,135,32,0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(14,33,68,0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(252,228,206,0.5) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(220,231,243,0.5) 0%, transparent 45%);
    pointer-events: none;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--orange); }

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    position: relative;
}

/* Section */
.section { padding-block: clamp(72px, 12vh, 140px); position: relative; }
.section-tight { padding-block: clamp(48px, 8vh, 80px); }

/* ===================================
   TYPOGRAPHY
   =================================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    padding: 6px 12px 6px 6px;
    background: var(--orange-50);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(231,135,32,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.eyebrow::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(231,135,32,0.18);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.85); opacity: 0.7; }
}

h1, .h1 {
    font-size: clamp(44px, 7.5vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 800;
    color: var(--navy);
}
h2, .h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
h3, .h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--navy);
}
h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.015em;
}
.lead {
    font-size: clamp(17px, 1.55vw, 21px);
    line-height: 1.55;
    color: var(--text-2);
    max-width: 60ch;
}
p { color: var(--text-2); }

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ===================================
   ICONS — Refined stroke-based (1.5px), Phosphor-inspired
   =================================== */
.ico {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.ico-sm { width: 18px; height: 18px; stroke-width: 1.8; }
.ico-lg { width: 32px; height: 32px; stroke-width: 1.5; }
.ico-xl { width: 44px; height: 44px; stroke-width: 1.3; }

/* ===================================
   BUTTONS — Liquid Glass + Soft Shadow
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
/* shine effect on hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left .6s var(--ease);
}
.btn:hover::after { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(14, 33, 68, 0.5);
}
.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(14, 33, 68, 0.6);
}
.btn-accent {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(231, 135, 32, 0.5);
}
.btn-accent:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(231, 135, 32, 0.6);
}
.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.5);
}
.btn-wa:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
}
.btn-fb {
    background: linear-gradient(135deg, #1877F2 0%, #0d5fc4 100%);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(24, 119, 242, 0.5);
}
.btn-fb:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(24, 119, 242, 0.6);
}
.btn-tg {
    background: linear-gradient(135deg, #229ED9 0%, #1a82b4 100%);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(34, 158, 217, 0.5);
}
.btn-tg:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(34, 158, 217, 0.6);
}

/* GROUP CARDS — Bayi Topluluğu */
.group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 900px) {
    .group-grid { grid-template-columns: 1fr; gap: 16px; }
}
.group-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px -12px rgba(14, 33, 68, 0.10);
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
}
.group-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(14, 33, 68, 0.18);
    border-color: rgba(14, 33, 68, 0.15);
}
.group-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.25);
}
.group-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}
.group-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
    flex-grow: 1;
}
.group-wa .group-icon { background: linear-gradient(135deg, #25D366, #1ebe57); }
.group-fb .group-icon { background: linear-gradient(135deg, #1877F2, #0d5fc4); }
.group-tg .group-icon { background: linear-gradient(135deg, #229ED9, #1a82b4); }
.btn-ghost {
    background: rgba(255,255,255,0.6);
    color: var(--navy);
    border-color: var(--border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.9);
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ===================================
   ANNOUNCEMENT BAR — Kayan üst banner
   =================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-700) 50%, var(--navy) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
    padding-block: 11px;
    border-bottom: 1px solid rgba(231, 135, 32, 0.18);
    box-shadow: 0 0 24px rgba(231, 135, 32, 0.12) inset, 0 2px 12px rgba(14, 33, 68, 0.3);
    z-index: 51;
    white-space: nowrap;
}
.announcement-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(231,135,32,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.announcement-track {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 28px;
    width: max-content;
    animation: announcement-scroll 50s linear infinite;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}
.announcement-bar:hover .announcement-track { animation-play-state: paused; }
.announcement-track > span {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.95);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 0 12px rgba(231, 135, 32, 0.25);
}
.announcement-track > span i {
    color: var(--orange);
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(231, 135, 32, 0.6));
}
.announcement-track > span.ann-sep {
    color: rgba(231, 135, 32, 0.6);
    text-shadow: 0 0 8px rgba(231, 135, 32, 0.5);
}
@keyframes announcement-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Bar (ters yön — turuncu) */
.announcement-bar.cta {
    background: linear-gradient(90deg, #c46e1a 0%, var(--orange) 50%, #c46e1a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08) inset, 0 2px 12px rgba(231, 135, 32, 0.3);
}
.announcement-bar.cta::after {
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.announcement-bar.cta .announcement-track {
    animation: announcement-scroll-reverse 45s linear infinite;
}
.announcement-bar.cta:hover .announcement-track { animation-play-state: paused; }
.announcement-bar.cta .announcement-track > span {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.announcement-bar.cta .announcement-track > span i {
    color: #fff;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}
.announcement-bar.cta .announcement-track > span.ann-sep {
    color: rgba(255, 255, 255, 0.55);
    text-shadow: none;
}
.announcement-bar.cta .ann-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: text-shadow .2s;
}
.announcement-bar.cta .ann-link:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    color: #fff;
}

@keyframes announcement-scroll-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 600px) {
    .announcement-bar { padding-block: 9px; }
    .announcement-track { gap: 20px; animation-duration: 35s; }
    .announcement-track > span { font-size: 12px; }
    .announcement-track > span i { font-size: 12px; }
    .announcement-bar.cta .announcement-track { animation-duration: 32s; }
}

/* ===================================
   NAVIGATION — Liquid Glass
   =================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.72);
    backdrop-filter: saturate(180%) blur(28px);
    -webkit-backdrop-filter: saturate(180%) blur(28px);
    border-bottom: 1px solid rgba(232, 232, 229, 0.6);
    transition: background .3s;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 14px;
}
.nav-logo { height: 88px; width: auto; object-fit: contain; }
@media (max-width: 600px) { .nav-logo { height: 62px; } }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 14.5px;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--navy);
}

/* ===================================
   HERO — Liquid Glass Bento + Cursor Spotlight
   =================================== */
.hero {
    padding-block: clamp(60px, 12vh, 140px) clamp(60px, 10vh, 100px);
    position: relative;
    overflow: hidden;
}
/* Hero phones photo backdrop */
.hero-bg-photo {
    position: absolute;
    top: 0;
    right: -10%;
    width: 75%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: url('../img/hero-phones.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.35;
    filter: saturate(0.85) contrast(1.05);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,1) 100%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,1) 100%);
    animation: hero-photo-drift 30s var(--ease) infinite alternate;
}
@keyframes hero-photo-drift {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.06) translateX(-2%); }
}
@media (max-width: 900px) {
    .hero-bg-photo {
        width: 100%;
        right: 0;
        opacity: 0.32;
        background-position: center center;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,1) 100%);
                mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,1) 100%);
    }
}

.hero-bg-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-blob 22s var(--ease) infinite;
}
.hero-bg-blobs .blob-1 {
    width: 500px; height: 500px;
    background: var(--orange-50);
    top: -10%; right: -10%;
    animation-delay: 0s;
}
.hero-bg-blobs .blob-2 {
    width: 400px; height: 400px;
    background: var(--sky);
    bottom: -20%; left: 10%;
    animation-delay: -8s;
}
.hero-bg-blobs .blob-3 {
    width: 300px; height: 300px;
    background: var(--peach);
    top: 40%; left: 30%;
    animation-delay: -14s;
}
@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -60px) scale(1.08); }
    66%      { transform: translate(-40px, 30px) scale(0.94); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
        "text bento"
        "cta  bento";
    gap: 28px 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.hero-text { grid-area: text; align-self: end; }
.hero-cta { grid-area: cta; align-self: start; }
.hero-bento { grid-area: bento; align-self: center; }
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "bento"
            "cta";
        gap: 32px;
    }
    .hero-text, .hero-cta, .hero-bento { align-self: stretch; }
}
.hero .lead { margin: 28px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 560px) {
    .hero-cta .btn { width: 100%; justify-content: center; }
}
.hero-trust {
    margin-top: 56px;
    display: flex;
    gap: 24px 36px;
    flex-wrap: wrap;
    color: var(--text-3);
    font-size: 14px;
    font-weight: 500;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-trust .ico { color: var(--green); }

/* Hero Bento — Liquid Glass cards floating */
.hero-bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    aspect-ratio: 5/4.5;
    perspective: 1200px;
}
@media (max-width: 900px) {
    .hero-bento { aspect-ratio: auto; gap: 14px; }
    .bento.b-navy { min-height: 220px; }
    .bento.b-orange, .bento.b-glass { min-height: 160px; }
}
.bento {
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}
.bento:hover { transform: translateY(-6px) rotateX(2deg); }

.bento.b-navy {
    background:
        radial-gradient(circle at 20% 20%, rgba(231,135,32,0.20) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #fff;
    grid-row: 1 / 3;
    box-shadow: 0 30px 60px -20px rgba(14,33,68,0.4);
}
.bento.b-navy h4 { color: #fff; }
.bento.b-navy p { color: rgba(255,255,255,0.75); }
.bento.b-orange {
    background:
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    box-shadow: 0 20px 40px -16px rgba(231,135,32,0.5);
}
.bento.b-orange h4 { color: #fff; }
.bento.b-orange p { color: rgba(255,255,255,0.9); }

/* Liquid Glass bento card */
.bento.b-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-lg);
}

.bento .big-num {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    font-variant-numeric: tabular-nums;
    word-break: keep-all;
    white-space: nowrap;
}
.bento.b-glass .big-num { font-size: clamp(28px, 3.8vw, 42px); }
@media (max-width: 900px) {
    .bento { padding: 22px; }
    .bento h4 { font-size: 16px !important; line-height: 1.25 !important; }
    .bento .big-num { font-size: 36px; }
    .bento.b-glass .big-num { font-size: 30px; }
    .bento .bento-label { font-size: 12px; }
}
@media (max-width: 560px) {
    .bento { padding: 18px; }
    .bento h4 { font-size: 15px !important; }
    .bento .big-num { font-size: 32px; }
    .bento.b-glass .big-num { font-size: 28px; }
}
.bento .bento-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

/* ===================================
   TRUST BAR — Liquid Glass strip
   =================================== */
.trust-bar {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%);
    backdrop-filter: blur(20px);
    border-block: 1px solid var(--border);
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-block: 32px;
}
@media (max-width: 1100px) { .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; } }
.trust-item span:last-child {
    line-height: 1.3;
}
@media (max-width: 560px) {
    .trust-bar-grid { padding-block: 24px; gap: 14px 8px; }
    .trust-item { gap: 10px; font-size: 13.5px; }
    .trust-item .icon { width: 40px; height: 40px; border-radius: 12px; }
    .trust-item .icon i { font-size: 16px !important; }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.005em;
}
.trust-item .icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange-50) 0%, #fff 100%);
    color: var(--orange);
    display: grid; place-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.8);
}
.trust-item .icon .ico { width: 24px; height: 24px; stroke-width: 1.6; }

/* ===================================
   PRODUCT SECTION — backdrop with photo
   =================================== */
#urunler {
    position: relative;
    overflow: hidden;
}
.products-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('../img/products-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    filter: saturate(0.7) contrast(1.05) blur(1px);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, transparent 90%);
            mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, transparent 90%);
    animation: products-bg-drift 40s var(--ease) infinite alternate;
}
@keyframes products-bg-drift {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-2%, 1%); }
}
#urunler > .container { position: relative; z-index: 1; }
@media (max-width: 768px) {
    .products-bg-photo { opacity: 0.22; }
}

/* ===================================
   CATEGORY GRID — 3D tilt + Glass
   =================================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 64px;
    perspective: 1000px;
}
.cat-grid > .cat-card { grid-column: span 2; }
@media (min-width: 901px) {
    /* Row 1: cards 1,2,3 each span 2 cols (1-2, 3-4, 5-6) */
    /* Row 2: cards 4,5 — shift to columns 2-3 and 4-5 to center */
    .cat-grid > .cat-card:nth-child(4) { grid-column: 2 / span 2; }
    .cat-grid > .cat-card:nth-child(5) { grid-column: 4 / span 2; }
}
@media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid > .cat-card { grid-column: span 1; }
    .cat-grid > .cat-card:nth-child(4),
    .cat-grid > .cat-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 560px) {
    .cat-grid { grid-template-columns: 1fr; }
    .cat-grid > .cat-card { grid-column: span 1; }
}

.cat-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all .5s var(--ease);
    text-decoration: none;
    color: inherit;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    will-change: transform;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(231,135,32,0.10) 0%, transparent 40%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(14, 33, 68, 0.3);
    color: inherit;
}
.cat-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px) saturate(120%);
    opacity: 0.42;
    z-index: 0;
    pointer-events: none;
    transition: opacity .5s var(--ease), transform .8s var(--ease), filter .5s var(--ease);
}
.cat-card:hover .cat-photo {
    opacity: 0.55;
    transform: scale(1.03);
    filter: blur(5px) saturate(125%);
}
.cat-card.featured .cat-photo {
    opacity: 0.38;
    filter: blur(9px) saturate(125%) brightness(1.25) contrast(1.05);
}
.cat-card.featured:hover .cat-photo {
    opacity: 0.5;
    filter: blur(6px) saturate(130%) brightness(1.3);
}
@media (max-width: 768px) {
    .cat-photo { opacity: 0.28; filter: blur(10px) saturate(115%); }
    .cat-card.featured .cat-photo { opacity: 0.3; filter: blur(11px) saturate(125%) brightness(1.25); }
}
.cat-card > *:not(.cat-photo) { position: relative; z-index: 1; }
.cat-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: var(--orange);
    display: grid; place-items: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px -8px rgba(14,33,68,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.cat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
    pointer-events: none;
}

.cat-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 30px 60px -20px rgba(14,33,68,0.5);
}
.cat-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(231,135,32,0.25), transparent 50%);
    pointer-events: none;
}
.cat-card.featured h3 { color: #fff; }
.cat-card.featured p { color: rgba(255,255,255,0.75); }
.cat-card.featured .cat-icon {
    background: rgba(231,135,32,0.18);
    backdrop-filter: blur(10px);
}
.cat-card .arrow {
    margin-top: auto;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s;
}
.cat-card:hover .arrow { gap: 12px; }

/* ===================================
   WHY US — Glass cards with hover lift
   =================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.95);
}
.why-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--orange-50) 0%, #fff 100%);
    color: var(--orange);
    border-radius: 18px;
    display: grid; place-items: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px -6px rgba(231,135,32,0.25), inset 0 1px 0 rgba(255,255,255,1);
}

/* ===================================
   PROCESS — Connected steps
   =================================== */
.process {
    background:
        radial-gradient(circle at 50% 0%, rgba(231,135,32,0.05) 0%, transparent 60%),
        var(--bg-alt);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    position: relative;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.step-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
    position: absolute;
    top: -20px; left: 28px;
    width: 44px; height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: grid; place-items: center;
    box-shadow: 0 10px 24px -6px rgba(231, 135, 32, 0.5);
    font-variant-numeric: tabular-nums;
}
.step-card h4 { margin: 16px 0 10px; }

/* ===================================
   STATS — Dark gradient with glow numbers
   =================================== */
.stats {
    background:
        radial-gradient(circle at 80% 30%, rgba(231,135,32,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(14,33,68,0.6) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}
.stats h2 { color: #fff; }
.stats .lead { color: rgba(255,255,255,0.75); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.12);
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-item .stat-num {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}
.stat-item .stat-label {
    margin-top: 14px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   BRANDS — Infinite Marquee
   =================================== */
.brands-marquee {
    margin-top: 56px;
    overflow: hidden;
    position: relative;
    padding-block: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-track {
    display: flex;
    gap: clamp(56px, 7vw, 100px);
    width: max-content;
    animation: brands-scroll 45s linear infinite;
    align-items: center;
}
.brands-track:hover { animation-play-state: paused; }
.brand-logo {
    height: 64px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    object-fit: contain;
}
.brand-logo:hover {
    opacity: 1;
    transform: scale(1.12);
}
@media (max-width: 768px) {
    .brand-logo { height: 48px; }
}
@keyframes brands-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - clamp(28px, 3.5vw, 50px))); }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all .5s var(--ease);
    position: relative;
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255,255,255,0.95);
}
.testimonial .quote-icon {
    width: 36px; height: 36px;
    color: var(--orange);
    margin-bottom: 18px;
    opacity: 0.6;
}
.testimonial p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: var(--orange);
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 6px 16px -4px rgba(14,33,68,0.3);
}
.author-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.author-loc { font-size: 13px; color: var(--text-3); margin-top: 2px; }

/* ===================================
   FAQ
   =================================== */
.faq-list { margin-top: 56px; display: grid; gap: 12px; }
.faq-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s, background .3s;
}
.faq-item:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.95); }
.faq-item[open] {
    background: rgba(255,255,255,1);
    border-color: var(--orange);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.015em;
}
.faq-q .plus {
    width: 32px; height: 32px;
    background: var(--orange-50);
    color: var(--orange);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 20px;
    transition: transform .3s var(--ease), background .3s;
    flex-shrink: 0;
}
.faq-item[open] .faq-q .plus {
    transform: rotate(45deg);
    background: var(--orange);
    color: #fff;
}
.faq-a {
    padding: 0 28px 26px;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 15.5px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background:
        radial-gradient(circle at 80% 30%, rgba(231,135,32,0.25) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(14,33,68,0.4) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(48px, 7vw, 96px);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-block: clamp(72px, 12vh, 140px);
    box-shadow: 0 40px 80px -30px rgba(14,33,68,0.5);
}
.cta-section .eyebrow {
    background: rgba(231,135,32,0.18);
    border-color: rgba(231,135,32,0.3);
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); margin: 20px auto 36px; max-width: 56ch; font-size: 18px; }
.cta-section .btn-wrap {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding-block: 72px 36px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-grid.footer-simple { grid-template-columns: 1.8fr 1fr 1fr; }
@media (max-width: 768px) {
    .footer-grid, .footer-grid.footer-simple { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 480px) {
    .footer-grid, .footer-grid.footer-simple { grid-template-columns: 1fr; }
}
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; color: var(--text-2); max-width: 38ch; line-height: 1.6; }
.footer-col h5 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--text-2); font-size: 14.5px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 16px;
}
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--bg-alt);
    color: var(--navy);
    display: grid; place-items: center;
    transition: all .35s var(--ease);
    border: 1px solid var(--border);
}
.social-icons a:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px -4px rgba(231,135,32,0.5);
}

/* ===================================
   FLOATING WHATSAPP — Liquid Glass
   =================================== */
.float-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow:
        0 12px 30px -8px rgba(37, 211, 102, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: transform .35s var(--ease);
    animation: wa-pulse 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1) rotate(8deg); color: #fff; }
@keyframes wa-pulse {
    0% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 24px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
    will-change: opacity, transform, filter;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Section header */
.section-head { max-width: 760px; margin: 0 auto 0; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

/* Mobile nav */
@media (max-width: 700px) {
    .nav-cta .btn-ghost { display: none; }
    .nav-cta .btn { padding: 10px 18px; font-size: 14px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; filter: none; }
}

/* ===================================
   INNER PAGE TEMPLATE
   =================================== */

.page-hero {
    padding-block: clamp(80px, 12vh, 140px) clamp(48px, 7vh, 96px);
    background:
        radial-gradient(circle at 80% 20%, rgba(231,135,32,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(220,231,243,0.5) 0%, transparent 50%),
        var(--bg);
    position: relative;
    overflow: hidden;
}
.page-hero .container { max-width: 880px; position: relative; z-index: 1; }

/* Hero backdrop image (subtle, blurred) */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.7) blur(3px);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 60%, transparent 95%);
            mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 60%, transparent 95%);
    animation: hero-bg-drift 40s var(--ease) infinite alternate;
}
@keyframes hero-bg-drift {
    0%   { transform: scale(1.04) translate(0, 0); }
    100% { transform: scale(1.10) translate(-1.5%, 1%); }
}
@media (max-width: 768px) {
    .page-hero-bg { opacity: 0.14; filter: saturate(0.7) blur(2px); }
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 24px;
    font-weight: 500;
}
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: 0.5; }
.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}
.page-hero .lead { margin: 0; max-width: 64ch; }

/* Prose — rich text for legal pages, blog posts */
.prose {
    max-width: 760px;
    margin-inline: auto;
}
.prose h2 {
    font-size: clamp(24px, 2.5vw, 30px);
    margin-top: 56px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.prose h3 {
    font-size: clamp(19px, 2vw, 22px);
    margin-top: 32px;
    margin-bottom: 12px;
}
.prose p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}
.prose ul, .prose ol {
    padding-left: 28px;
    margin-bottom: 20px;
}
.prose li {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 8px;
}
.prose strong { color: var(--navy); font-weight: 700; }
.prose a:not(.btn) { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.prose a:not(.btn):hover { color: var(--orange-dark); }
.prose .btn { text-decoration: none; }
.prose .btn-wa, .prose .btn-accent, .prose .btn-primary { color: #fff !important; }
.prose .btn-wa:hover, .prose .btn-accent:hover, .prose .btn-primary:hover { color: #fff !important; }
.prose blockquote {
    margin: 28px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--orange);
    background: var(--orange-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text);
    font-style: italic;
}
.prose .last-updated {
    font-size: 14px;
    color: var(--text-3);
    margin-bottom: 32px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 24px; }
.contact-info-list { list-style: none; padding: 0; margin: 24px 0; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .info-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-50) 0%, #fff 100%);
    color: var(--orange);
    display: grid; place-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contact-info-list .info-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
}
.contact-info-list .info-value {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 2px;
}
.contact-info-list a { color: var(--navy); }
.contact-info-list a:hover { color: var(--orange); }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    color: var(--text);
}
.form-control:focus {
    outline: 0;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(231, 135, 32, 0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { width: 100%; justify-content: center; }
.form-note {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 12px;
    text-align: center;
}

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 400px;
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s var(--ease);
    color: inherit;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    color: inherit;
}
.blog-card-img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    position: relative;
    display: grid;
    place-items: center;
    color: var(--orange);
    overflow: hidden;
}
.blog-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(231,135,32,0.2) 0%, transparent 50%);
}
.blog-card-img i { font-size: 64px; z-index: 1; opacity: 0.4; }
.blog-card-body { padding: 28px 28px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-cat {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.blog-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}
.blog-card-excerpt {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.55;
    flex-grow: 1;
}
.blog-card-meta {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-3);
}
.blog-card-meta .read-more {
    color: var(--orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .25s;
}
.blog-card:hover .read-more { gap: 8px; }

/* Article (single blog post) */
.article-hero {
    padding-block: clamp(80px, 12vh, 140px) clamp(32px, 5vh, 56px);
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    color: var(--text-3);
    font-size: 14px;
}
.article-meta .dot { width: 4px; height: 4px; background: var(--text-3); border-radius: 50%; }
.article-meta .cat-tag {
    background: var(--orange-50);
    color: var(--orange);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.article-banner {
    height: 320px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-xl);
    margin: 0 auto 48px;
    max-width: 1080px;
    display: grid;
    place-items: center;
    color: var(--orange);
    position: relative;
    overflow: hidden;
}
.article-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(231,135,32,0.25) 0%, transparent 60%);
}
.article-banner i { font-size: 120px; opacity: 0.5; z-index: 1; }

/* Footer logo bigger */
.footer-brand img { height: 56px !important; }

/* Helpers */
.text-center { text-align: center; }
.mt-12 { margin-top: 48px; }
.muted { color: var(--text-3); }
