/* ==========================================================================
   AUTOFOL — Premium Araç Koruma | Kurumsal Tasarım Sistemi
   Tasarım dili: autopoltr.com (indigo/periwinkle, kurumsal-premium)
   Renk: Indigo #0096d6 + koyu lacivert | Font: Montserrat + Inter
   ========================================================================== */

:root {
  /* Marka renkleri — kurumsal açık mavi (azure) aksan */
  --brand-50:  #e8f6fd;
  --brand-100: #c7e9fa;
  --brand-300: #7dd1f1;
  --brand-400: #38b6e8;
  --brand-500: #0096d6;   /* ana aksan */
  --brand-600: #0079b3;
  --brand-700: #015d8a;

  /* Vurgu gradyanı (açık mavi) ve açık hero zemini */
  --grad: linear-gradient(120deg, #0096d6 0%, #29aee4 50%, #6fd0f2 100%);
  --grad-soft: linear-gradient(135deg, #e3f3fc 0%, #eaf6fd 35%, #e6f1fb 70%, #f0f9ff 100%);

  /* Koyu zeminler */
  --navy-950: #041725;
  --navy-900: #06243a;
  --navy-800: #0a3550;
  --navy-700: #0e4a6e;

  /* Geriye dönük uyumluluk: eski "gold" sınıfları artık indigo aksan */
  --gold-300: var(--brand-300);
  --gold-400: var(--brand-400);
  --gold-500: var(--brand-500);
  --gold-600: var(--brand-600);

  --ink-900: #0e1530;
  --ink-700: #2b3556;
  --ink-600: #4a5575;
  --ink-500: #6b7591;
  --ink-300: #c7ccdc;
  --ink-200: #e4e7f1;
  --ink-100: #eef0f7;
  --ink-50:  #f6f7fc;
  --white: #ffffff;
  --on-dark: rgba(255,255,255,.82);
  --on-dark-muted: rgba(255,255,255,.58);

  --maxw: 1200px;
  --gutter: 24px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 3px rgba(14,21,48,.07), 0 1px 2px rgba(14,21,48,.05);
  --shadow-md: 0 10px 30px rgba(14,21,48,.10);
  --shadow-lg: 0 26px 60px rgba(14,21,48,.16);
  --shadow-brand: 0 14px 30px rgba(0,150,214,.35);
  --t: .28s cubic-bezier(.4,0,.2,1);
  --f-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-body); color: var(--ink-700); line-height: 1.65; background: var(--white); font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--brand-700); }
ul { list-style: none; }

h1,h2,h3,h4 { font-family: var(--f-head); color: var(--navy-900); line-height: 1.16; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.22rem; }
p { margin-bottom: 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--soft { background: var(--ink-50); }
.section--dark { background: var(--navy-900); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; } .mb-2 { margin-bottom: 1rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800; color: var(--brand-600); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand-500); border-radius: 2px; }
.section--dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--brand-300); }
.section--dark .eyebrow::before, .page-hero .eyebrow::before, .hero .eyebrow::before { background: var(--brand-400); }
.section-head { max-width: 760px; margin: 0 auto clamp(40px,5vw,60px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-600); font-size: 1.1rem; }
.gold-text, .accent-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--grad); color: #fff; font-weight: 700; font-family: var(--f-body); padding: 14px 28px; border-radius: 50px; border: 0; cursor: pointer; font-size: 1rem; transition: var(--t); box-shadow: var(--shadow-sm); line-height: 1.2; }
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-brand); filter: brightness(1.05); }
.btn--gold { background: var(--grad); color: #fff; }
.btn--gold:hover { color: #fff; box-shadow: var(--shadow-brand); filter: brightness(1.05); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-800); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn--outline { background: rgba(255,255,255,.7); color: var(--navy-900); border: 1.5px solid var(--ink-200); box-shadow: none; }
.btn--outline:hover { border-color: var(--brand-400); background: #fff; color: var(--brand-600); }
.btn--light { background: rgba(255,255,255,.75); color: var(--navy-900); border: 1px solid rgba(14,21,48,.08); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); box-shadow: none; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1da851; color: #fff; }
.btn--sm { padding: 10px 20px; font-size: .9rem; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* HEADER — yüzen pill */
.site-header { position: sticky; top: 0; z-index: 100; padding: 16px 0; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 66px; padding: 0 12px 0 22px; background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(14px); border: 1px solid rgba(255,255,255,.6); border-radius: 50px; box-shadow: 0 10px 30px rgba(14,21,48,.10); max-width: calc(var(--maxw) - 24px); }
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: 32px; width: auto; display: block; filter: brightness(0); }
html.dark .site-logo img { filter: none; }
/* metin amblem (resimsiz logo) */
.brand-word { font-family: var(--f-head); font-weight: 900; font-size: 1.4rem; letter-spacing: -.02em; color: var(--navy-900); display: inline-flex; align-items: baseline; gap: 1px; }
.brand-word .b-accent { color: var(--brand-500); }
.brand-word--light { color: #fff; }
.brand-word--light .b-accent { color: var(--brand-300); }
.loader .brand-word { font-size: 2rem; color: #fff; }
.footer-brand .brand-word { font-size: 1.6rem; margin-bottom: 16px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { display: block; padding: 9px 14px; border-radius: 50px; color: var(--ink-700); font-weight: 600; font-size: .94rem; }
.main-nav a:hover, .main-nav a.active { background: var(--brand-50); color: var(--brand-600); }
.header-cta { white-space: nowrap; display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; color: var(--navy-900); font-size: 1.6rem; cursor: pointer; padding: 4px 8px; }

/* HERO — koyu premium mavi gradyan + gerçek araç fotoğrafı */
.hero { position: relative; color: #fff; padding: clamp(60px,9vw,110px) 0 clamp(48px,7vw,84px); overflow: hidden; text-align: center; margin-top: -98px; padding-top: clamp(150px,18vw,210px);
  background:
    radial-gradient(ellipse 50% 60% at 15% 12%, rgba(41,174,228,.45), transparent 60%),
    radial-gradient(ellipse 55% 65% at 85% 88%, rgba(0,150,214,.40), transparent 62%),
    linear-gradient(165deg, #041a2e 0%, #06314f 45%, #0a4a72 100%); }
.hero__photo { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-size: cover; background-position: center; opacity: .22; mix-blend-mode: luminosity; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,26,46,.4), rgba(4,26,46,.75)); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none; background:
  radial-gradient(ellipse 40% 50% at 12% 18%, rgba(111,208,242,.22), transparent 60%),
  radial-gradient(ellipse 45% 55% at 88% 82%, rgba(41,174,228,.18), transparent 60%); }
.hero__shine { position: absolute; top: -40%; left: -40%; width: 55%; height: 180%; z-index: 0; pointer-events: none; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.07) 50%, transparent 70%); transform: skewX(-18deg); animation: heroShine 7s ease-in-out infinite; }
@keyframes heroShine { 0% { left: -45%; } 55%,100% { left: 130%; } }
.hero .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { background: rgba(255,255,255,.08); border: 1px solid rgba(125,209,241,.35); color: var(--brand-300); padding: 8px 18px; border-radius: 50px; box-shadow: 0 4px 18px rgba(0,0,0,.25); backdrop-filter: blur(6px); }
.hero .eyebrow::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 10px var(--brand-400); }
.hero h1 { color: #fff; max-width: 17ch; margin-bottom: 18px; font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 900; letter-spacing: -.03em; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero p { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto 30px; }
.hero .btn-row { justify-content: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 40px; justify-content: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-badges .badge { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 0; padding: 0; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.85); }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 40px; justify-content: center; }
.hero-stats .stat strong { display: block; font-family: var(--f-head); font-size: 2.3rem; color: var(--brand-300); font-weight: 800; }
.hero-stats .stat span { color: rgba(255,255,255,.6); font-size: .9rem; }

.page-hero { position: relative; background: radial-gradient(ellipse 60% 70% at 85% 0%, rgba(0,150,214,.4), transparent 60%), linear-gradient(160deg, var(--navy-950), var(--navy-700)); color: #fff; padding: clamp(56px,8vw,92px) 0; text-align: center; overflow: hidden; }
.page-hero__photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .2; mix-blend-mode: luminosity; }
.page-hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,23,37,.4), rgba(4,23,37,.7)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: var(--on-dark); max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .86rem; color: var(--on-dark-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--on-dark); } .breadcrumb a:hover { color: #fff; }

/* BRAND MARQUEE — açık */
.marquee { background: #fff; border-bottom: 1px solid var(--ink-200); overflow: hidden; padding: 22px 0; }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--f-head); font-weight: 800; font-size: 1.05rem; color: var(--ink-300); letter-spacing: .06em; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* GRID & SPLIT */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.split__visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split__visual img { width: 100%; }
.split__visual--soft { background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); display: grid; place-items: center; padding: 48px; min-height: 320px; }
.split__visual--soft img { max-width: 220px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.4)); }
/* gerçek fotoğraflı görsel kutusu */
.split__visual--photo { min-height: 380px; background-size: cover; background-position: center; position: relative; }
.split__visual--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,150,214,.12), rgba(6,36,58,.28)); }
.media-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.visual-mono { font-family: var(--f-head); font-weight: 900; font-size: 3.4rem; color: #fff; letter-spacing: -.02em; text-shadow: 0 8px 30px rgba(0,0,0,.4); }
.visual-mono .b-accent { color: var(--brand-300); }

/* ============================================================
   AUTH (Bayi Girişi) + GARANTİ SORGULAMA
   ============================================================ */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card { background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-md); }
.auth-card h2 { margin-bottom: 6px; }
.auth-card .sub { color: var(--ink-600); margin-bottom: 26px; }
.auth-card .form-group { margin-bottom: 16px; }
.auth-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; margin: 4px 0 20px; }
.auth-row a { font-weight: 600; }
.auth-foot { text-align: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--ink-200); color: var(--ink-600); font-size: .95rem; }

.warranty-box { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-md); text-align: center; }
.warranty-box .plate-field { display: flex; gap: 10px; margin: 22px 0 8px; }
.warranty-box .plate-field input { flex: 1; text-align: center; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 1.15rem; padding: 16px; border: 2px solid var(--ink-200); border-radius: var(--radius-sm); }
.warranty-box .plate-field input:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(0,150,214,.16); }
.warranty-result { display: none; margin-top: 24px; text-align: left; border-radius: var(--radius); padding: 22px 24px; border: 1px solid; }
.warranty-result.show { display: block; }
.warranty-result.ok { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.warranty-result.none { background: #fff7ed; border-color: #fed7aa; color: #9a3412; }
.warranty-result h3 { color: inherit; margin-bottom: 6px; }
.warranty-result .row { display: flex; justify-content: space-between; padding: 6px 0; border-top: 1px dashed rgba(0,0,0,.12); font-size: .95rem; }
.warranty-result .row:first-of-type { border-top: 0; }

/* CARDS */
.card, .feature-card, .about-card, .series-card, .product-card, .dealer-card, .info-card, .service-card { background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius); transition: var(--t); }
.feature-card { padding: 30px; box-shadow: var(--shadow-sm); }
.feature-card:hover, .about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.feature-card__icon, .about-card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; }
.feature-card h3, .about-card h3 { margin-bottom: 8px; }
.feature-card p, .about-card p { color: var(--ink-600); margin: 0; font-size: .98rem; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.about-card { padding: 30px; box-shadow: var(--shadow-sm); }
.about-card.gold { background: linear-gradient(160deg, var(--brand-50), #fff); border-color: var(--brand-100); }
.about-card.gold .about-card__icon { background: var(--brand-500); color: #fff; }
.about-card.dark { background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); border-color: transparent; }
.about-card.dark h3 { color: #fff; } .about-card.dark p { color: var(--on-dark); }
.about-card.dark .about-card__icon { background: rgba(255,255,255,.1); color: #fff; }

/* SERVICE CARDS (autopol stili) */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--brand-500), var(--brand-300)); opacity: 0; transition: var(--t); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-600); font-size: .97rem; margin-bottom: 16px; }
.service-card .card-link { font-weight: 700; color: var(--brand-600); font-size: .95rem; }
.service-card .card-link::after { content: " →"; }

.series-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.series-card { padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.series-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.series-card__top { padding: 28px 28px 20px; color: #fff; }
.series-card.king .series-card__top { background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); }
.series-card.prime .series-card__top { background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); }
.series-card.core .series-card__top { background: linear-gradient(160deg, var(--ink-600), var(--navy-800)); }
.series-card__name { font-family: var(--f-head); font-weight: 900; font-size: 1.5rem; }
.series-card__warranty { font-size: .85rem; opacity: .92; font-weight: 600; }
.series-card__body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.series-card__body ul { display: grid; gap: 10px; margin: 0 0 20px; }
.series-card__body li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-600); font-size: .96rem; }
.series-card__body li::before { content: "✓"; color: var(--brand-500); font-weight: 800; }
.series-card .btn { margin-top: auto; width: 100%; }

.feature-list { display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-600); }
.feature-list .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--brand-500); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; margin-top: 2px; }

/* PROCESS STEPS (autopol stili) */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { position: relative; padding: 30px 26px; background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--t); }
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.process-step__num { font-family: var(--f-head); font-weight: 900; font-size: 2.2rem; color: var(--brand-100); line-height: 1; margin-bottom: 14px; }
.process-step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.process-step p { color: var(--ink-600); font-size: .94rem; margin: 0; }
.section--dark .process-step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--dark .process-step h3 { color: #fff; } .section--dark .process-step p { color: var(--on-dark-muted); }
.section--dark .process-step__num { color: var(--brand-400); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.testi-card__stars { color: #f5b301; letter-spacing: 2px; font-size: .95rem; }
.testi-card__text { color: var(--ink-700); font-size: 1rem; flex: 1; }
.testi-card__who { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: .95rem; }
.testi-card__name { font-weight: 700; color: var(--navy-900); font-size: .96rem; }
.testi-card__car { font-size: .85rem; color: var(--ink-500); }

/* PRODUCTS */
.shop-toolbar { margin-bottom: 32px; }
.shop-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: #fff; border: 1.5px solid var(--ink-200); color: var(--ink-700); font-weight: 600; padding: 9px 20px; border-radius: 50px; cursor: pointer; transition: var(--t); font-size: .92rem; font-family: var(--f-body); }
.chip:hover { border-color: var(--brand-400); }
.chip.is-active { background: var(--brand-500); border-color: var(--brand-500); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.product-card { overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.product-card__img { position: relative; aspect-ratio: 4/3; background: var(--ink-100); overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.product-card:hover .product-card__img img { transform: scale(1.05); }
/* fotoğrafsız ürün görseli — gradyan + mono harf */
.product-card__art { position: relative; aspect-ratio: 16/10; display: grid; place-items: center; overflow: hidden; background: linear-gradient(160deg, var(--brand-400), var(--navy-700)); background-size: cover; background-position: center; }
.product-card__art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 25%, rgba(255,255,255,.18), transparent 60%); }
.product-card__art--photo::after { background: linear-gradient(180deg, transparent 45%, rgba(6,36,58,.35)); }
.product-card__art--photo .product-card__mono { display: none; }
.product-card__art--ppf { background: linear-gradient(160deg, #0096d6, #06243a); }
.product-card__art--folyo { background: linear-gradient(160deg, #29aee4, #015d8a); }
.product-card__art--bakim { background: linear-gradient(160deg, #6fd0f2, #0079b3); }
.product-card__art--aksesuar { background: linear-gradient(160deg, #4db3e0, #0a3550); }
.product-card__mono { position: relative; z-index: 1; font-family: var(--f-head); font-weight: 900; font-size: 3rem; color: rgba(255,255,255,.9); text-shadow: 0 4px 20px rgba(0,0,0,.3); }
.product-card__badge { position: absolute; top: 12px; left: 12px; background: var(--brand-500); color: #fff; font-family: var(--f-head); font-weight: 800; font-size: .72rem; padding: 5px 11px; border-radius: 50px; letter-spacing: .03em; }
.product-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-600); background: var(--brand-50); padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-card p { color: var(--ink-600); font-size: .9rem; margin-bottom: 16px; flex: 1; }
.product-card .btn { margin-top: auto; }

/* DEALERS */
.dealer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dealer-card { padding: 22px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: center; }
.dealer-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand-300); }
.dealer__logo { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); display: grid; place-items: center; color: #fff; font-family: var(--f-head); font-weight: 900; font-size: 1.4rem; }
.dealer__info { flex: 1; }
.dealer__name { font-family: var(--f-head); font-weight: 800; color: var(--navy-900); font-size: 1.02rem; }
.dealer__city { font-size: .85rem; color: var(--ink-500); }
.dealer__actions { display: flex; gap: 8px; }

/* FORM */
.dealer-form, .contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; font-size: .93rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--ink-200); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; color: var(--ink-900); transition: var(--t); background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(0,150,214,.16); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .84rem; color: var(--ink-500); }
.form-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 14px 16px; border-radius: var(--radius-sm); display: none; font-weight: 600; }
.form-success.show { display: block; }

.info-card { padding: 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; }
.info-card__icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; font-size: 1.3rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p { margin: 0; color: var(--ink-600); font-size: .95rem; }

.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stats-band .stat strong { display: block; font-family: var(--f-head); font-size: 2.7rem; color: var(--brand-500); font-weight: 800; }
.stats-band .stat span { color: var(--ink-600); font-weight: 600; }
.section--dark .stats-band .stat strong { color: #fff; }
.section--dark .stats-band .stat span { color: var(--on-dark-muted); }

.faq details { background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-sm); margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy-900); list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--f-head); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand-500); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 22px 20px; color: var(--ink-600); margin: 0; }

.trust-row { display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; justify-content: center; }
.trust-row .t-chip { font-weight: 700; color: var(--ink-500); border: 1px dashed var(--ink-300); padding: 9px 18px; border-radius: 50px; font-size: .88rem; }

.cta-band { background: radial-gradient(ellipse 70% 90% at 50% -10%, rgba(0,150,214,.5), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; padding: clamp(48px,7vw,76px) 0; text-align: center; position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark); max-width: 60ch; margin: 12px auto 28px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.prose { max-width: 820px; }
.prose h2 { margin: 32px 0 14px; } .prose h3 { margin: 24px 0 10px; }
.prose p, .prose li { color: var(--ink-600); }
.prose ul { margin: 0 0 18px 20px; list-style: disc; } .prose li { margin-bottom: 8px; }

/* FOOTER */
.site-footer { background: var(--navy-950); color: var(--on-dark-muted); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--f-head); }
.site-footer a { color: var(--on-dark-muted); }
.site-footer a:hover { color: var(--brand-300); }
.site-footer ul { display: grid; gap: 10px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 38ch; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,.07); border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.05rem; transition: var(--t); }
.footer-social a:hover { background: var(--brand-500); color: #fff; transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; font-size: .94rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: var(--t); }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: pulse-ring 1.6s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(.95); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE LOADER (açılış efekti)
   ============================================================ */
.loader { position: fixed; inset: 0; z-index: 9999; background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); display: grid; place-items: center; transition: opacity .6s ease, visibility .6s ease; }
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo { height: 54px; width: auto; filter: drop-shadow(0 8px 24px rgba(0,150,214,.5)); animation: loaderPulse 1.4s ease-in-out infinite; }
.loader__bar { width: 180px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.12); margin: 22px auto 0; overflow: hidden; }
.loader__bar::after { content: ""; display: block; height: 100%; width: 40%; border-radius: 4px; background: var(--grad); animation: loaderBar 1.1s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes loaderBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* ============================================================
   HERO — gelişmiş animasyonlu giriş
   ============================================================ */
.hero--xl { padding-top: clamp(170px,20vw,250px); padding-bottom: clamp(70px,10vw,120px); min-height: 92vh; display: flex; align-items: center; }
.hero__blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.hero__blob.b1 { width: 480px; height: 480px; background: radial-gradient(circle, #0096d6, transparent 70%); top: -120px; left: -80px; animation: float1 14s ease-in-out infinite; }
.hero__blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, #29aee4, transparent 70%); bottom: -140px; right: -60px; animation: float2 18s ease-in-out infinite; }
.hero__blob.b3 { width: 300px; height: 300px; background: radial-gradient(circle, #6fd0f2, transparent 70%); top: 30%; right: 22%; opacity: .35; animation: float3 16s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,-30px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,40px) scale(1.1); } }
.hero__grid-overlay { position: absolute; inset: 0; z-index: 0; opacity: .06; background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 80%); }

/* fade-up giriş animasyonu (loader sonrası tetiklenir) */
.fx { opacity: 0; transform: translateY(28px); }
.is-ready .fx { opacity: 1; transform: translateY(0); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.is-ready .fx-1 { transition-delay: .15s; }
.is-ready .fx-2 { transition-delay: .30s; }
.is-ready .fx-3 { transition-delay: .45s; }
.is-ready .fx-4 { transition-delay: .60s; }
.is-ready .fx-5 { transition-delay: .75s; }

/* dönen kelime (rotating words) */
.rotator { display: inline-grid; vertical-align: bottom; }
.rotator > span { grid-area: 1/1; opacity: 0; transform: translateY(14px); animation: rotword 9s infinite; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rotator > span:nth-child(1) { animation-delay: 0s; }
.rotator > span:nth-child(2) { animation-delay: 3s; }
.rotator > span:nth-child(3) { animation-delay: 6s; }
@keyframes rotword { 0% { opacity: 0; transform: translateY(14px); } 4% { opacity: 1; transform: translateY(0); } 30% { opacity: 1; transform: translateY(0); } 36% { opacity: 0; transform: translateY(-14px); } 100% { opacity: 0; } }

/* sayaç + scroll cue */
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--on-dark-muted); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue::after { content: ""; width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.3); border-radius: 14px; position: relative; }
.scroll-cue .dot { width: 4px; height: 8px; background: var(--brand-400); border-radius: 4px; position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,-8px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,8px); } }

/* hero ana yönlendirme kartları */
.hero-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; width: 100%; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 26px 24px; text-align: left; transition: var(--t); backdrop-filter: blur(10px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.hero-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); border-color: var(--brand-300); box-shadow: 0 24px 48px rgba(0,0,0,.35); }
.hero-card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.hero-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 6px; }
.hero-card p { color: var(--on-dark-muted); font-size: .92rem; margin: 0 0 14px; }
.hero-card .card-link { color: var(--brand-300); font-weight: 700; font-size: .9rem; }
.hero-card .card-link::after { content: " →"; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-featured { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t); }
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured__media { background: linear-gradient(160deg, var(--navy-800), var(--navy-950)); min-height: 320px; position: relative; overflow: hidden; display: grid; place-items: center; }
.blog-featured__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(0,150,214,.4), transparent 70%); }
.blog-featured__media span { position: relative; z-index: 1; font-size: 4rem; }
.blog-featured__body { padding: clamp(28px,4vw,48px); display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body .tag { align-self: flex-start; }
.blog-featured__body h2 { margin: 14px 0 12px; }
.blog-featured__body p { color: var(--ink-600); }

.tag { display: inline-block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--brand-600); background: var(--brand-50); padding: 5px 12px; border-radius: 50px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.blog-card__media { height: 180px; background: linear-gradient(160deg, var(--brand-400), var(--navy-700)); background-size: cover; background-position: center; display: grid; place-items: center; font-size: 2.6rem; position: relative; }
.blog-card__media.alt1 { background: linear-gradient(160deg, #29aee4, #015d8a); }
.blog-card__media.alt2 { background: linear-gradient(160deg, #0096d6, #06243a); }
.blog-card__media.alt3 { background: linear-gradient(160deg, #6fd0f2, #0079b3); }
.blog-card__media[data-photo] { background-size: cover; background-position: center; }
.blog-card__media[data-photo]::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,36,58,.25)); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: .8rem; color: var(--ink-500); margin: 12px 0 0; display: flex; gap: 10px; align-items: center; }
.blog-card h3 { font-size: 1.1rem; margin: 10px 0 8px; line-height: 1.3; }
.blog-card p { color: var(--ink-600); font-size: .94rem; flex: 1; }
.blog-card .card-link { color: var(--brand-600); font-weight: 700; font-size: .9rem; margin-top: 12px; }
.blog-card .card-link::after { content: " →"; }

/* ARTICLE (blog yazısı) */
.article-hero { position: relative; background: linear-gradient(160deg, var(--navy-950), var(--navy-700)); color: #fff; padding: clamp(60px,9vw,110px) 0 clamp(40px,6vw,70px); overflow: hidden; }
.article-hero__photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .22; mix-blend-mode: luminosity; }
.article-hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,23,37,.45), rgba(4,23,37,.78)); }
.article-hero .container { position: relative; z-index: 1; }
.article-hero .tag { background: rgba(255,255,255,.12); color: var(--brand-300); }
.article-hero h1 { color: #fff; max-width: 22ch; margin: 16px 0 14px; }
.article-hero .meta { color: var(--on-dark-muted); font-size: .9rem; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 36px 0 14px; }
.article-body h3 { margin: 26px 0 10px; }
.article-body p, .article-body li { color: var(--ink-700); font-size: 1.05rem; line-height: 1.8; }
.article-body ul { margin: 0 0 20px 22px; list-style: disc; }
.article-body li { margin-bottom: 8px; }
.article-body .lead { font-size: 1.2rem; color: var(--ink-600); }
.article-cta { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--radius); padding: 28px; margin: 36px 0; text-align: center; }

@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .hero-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) { .blog-featured { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr; } .hero--xl { min-height: auto; } }

/* ============================================================
   VIP BAYİLİK PAKETLERİ (premium pricing cards)
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; align-items: stretch; }
.pkg { position: relative; background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.pkg__head { padding: 26px 24px 20px; color: #fff; position: relative; overflow: hidden; }
.pkg__head::after { content: ""; position: absolute; top: -60%; right: -30%; width: 120%; height: 220%; background: radial-gradient(ellipse at center, rgba(255,255,255,.18), transparent 60%); transform: rotate(12deg); }
.pkg__tier { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .85; position: relative; z-index: 1; }
.pkg__name { font-family: var(--f-head); font-weight: 900; font-size: 1.55rem; margin: 4px 0 2px; position: relative; z-index: 1; }
.pkg__stock { font-size: .9rem; opacity: .9; position: relative; z-index: 1; }
.pkg__ad { display: flex; align-items: baseline; gap: 6px; padding: 18px 24px 6px; }
.pkg__ad strong { font-family: var(--f-head); font-weight: 900; font-size: 2rem; color: var(--navy-900); letter-spacing: -.02em; }
.pkg__ad span { font-size: .82rem; color: var(--ink-500); }
.pkg__list { list-style: none; padding: 8px 24px 8px; margin: 0; display: grid; gap: 11px; flex: 1; }
.pkg__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); font-size: .94rem; }
.pkg__list li::before { content: "✓"; flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.pkg__list li.pro::before { background: linear-gradient(135deg, #e9c46a, #d4a017); color: #5a3e00; content: "★"; }
.pkg__foot { padding: 12px 24px 26px; }
.pkg__foot .btn { width: 100%; }

/* Üst başlık renkleri (tier) */
.pkg--mini .pkg__head { background: linear-gradient(135deg, var(--ink-600), var(--navy-800)); }
.pkg--std .pkg__head { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); }
.pkg--plus .pkg__head { background: linear-gradient(135deg, var(--navy-700), var(--navy-950)); }
.pkg--elit .pkg__head { background: linear-gradient(135deg, #1a1a1f 0%, #2b2b33 55%, #4a3c12 100%); }
.pkg--elit .pkg__tier { color: #f0d089; }

/* Öne çıkan / popüler */
.pkg--featured { border: 2px solid transparent; background:
  linear-gradient(#fff,#fff) padding-box,
  linear-gradient(135deg, #e9c46a, var(--brand-500)) border-box;
  transform: scale(1.04); box-shadow: 0 24px 55px rgba(14,21,48,.20); z-index: 2; }
.pkg--featured:hover { transform: scale(1.04) translateY(-8px); }
.pkg__ribbon { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: linear-gradient(135deg, #e9c46a, #d4a017); color: #4a3500; font-size: .68rem; font-weight: 800; letter-spacing: .1em; padding: 5px 44px; box-shadow: 0 4px 12px rgba(0,0,0,.2); z-index: 3; }

/* ELİT kartı — full premium koyu */
.pkg--elit { background: linear-gradient(165deg, #15151a, #1f1f26); border-color: #3a3320; }
.pkg--elit .pkg__ad strong { color: #fff; }
.pkg--elit .pkg__ad span, .pkg--elit .pkg__list li { color: rgba(255,255,255,.78); }
.pkg--elit .pkg__list li::before { background: rgba(240,208,137,.18); color: #f0d089; }
.pkg--elit .pkg__name { color: #fff; }
.pkg--elit:hover { border-color: #f0d089; }

@media (max-width: 1000px) { .pkg-grid { grid-template-columns: repeat(2,1fr); } .pkg--featured { transform: none; } .pkg--featured:hover { transform: translateY(-8px); } }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ============================================================
   YENİ EFEKTLER — tilt, mikro-animasyon, lightbox, wizard, mobil bar
   ============================================================ */

/* 3D Tilt kartlar */
.tilt { transform-style: preserve-3d; will-change: transform; transition: transform .15s ease-out, box-shadow var(--t); }
.tilt__inner { transform: translateZ(30px); }

/* Mikro-animasyon ikonları (hero rozetleri / kartlar) */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulseRing2 { 0% { box-shadow: 0 0 0 0 rgba(0,150,214,.45); } 70% { box-shadow: 0 0 0 14px rgba(0,150,214,0); } 100% { box-shadow: 0 0 0 0 rgba(0,150,214,0); } }
@keyframes dropFall { 0% { transform: translateY(-8px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
.anim-float { animation: floaty 3s ease-in-out infinite; }
.anim-pulse { animation: pulseRing2 2.4s ease-out infinite; }
.service-card:hover .service-card__icon { animation: floaty 1.6s ease-in-out infinite; }
/* hidrofobik su damlası mikro-animasyon (svg drop) */
.hydro { position: relative; display: inline-grid; place-items: center; }
.hydro .drop { position: absolute; width: 6px; height: 8px; background: var(--brand-400); border-radius: 0 50% 50% 50%; transform: rotate(45deg); animation: dropFall 2.2s ease-in infinite; }

/* ---------- GALERİ + LIGHTBOX ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-item { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; cursor: pointer; background-size: cover; background-position: center; box-shadow: var(--shadow-sm); transition: var(--t); }
.gallery-item::after { content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(160deg, rgba(0,150,214,.25), rgba(6,36,58,.55)); opacity: 0; transition: opacity var(--t); font-size: 1.5rem; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item:hover::after { opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(4,14,24,.92); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; animation: lbFade .3s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; transition: var(--t); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--brand-500); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav.prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- ÇOK ADIMLI TEKLİF SİHİRBAZI ---------- */
.wizard { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.wizard__bar { height: 6px; background: var(--ink-100); }
.wizard__bar > span { display: block; height: 100%; width: 33%; background: var(--grad); transition: width .4s ease; }
.wizard__steps { display: flex; justify-content: space-between; padding: 18px 28px 0; font-size: .78rem; font-weight: 700; color: var(--ink-500); }
.wizard__steps span.active { color: var(--brand-600); }
.wizard__body { padding: 22px 28px 28px; }
.wizard__step { display: none; }
.wizard__step.active { display: block; animation: wzIn .35s ease; }
@keyframes wzIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.wizard__q { font-family: var(--f-head); font-weight: 800; font-size: 1.25rem; color: var(--navy-900); margin-bottom: 16px; }
.opt-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.opt { border: 1.5px solid var(--ink-200); border-radius: var(--radius-sm); padding: 16px; cursor: pointer; text-align: center; font-weight: 600; color: var(--ink-700); transition: var(--t); background: #fff; }
.opt:hover { border-color: var(--brand-400); }
.opt.sel { border-color: var(--brand-500); background: var(--brand-50); color: var(--brand-700); box-shadow: 0 0 0 3px rgba(0,150,214,.12); }
.opt .emoji { display: block; font-size: 1.6rem; margin-bottom: 6px; }
.wizard__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; }
.wizard__field { margin-bottom: 14px; }
.wizard__field input, .wizard__field select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--ink-200); border-radius: var(--radius-sm); font: inherit; }
.wizard__field input:focus, .wizard__field select:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(0,150,214,.16); }
.wizard__summary { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 16px; font-size: .95rem; }
.wizard__summary b { color: var(--brand-700); }

/* ---------- STICKY MOBİL AKSİYON ÇUBUĞU ---------- */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar { display: grid; grid-template-columns: repeat(3,1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--ink-200); box-shadow: 0 -6px 20px rgba(14,21,48,.10); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px; font-size: .72rem; font-weight: 700; color: var(--ink-700); }
  .mobile-bar a .ic { font-size: 1.2rem; }
  .mobile-bar a.accent { background: var(--grad); color: #fff; }
  .mobile-bar a.wa { color: #1da851; }
  body { padding-bottom: 62px; }
  .whatsapp-float { bottom: 74px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .opt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }

/* ---------- PROFESYONEL SVG İKONLAR ---------- */
.svg-ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-card__icon .svg-ic, .service-card__icon .svg-ic, .feature-card__icon .svg-ic, .about-card__icon .svg-ic, .hero-card__icon .svg-ic { width: 26px; height: 26px; }
.mobile-bar .svg-ic { width: 20px; height: 20px; }
.footer-social .svg-ic { width: 18px; height: 18px; }
.hero-badges .svg-ic { width: 17px; height: 17px; stroke: var(--brand-300); }
.opt .emoji .svg-ic { width: 30px; height: 30px; stroke: var(--brand-500); stroke-width: 1.6; }
.opt.sel .emoji .svg-ic { stroke: var(--brand-600); }

/* ============================================================
   YENİ BİLEŞENLER — yorumlar, önce/sonra, harita, widget, sertifika
   ============================================================ */

/* ---------- MÜŞTERİ YORUMLARI ---------- */
.reviews-head { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:18px; margin-bottom:34px; }
.gscore { display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--ink-200); border-radius:16px; padding:14px 22px; box-shadow:var(--shadow-sm); }
.gscore__num { font-family:Montserrat,sans-serif; font-weight:900; font-size:2.4rem; line-height:1; color:var(--brand-700); }
.gscore__g { width:26px; height:26px; }
.gscore small { color:var(--ink-500); font-size:.82rem; }
.stars { color:#f5a623; letter-spacing:2px; font-size:1rem; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.review-card { background:#fff; border:1px solid var(--ink-200); border-radius:16px; padding:24px; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s; }
.review-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.review-card .stars { margin-bottom:10px; }
.review-card p { color:var(--ink-700); font-size:.95rem; line-height:1.65; }
.review-card__who { display:flex; align-items:center; gap:12px; margin-top:16px; }
.review-card__av { width:42px; height:42px; border-radius:50%; background:var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-family:Montserrat,sans-serif; }
.review-card__who b { display:block; font-size:.9rem; }
.review-card__who span { color:var(--ink-500); font-size:.78rem; }
.review-verified { color:#1da851; font-size:.72rem; font-weight:700; }
@media (max-width:880px){ .reviews-grid { grid-template-columns:1fr; } }

/* ---------- ÖNCE / SONRA SLIDER ---------- */
.ba-wrap { max-width:920px; margin:0 auto; }
.ba { position:relative; width:100%; aspect-ratio:16/9; border-radius:18px; overflow:hidden; box-shadow:var(--shadow-lg); user-select:none; touch-action:none; cursor:ew-resize; }
.ba__img { position:absolute; inset:0; background-size:cover; background-position:center; }
.ba__after { width:100%; }
.ba__before { width:50%; border-right:3px solid #fff; }
.ba__label { position:absolute; top:14px; padding:5px 12px; border-radius:999px; font-size:.72rem; font-weight:800; letter-spacing:.04em; color:#fff; background:rgba(8,28,46,.7); backdrop-filter:blur(4px); }
.ba__label--before { left:14px; }
.ba__label--after { right:14px; background:rgba(0,150,214,.85); }
.ba__handle { position:absolute; top:0; bottom:0; left:50%; width:44px; transform:translateX(-50%); display:flex; align-items:center; justify-content:center; pointer-events:none; }
.ba__handle::before { content:""; position:absolute; top:0; bottom:0; width:3px; background:#fff; box-shadow:0 0 10px rgba(0,0,0,.3); }
.ba__knob { width:44px; height:44px; border-radius:50%; background:#fff; box-shadow:0 4px 14px rgba(0,0,0,.3); display:flex; align-items:center; justify-content:center; color:var(--brand-600); }
.ba__knob .svg-ic { width:22px; height:22px; }

/* ---------- GÖMÜLÜ HARİTA ---------- */
.map-wrap { border-radius:18px; overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--ink-200); line-height:0; }
.map-wrap iframe { width:100%; height:380px; border:0; display:block; }

/* ---------- WHATSAPP CANLI WIDGET ---------- */
.whatsapp-float { position:fixed; right:22px; bottom:22px; z-index:90; width:60px; height:60px; border-radius:50%; background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.7rem; box-shadow:0 8px 26px rgba(37,211,102,.5); text-decoration:none; transition:transform .25s; }
.whatsapp-float:hover { transform:scale(1.08); }
.whatsapp-float::after { content:""; position:absolute; inset:0; border-radius:50%; background:#25d366; z-index:-1; animation:waPulse 2.2s ease-out infinite; }
@keyframes waPulse { 0%{ transform:scale(1); opacity:.55; } 100%{ transform:scale(1.9); opacity:0; } }
.wa-bubble { position:fixed; right:92px; bottom:30px; z-index:90; background:#fff; color:var(--ink-900); padding:11px 16px; border-radius:14px 14px 4px 14px; box-shadow:var(--shadow-md); font-size:.86rem; font-weight:600; max-width:230px; opacity:0; transform:translateX(12px); pointer-events:none; transition:opacity .4s, transform .4s; }
.wa-bubble.show { opacity:1; transform:translateX(0); pointer-events:auto; }
.wa-bubble b { color:#1da851; }
.wa-bubble__x { position:absolute; top:-8px; right:-8px; width:22px; height:22px; border-radius:50%; background:var(--ink-700); color:#fff; border:none; font-size:.8rem; cursor:pointer; line-height:22px; padding:0; }
@media (max-width:760px){ .wa-bubble { display:none; } }

/* ---------- GARANTİ SERTİFİKASI SONUÇ ---------- */
.cert-card { max-width:560px; margin:24px auto 0; background:#fff; border:1px solid var(--ink-200); border-radius:18px; box-shadow:var(--shadow-md); overflow:hidden; }
.cert-card__top { background:linear-gradient(135deg,#06314f,#0a4a72); color:#fff; padding:22px 26px; display:flex; align-items:center; justify-content:space-between; }
.cert-card__top h3 { color:#fff; margin:0; font-size:1.15rem; }
.cert-badge { background:#1da851; color:#fff; padding:5px 12px; border-radius:999px; font-size:.74rem; font-weight:800; }
.cert-card__body { padding:24px 26px; }
.cert-row { display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px dashed var(--ink-200); font-size:.92rem; }
.cert-row:last-child { border-bottom:none; }
.cert-row span:first-child { color:var(--ink-500); }
.cert-row b { color:var(--ink-900); }

/* ---------- MARKA AÇILIŞ ÖZELLİK ---------- */
.brand-points { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:8px; }
.brand-point { background:#fff; border:1px solid var(--ink-200); border-radius:14px; padding:22px; box-shadow:var(--shadow-sm); }
.brand-point .svg-ic { width:26px; height:26px; color:var(--brand-600); margin-bottom:10px; }
.brand-point h3 { font-size:1rem; margin-bottom:6px; }
.brand-point p { font-size:.9rem; color:var(--ink-600); }
@media (max-width:820px){ .brand-points { grid-template-columns:1fr; } }

/* ---------- SSS ACCORDION (faq-wrap) ---------- */
.faq-wrap { max-width:820px; margin:0 auto; }
.faq-item { background:#fff; border:1px solid var(--ink-200); border-radius:var(--radius-sm); margin-bottom:12px; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq-item summary { cursor:pointer; padding:18px 22px; font-weight:700; color:var(--navy-900); list-style:none; display:flex; justify-content:space-between; align-items:center; gap:14px; font-family:var(--f-head); }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; font-size:1.5rem; color:var(--brand-500); flex:none; }
.faq-item[open] summary::after { content:"–"; }
.faq-item__a { padding:0 22px 20px; }
.faq-item__a p { color:var(--ink-600); margin:0; line-height:1.7; }

/* ---------- YASAL SAYFA + ÇEREZ BANNER ---------- */
.legal-body { max-width:820px; }
.legal-body h2 { margin-top:28px; }
.cookie-banner { position:fixed; left:18px; right:18px; bottom:18px; z-index:120; max-width:540px; margin:0 auto; background:#fff; border:1px solid var(--ink-200); border-radius:16px; box-shadow:0 12px 40px rgba(14,21,48,.22); padding:20px 22px; transform:translateY(140%); transition:transform .5s cubic-bezier(.2,.8,.2,1); }
.cookie-banner.show { transform:translateY(0); }
.cookie-banner h4 { font-size:1rem; margin:0 0 6px; }
.cookie-banner p { font-size:.86rem; color:var(--ink-600); margin:0 0 14px; line-height:1.55; }
.cookie-banner p a { color:var(--brand-600); font-weight:600; }
.cookie-banner__actions { display:flex; gap:10px; flex-wrap:wrap; }
.cookie-banner__actions .btn { flex:1; min-width:130px; }
@media (max-width:760px){ .cookie-banner { bottom:74px; } }

/* ---------- FİYAT HESAPLAMA ARACI ---------- */
.calc { display:grid; grid-template-columns:1.3fr 1fr; gap:28px; max-width:980px; margin:0 auto; }
.calc__form { display:flex; flex-direction:column; gap:22px; }
.calc__field label { display:block; font-weight:800; font-family:var(--f-head); color:var(--navy-900); margin-bottom:10px; font-size:.95rem; }
.calc__opts { display:flex; flex-direction:column; gap:9px; }
.calc__opts button { text-align:left; padding:13px 16px; border:1.5px solid var(--ink-200); border-radius:12px; background:#fff; font:inherit; font-weight:600; color:var(--ink-700); cursor:pointer; transition:all .2s; }
.calc__opts button:hover { border-color:var(--brand-300); }
.calc__opts button.sel { border-color:var(--brand-500); background:var(--brand-50); color:var(--brand-700); box-shadow:0 0 0 3px rgba(0,150,214,.12); }
.calc__result { background:linear-gradient(160deg,#06314f,#0a4a72); color:#fff; border-radius:18px; padding:30px; display:flex; flex-direction:column; justify-content:center; box-shadow:var(--shadow-lg); position:sticky; top:90px; align-self:start; }
.calc__hint { color:#9fc4dd; text-align:center; font-size:.95rem; }
.calc__label { display:block; color:#9fc4dd; font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }
.calc__range { font-family:var(--f-head); font-weight:900; font-size:2rem; color:#fff; line-height:1.15; margin-bottom:14px; }
.calc__note { font-size:.78rem; color:#8fb6d0; margin-bottom:18px; line-height:1.5; }
@media (max-width:820px){ .calc { grid-template-columns:1fr; } .calc__result { position:static; } }

/* ---------- SERİ KARŞILAŞTIRMA TABLOSU ---------- */
.compare-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.compare { width:100%; border-collapse:separate; border-spacing:0; min-width:640px; background:#fff; border:1px solid var(--ink-200); border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); }
.compare th, .compare td { padding:16px 18px; text-align:center; border-bottom:1px solid var(--ink-100); font-size:.92rem; }
.compare thead th { background:var(--navy-900); color:#fff; font-family:var(--f-head); font-size:1rem; }
.compare thead th.feat { background:#06314f; text-align:left; }
.compare th.is-best { background:var(--grad); position:relative; }
.compare tbody th { text-align:left; font-weight:600; color:var(--ink-700); background:var(--brand-50); }
.compare td.yes { color:#1da851; font-weight:800; }
.compare td.no { color:var(--ink-400); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom:none; }
.compare .best-badge { display:inline-block; background:#fff; color:var(--brand-700); font-size:.62rem; font-weight:800; padding:2px 7px; border-radius:999px; margin-left:6px; vertical-align:middle; }
.compare__cta td { background:#fff; padding:18px; }

/* ---------- RENKLİ KAPLAMA (WRAP) STÜDYOSU ---------- */
.wrap-studio { background:linear-gradient(180deg,#f5f9fc 0%,#e8eef4 100%); border:1px solid var(--ink-100); border-radius:24px; padding:34px 26px 30px; }
.wrap-stage { max-width:760px; margin:0 auto; }
.wrap-stage svg { width:100%; height:auto; display:block; }
#carBody, #carGloss { transition:fill .35s ease, opacity .35s ease; }
.wrap-selected { text-align:center; margin:14px auto 0; }
.wrap-selected__label { display:block; font-size:.74rem; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-500); }
.wrap-selected__name { font-family:var(--f-head); font-weight:800; font-size:1.5rem; color:var(--navy-900); margin:2px 0 12px; }
.swatches { display:flex; flex-wrap:wrap; gap:16px 12px; justify-content:center; margin-top:22px; }
.swatch { display:flex; flex-direction:column; align-items:center; gap:8px; width:82px; padding:0; border:none; background:none; font:inherit; cursor:pointer; }
.swatch__dot { width:52px; height:52px; border-radius:50%; border:3px solid #fff; box-shadow:inset 0 -7px 12px rgba(0,0,0,.28), inset 0 5px 8px rgba(255,255,255,.35), 0 4px 10px rgba(14,21,48,.18); outline:1px solid rgba(0,0,0,.08); transition:transform .18s ease; }
.swatch:hover .swatch__dot, .swatch:focus-visible .swatch__dot { transform:scale(1.14); }
.swatch.active .swatch__dot { box-shadow:inset 0 -7px 12px rgba(0,0,0,.28), 0 0 0 3px var(--brand-500), 0 4px 10px rgba(14,21,48,.2); transform:scale(1.1); }
.swatch__name { font-size:.72rem; font-weight:600; color:var(--ink-600); text-align:center; line-height:1.22; }
.swatch.active .swatch__name { color:var(--brand-700); }
.wrap-note { text-align:center; font-size:.78rem; color:var(--ink-500); margin:22px auto 0; max-width:640px; line-height:1.6; }

/* ---------- WRAP STÜDYOSU — GERÇEK FOTOĞRAF ---------- */
.wrap-photo { position:relative; max-width:600px; margin:0 auto; isolation:isolate; }
.wrap-photo img { display:block; width:100%; height:auto; filter:drop-shadow(0 16px 20px rgba(14,21,48,.16)); }
.wrap-photo__tint, .wrap-photo__flat { position:absolute; inset:0; pointer-events:none;
  -webkit-mask:url('../img/tesla.png') center/contain no-repeat; mask:url('../img/tesla.png') center/contain no-repeat;
  -webkit-mask-size:contain; mask-size:contain; }
.wrap-photo__tint { mix-blend-mode:multiply; opacity:1; transition:background .3s ease; }
.wrap-photo__flat { mix-blend-mode:normal; opacity:0; transition:background .3s ease, opacity .3s ease; }

/* wrap maske modu netleştirme */
.wrap-photo__tint, .wrap-photo__flat { -webkit-mask-mode:alpha; mask-mode:alpha; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; }

/* ============================================================
   DEMO GÖRSEL ALANLARINI KALDIR — yalnızca yazı kartları
   (gerçek fotoğraflar sonra eklenecek)
   ============================================================ */
.hero__photo, .page-hero__photo, .article-hero__photo,
.blog-card__media, .blog-featured__media,
.product-card__art, .split__visual { display: none !important; }

/* iki sütunlu düzenleri tek sütuna çevir — boşluk kalmasın */
.blog-featured { grid-template-columns: 1fr !important; }
.split { grid-template-columns: 1fr !important; gap: 20px !important; }

/* yazı kartlarına kurumsal kimlik: ince üst aksan */
.blog-card, .product-card { border-top: 3px solid var(--brand-500); }
.blog-featured { border-top: 4px solid var(--brand-500); }
.blog-featured__body { padding: clamp(26px,4vw,42px) !important; }

/* ---- Kartlarda görsel yerine kompakt marka ikon bandı ---- */
.blog-card__media, .blog-featured__media, .product-card__art {
  display: block !important;
  height: 84px !important;
  aspect-ratio: auto !important;
  min-height: 0 !important;
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='1.4'%20stroke-linecap='round'%20stroke-linejoin='round'%20opacity='0.92'%3E%3Cpath%20d='M12%202%204%205v6c0%205%203.4%208.5%208%2010%204.6-1.5%208-5%208-10V5z'/%3E%3Cpath%20d='m9%2012%202%202%204-4'/%3E%3C/svg%3E") center / 34px no-repeat,
    linear-gradient(135deg,#06314f 0%,#0a4a72 55%,#0096d6 100%) !important;
}
.blog-featured__media { height: 120px !important; }
.product-card__art {
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='1.4'%20stroke-linecap='round'%20stroke-linejoin='round'%20opacity='0.92'%3E%3Crect%20x='2'%20y='3'%20width='20'%20height='18'%20rx='2'/%3E%3Cpath%20d='M7%203v18M17%203v18M2%209h5M2%2015h5M17%209h5M17%2015h5'/%3E%3C/svg%3E") center / 34px no-repeat,
    linear-gradient(135deg,#06314f 0%,#0a4a72 55%,#0096d6 100%) !important;
}
.product-card__art::after, .blog-card__media::after { display: none !important; }
/* rozet konumu korunur */
.product-card__badge { position: absolute; top: 10px; left: 10px; }

/* ---------- VAKA ÇALIŞMALARI ---------- */
.case-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.case-card { background:#fff; border:1px solid var(--ink-200); border-top:3px solid var(--brand-500); border-radius:16px; padding:26px; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s; }
.case-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.case-card h3 { margin:10px 0 16px; }
.case-row { display:grid; grid-template-columns:74px 1fr; gap:12px; padding:10px 0; border-top:1px dashed var(--ink-200); }
.case-row b { color:var(--brand-700); font-size:.8rem; text-transform:uppercase; letter-spacing:.04em; padding-top:2px; }
.case-row p { margin:0; font-size:.93rem; color:var(--ink-700); }
.case-row--result b { color:#1da851; }
.case-row--result p { font-weight:600; }
@media (max-width:820px){ .case-grid { grid-template-columns:1fr; } }

/* ---------- GÜVEN ROZETLERİ / SERTİFİKA ---------- */
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.trust-badge { display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--ink-200); border-radius:14px; padding:20px 22px; box-shadow:var(--shadow-sm); }
.trust-badge__ic { flex:none; width:52px; height:52px; border-radius:12px; background:var(--brand-50); color:var(--brand-600); display:flex; align-items:center; justify-content:center; }
.trust-badge__ic .svg-ic { width:26px; height:26px; }
.trust-badge h3 { font-size:1rem; margin:0 0 3px; }
.trust-badge p { margin:0; font-size:.85rem; color:var(--ink-600); }
@media (max-width:820px){ .trust-grid { grid-template-columns:1fr; } }

/* ---------- EKİP ---------- */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.team-card { text-align:center; background:#fff; border:1px solid var(--ink-200); border-radius:16px; padding:28px 22px; box-shadow:var(--shadow-sm); }
.team-card__av { width:78px; height:78px; border-radius:50%; margin:0 auto 14px; background:var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--f-head); font-weight:800; font-size:1.6rem; }
.team-card h3 { font-size:1.05rem; margin:0 0 3px; }
.team-card .role { color:var(--brand-600); font-size:.85rem; font-weight:600; }
.team-card p { font-size:.88rem; color:var(--ink-600); margin-top:10px; }
@media (max-width:820px){ .team-grid { grid-template-columns:1fr; } }

/* ---------- KAMPANYA BANNER (üst şerit) ---------- */
.promo-bar { background:linear-gradient(90deg,#06314f,#0096d6); color:#fff; font-size:.86rem; font-weight:600; text-align:center; padding:9px 40px 9px 16px; position:relative; }
.promo-bar a { color:#fff; text-decoration:underline; }
.promo-bar b { color:#ffe08a; }
.promo-bar__x { position:absolute; right:12px; top:50%; transform:translateY(-50%); background:transparent; border:none; color:#fff; font-size:1.1rem; cursor:pointer; line-height:1; opacity:.8; }
.promo-bar__x:hover { opacity:1; }
@media (max-width:600px){ .promo-bar { font-size:.76rem; } }

/* ---------- E-BÜLTEN ---------- */
.newsletter { background:linear-gradient(160deg,#06314f,#0a4a72); color:#fff; }
.newsletter .container { padding:44px 20px; text-align:center; }
.newsletter h2 { color:#fff; }
.newsletter p { color:#bcd6e6; max-width:560px; margin:8px auto 20px; }
.newsletter form { display:flex; gap:10px; max-width:480px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.newsletter input { flex:1; min-width:220px; padding:13px 16px; border:none; border-radius:10px; font:inherit; }
.newsletter .form-note { color:#8fb6d0; font-size:.76rem; margin-top:12px; }
.newsletter .ok-msg { display:none; color:#a7f3d0; font-weight:600; margin-top:14px; }

/* ---------- EXIT-INTENT / GENEL MODAL ---------- */
.af-modal { position:fixed; inset:0; z-index:130; background:rgba(6,20,34,.6); display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; visibility:hidden; transition:opacity .3s; }
.af-modal.show { opacity:1; visibility:visible; }
.af-modal__box { background:#fff; border-radius:20px; max-width:440px; width:100%; padding:34px 30px; text-align:center; box-shadow:var(--shadow-lg); transform:translateY(14px); transition:transform .3s; position:relative; }
.af-modal.show .af-modal__box { transform:translateY(0); }
.af-modal__x { position:absolute; top:12px; right:14px; background:none; border:none; font-size:1.3rem; color:var(--ink-500); cursor:pointer; }
.af-modal__box .eyebrow { justify-content:center; }
.af-modal__box h3 { font-size:1.5rem; margin:6px 0 8px; }
.af-modal__box p { color:var(--ink-600); margin-bottom:20px; }
.af-modal__box .btn { width:100%; }

/* ============================================================
   KARANLIK MOD
   ============================================================ */
html.dark {
  --white:#141d28; --ink-900:#eef2f7; --ink-700:#c6cfdb; --ink-600:#9caabd;
  --ink-500:#7f8da0; --ink-300:#3a4757;
  --ink-200:#2a3542; --ink-100:#222c38; --ink-50:#1a232e;
  --shadow-sm:0 1px 3px rgba(0,0,0,.4); --shadow-md:0 10px 30px rgba(0,0,0,.5); --shadow-lg:0 22px 50px rgba(0,0,0,.6);
}
html.dark body { background:#0d141c; color:var(--ink-700); }
html.dark .site-header { background:rgba(13,20,28,.92) !important; border-bottom-color:#222c38; }
html.dark .main-nav a, html.dark .site-logo { color:var(--ink-700); }
html.dark .info-card, html.dark .review-card, html.dark .trust-badge, html.dark .team-card,
html.dark .case-card, html.dark .faq-item, html.dark .blog-card, html.dark .product-card,
html.dark .cert-card, html.dark .contact-form, html.dark .compare, html.dark .gscore,
html.dark .wizard, html.dark .cookie-banner, html.dark .af-modal__box, html.dark .wrap-studio,
html.dark .warranty-box, html.dark .pkg, html.dark .blog-featured { background:#141d28 !important; color:var(--ink-700); }
html.dark .section--soft { background:#0f1720; }
html.dark .compare tbody th, html.dark .faq-item summary { background:#1a232e; color:var(--ink-700); }
html.dark h1, html.dark h2, html.dark h3, html.dark h4 { color:var(--ink-900); }
html.dark .calc__opts button, html.dark .blog-search input, html.dark .newsletter input { background:#1a232e; color:var(--ink-700); border-color:#2a3542; }
html.dark .promo-bar { filter:none; }

.theme-toggle { background:none; border:1.5px solid var(--ink-200); border-radius:10px; width:38px; height:38px; cursor:pointer; color:var(--ink-700); display:inline-flex; align-items:center; justify-content:center; margin-right:6px; flex:none; }
.theme-toggle:hover { border-color:var(--brand-400); color:var(--brand-600); }
.theme-toggle .svg-ic { width:18px; height:18px; }

/* ---------- PAYLAŞIM BUTONLARI ---------- */
.share-row { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin:26px 0; padding:16px 0; border-top:1px solid var(--ink-200); border-bottom:1px solid var(--ink-200); }
.share-row > span { font-weight:700; font-size:.85rem; color:var(--ink-600); }
.share-row a, .share-row button { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:10px; background:var(--brand-50); color:var(--brand-600); border:none; cursor:pointer; text-decoration:none; }
.share-row a:hover, .share-row button:hover { background:var(--brand-500); color:#fff; }
.share-row .svg-ic { width:19px; height:19px; }

/* ---------- BLOG ARAMA ---------- */
.blog-search { max-width:420px; margin:0 auto 22px; position:relative; }
.blog-search input { width:100%; padding:12px 16px 12px 42px; border:1.5px solid var(--ink-200); border-radius:12px; font:inherit; }
.blog-search input:focus { outline:none; border-color:var(--brand-500); box-shadow:0 0 0 3px rgba(0,150,214,.14); }
.blog-search .svg-ic { position:absolute; left:14px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--ink-500); }

/* ============================================================
   SON RÖTUŞLAR — erişilebilirlik & UX
   ============================================================ */
/* İçeriğe atla (erişilebilirlik) */
.skip-link { position:absolute; left:-999px; top:0; z-index:200; background:var(--brand-500); color:#fff; padding:10px 18px; border-radius:0 0 10px 0; font-weight:600; }
.skip-link:focus { left:0; }

/* Yukarı çık butonu */
.to-top { position:fixed; right:22px; bottom:84px; z-index:88; width:46px; height:46px; border-radius:50%; background:var(--navy-900); color:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .3s, transform .25s; box-shadow:var(--shadow-md); }
.to-top.show { opacity:.92; visibility:visible; }
.to-top:hover { opacity:1; transform:translateY(-3px); }
.to-top .svg-ic { width:20px; height:20px; }
@media (max-width:760px){ .to-top { bottom:150px; right:14px; } }

/* Makale okuma ilerleme çubuğu */
.read-progress { position:fixed; top:0; left:0; height:3px; width:0; background:var(--grad); z-index:200; }

/* Baskı (print) — temiz çıktı */
@media print {
  .site-header, .mobile-bar, .whatsapp-float, .to-top, .promo-bar, .newsletter, .cta-band, .cookie-banner, .wa-bubble { display:none !important; }
  body { color:#000; }
  a { text-decoration:underline; }
}

/* ===================== AUTOFOL B2B nav/footer (afx) — 2026-07 ===================== */
.afx-hdr{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.94);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid #e5edf3}
.afx-hin{display:flex;align-items:center;gap:22px;height:68px}
.afx-logo{font-family:Montserrat,sans-serif;font-weight:900;font-size:22px;letter-spacing:.02em;color:#06243a;text-decoration:none}
.afx-logo i{color:var(--brand-500,#0096d6);font-style:normal}
.afx-nav{display:flex;gap:21px;flex:1;margin-left:6px}
.afx-nav a{font-size:14.5px;font-weight:600;color:#33505f;text-decoration:none;position:relative;padding:6px 0;white-space:nowrap}
.afx-nav a:hover{color:var(--brand-600,#0079b3)}
.afx-nav a::after{content:"";position:absolute;left:0;right:100%;bottom:-1px;height:2px;background:var(--brand-500,#0096d6);transition:.2s}
.afx-nav a:hover::after{right:0}
.afx-hcta{display:flex;align-items:center;gap:10px;margin-left:auto}
.afx-btn{display:inline-flex;align-items:center;gap:7px;font-weight:700;border-radius:10px;font-size:14px;padding:10px 17px;border:1.5px solid transparent;cursor:pointer;transition:.18s;white-space:nowrap;line-height:1;text-decoration:none}
.afx-btn--primary{background:var(--grad,linear-gradient(120deg,#0096d6,#29aee4));color:#fff;box-shadow:0 8px 18px -9px rgba(0,150,214,.75)}
.afx-btn--primary:hover{filter:brightness(1.06)}
.afx-btn--ghost{border-color:#cfe0ea;color:#0a3550}
.afx-btn--ghost:hover{border-color:var(--brand-500,#0096d6);color:var(--brand-600,#0079b3)}
.afx-tog{display:none;font-size:23px;background:none;border:0;color:#06243a;cursor:pointer;line-height:1}
.afx-trust{background:var(--navy-900,#06243a)}
.afx-trust-in{display:flex;flex-wrap:wrap;justify-content:center;gap:14px 38px;padding:18px 0}
.afx-ti{display:flex;align-items:center;gap:11px}
.afx-ti b{display:block;font-size:14px;color:#fff;line-height:1.2}
.afx-ti small{color:#8fb2c6;font-size:12px}
.afx-tic{width:34px;height:34px;border-radius:9px;background:var(--grad,linear-gradient(120deg,#0096d6,#29aee4));display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.afx-tic svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.afx-ft{background:var(--navy-950,#041725);color:#9fb4c2;padding:52px 0 24px;font-size:14px}
.afx-fg{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.35fr;gap:32px}
.afx-ft h4{color:#fff;font-size:12.5px;letter-spacing:.09em;text-transform:uppercase;margin:0 0 15px}
.afx-ft ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:9px}
.afx-ft a{color:#9fb4c2;text-decoration:none;transition:.15s}.afx-ft a:hover{color:var(--brand-300,#7dd1f1)}
.afx-flogo{font-family:Montserrat,sans-serif;font-weight:900;font-size:23px;color:#fff;margin-bottom:12px}
.afx-flogo i{color:var(--brand-400,#38b6e8);font-style:normal}
.afx-fblurb{line-height:1.65;max-width:300px;margin:0 0 16px;font-size:13.5px;color:#8ea6b6}
.afx-fsoc{display:flex;gap:9px}
.afx-fsoc a{width:36px;height:36px;border:1px solid #16334a;border-radius:9px;display:flex;align-items:center;justify-content:center;color:#9fb4c2}
.afx-fsoc a:hover{border-color:var(--brand-500,#0096d6);color:#fff;background:#0a2537}
.afx-fsoc svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}
.afx-fcontact li{list-style:none;line-height:1.5;margin-bottom:8px;font-size:13.5px}
.afx-fcta{margin-bottom:14px}
.afx-fbot{border-top:1px solid #123047;margin-top:38px;padding-top:20px;display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px;font-size:12.5px;color:#6f899b}
.afx-fbot a{color:#6f899b;text-decoration:none}.afx-fbot a:hover{color:var(--brand-300,#7dd1f1)}
@media(max-width:900px){
  .afx-nav{display:none}.afx-tog{display:block}.afx-btn--ghost{display:none}.afx-hin{gap:12px}
  .afx-hdr.open .afx-nav{display:flex;flex-direction:column;position:absolute;top:68px;left:0;right:0;background:#fff;padding:16px 22px;gap:16px;border-bottom:1px solid #e5edf3;box-shadow:0 14px 26px -14px rgba(6,36,58,.3);z-index:60}
  .afx-fg{grid-template-columns:1fr 1fr}
}
@media(max-width:520px){.afx-fg{grid-template-columns:1fr}}

/* ==== AUTOFOL B2B home extras (afx) ==== */
.afx-narrow{max-width:820px}
.afx-pkg{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch}
.afx-pk{position:relative;display:flex;flex-direction:column;background:#fff;border:1px solid #e2ecf3;border-radius:18px;padding:26px 22px;box-shadow:0 14px 34px -26px rgba(6,49,79,.5)}
.afx-pk h3{margin:0 0 2px;font-size:19px;color:#06243a}
.afx-pk-sub{margin:0 0 16px;font-size:13px;color:#6a8298}
.afx-pk ul{list-style:none;margin:0 0 20px;padding:0;display:flex;flex-direction:column;gap:10px;flex:1}
.afx-pk li{position:relative;padding-left:24px;font-size:14px;color:#3a5566;line-height:1.4}
.afx-pk li::before{content:"";position:absolute;left:0;top:4px;width:15px;height:15px;border-radius:50%;background:var(--brand-500,#0096d6);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m9 16.2-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m9 16.2-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat}
.afx-pk .btn{width:100%;justify-content:center;text-align:center}
.afx-pk--feat{border-color:var(--brand-500,#0096d6);box-shadow:0 22px 44px -22px rgba(0,150,214,.6);transform:translateY(-6px)}
.afx-pk-badge{position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:var(--grad,linear-gradient(120deg,#0096d6,#29aee4));color:#fff;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:5px 14px;border-radius:999px;white-space:nowrap}
.afx-vids{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.afx-vid{position:relative;aspect-ratio:16/9;border-radius:14px;background:linear-gradient(135deg,#06314f,#0a4a72 60%,#0096d6);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;color:#fff;overflow:hidden}
.afx-vid::after{content:"";position:absolute;inset:0;background:repeating-linear-gradient(45deg,rgba(255,255,255,.04) 0 12px,transparent 12px 24px)}
.afx-vplay{width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.16);border:1.5px solid rgba(255,255,255,.5);display:flex;align-items:center;justify-content:center;font-size:18px;padding-left:3px;position:relative;z-index:1}
.afx-vlabel{font-size:13px;font-weight:600;opacity:.92;position:relative;z-index:1}
.afx-faq details{border:1px solid #e2ecf3;border-radius:12px;margin-bottom:10px;background:#fff;overflow:hidden}
.afx-faq summary{padding:15px 18px;font-weight:600;color:#06243a;cursor:pointer;list-style:none;position:relative;font-size:15px}
.afx-faq summary::-webkit-details-marker{display:none}
.afx-faq summary::after{content:"+";position:absolute;right:18px;top:50%;transform:translateY(-50%);font-size:20px;color:var(--brand-500,#0096d6);font-weight:400}
.afx-faq details[open] summary::after{content:"–"}
.afx-faq details>div{padding:0 18px 16px;color:#4a6072;font-size:14px;line-height:1.6}
.afx-faq a{color:var(--brand-600,#0079b3);font-weight:600}
@media(max-width:820px){.afx-pkg,.afx-vids{grid-template-columns:1fr}.afx-pk--feat{transform:none}}

/* afx logo görsel */
.afx-logo{display:inline-flex;align-items:center;line-height:0}
.afx-logo img{height:46px;width:auto;display:block}
.afx-flogo img{height:44px;width:auto;display:block;margin-bottom:12px}
@media(max-width:900px){.afx-logo img{height:40px}}

/* afx menü dropdown + rebrand */
.afx-nd{position:relative;display:inline-flex;align-items:center}
.afx-nd>.afx-nd-t::after{content:"▾";font-size:10px;margin-left:5px;opacity:.65}
.afx-sub{position:absolute;top:100%;left:0;min-width:198px;background:#fff;border:1px solid #e5edf3;border-radius:12px;box-shadow:0 16px 34px -16px rgba(6,36,58,.35);padding:8px;display:none;flex-direction:column;gap:2px;z-index:70}
.afx-nd:hover .afx-sub{display:flex}
.afx-sub a{padding:9px 12px;border-radius:8px;font-size:14px;font-weight:600;color:#33505f;white-space:nowrap;position:static}
.afx-sub a::after{display:none}
.afx-sub a:hover{background:#eef7fb;color:var(--brand-600,#0079b3)}
@media(max-width:900px){
  .afx-hdr.open .afx-nd{flex-direction:column;align-items:flex-start;width:100%}
  .afx-hdr.open .afx-nd>.afx-nd-t::after{display:none}
  .afx-hdr.open .afx-sub{position:static;display:flex;border:none;box-shadow:none;padding:4px 0 4px 14px;min-width:0}
}

/* batch revize 2 */
.afx-nav{flex:0 1 auto;margin-left:auto}
.afx-flogo img{height:57px}
.loader{display:none!important}
.article-hero,.blog-card__media{display:none!important}

/* PPF sayfası */
.ppf-series{background:#fff;border:1px solid #e4edf3;border-radius:18px;overflow:hidden;margin-bottom:26px;box-shadow:0 16px 38px -28px rgba(6,49,79,.5)}
.ppf-banner{display:block;width:100%;height:auto}
.ppf-body{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:18px;padding:22px 26px}
.ppf-body h3{margin:4px 0 8px;font-size:22px;color:#06243a}
.ppf-body p{color:#54636f;line-height:1.6;margin:0 0 12px;max-width:660px}
.ppf-tags{display:flex;flex-wrap:wrap;gap:8px}
.ppf-tags span{background:#eef7fb;color:#0079b3;border:1px solid #d6ebf5;border-radius:999px;padding:5px 12px;font-size:12.5px;font-weight:700}
@media(max-width:700px){.ppf-body{flex-direction:column;align-items:flex-start}}
