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

    :root {
      --red: #C8102E;
      --red-dark: #a00d24;
      --red-light: #fdeaed;
      --red-mid: #e8324e;
      --gray-900: #1a1a1a;
      --gray-800: #2d2d2d;
      --gray-700: #444;
      --gray-500: #777;
      --gray-200: #e8e8e8;
      --gray-100: #f4f4f4;
      --gray-50: #f9f9f9;
      --white: #ffffff;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* ──── HEADER ──── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
      transition: box-shadow .3s;
    }
    header.scrolled { box-shadow: var(--shadow-md); }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .logo-mark {
      width: 36px; height: 36px;
      background: var(--red);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-mark svg { width: 20px; height: 20px; fill: white; }
    .logo-text { line-height: 1.2; }
    .logo-text .brand { font-size: 15px; font-weight: 600; color: var(--gray-900); letter-spacing: -.3px; }
    .logo-text .sub { font-size: 11px; color: var(--red); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }

    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-700);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      transition: color .2s, background .2s;
    }
    nav a:hover { color: var(--gray-900); background: var(--gray-100); }

    /* ── ÜRÜN SEÇ DROPDOWN ── */
    .nav-dd { position: relative; }
    .nav-dd-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--red); color: #fff;
      border: none; border-radius: 50px;
      padding: 8px 16px; font-size: 14px; font-weight: 700;
      cursor: pointer; font-family: inherit;
      transition: background .15s;
    }
    .nav-dd-btn:hover { background: var(--red-dark); }
    .nav-dd-btn .chevron { width: 13px; height: 13px; transition: transform .2s; }
    .nav-dd:hover .chevron, .nav-dd.open .chevron { transform: rotate(180deg); }
    .nav-dd-menu {
      position: absolute; top: calc(100% + 10px); right: 0;
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: 16px; box-shadow: 0 12px 36px rgba(0,0,0,.13);
      padding: 8px; min-width: 270px;
      opacity: 0; visibility: hidden; transform: translateY(8px);
      transition: all .2s; z-index: 500;
    }
    .nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .nav-dd-item {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 13px; border-radius: 10px;
      text-decoration: none; transition: background .15s;
    }
    .nav-dd-item:hover { background: var(--gray-50); }
    .nav-dd-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--gray-100);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .nav-dd-item:hover .nav-dd-icon { background: #fff0f2; }
    .nav-dd-label { font-size: 13px; font-weight: 700; color: var(--gray-900); }
    .nav-dd-desc  { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
    .nav-dd-sep   { height: 1px; background: var(--gray-100); margin: 4px 8px; }

    .header-cta {
      background: var(--red);
      color: white;
      font-size: 13px;
      font-weight: 600;
      padding: 9px 18px;
      border-radius: 50px;
      display: flex; align-items: center; gap: 6px;
      transition: background .2s, transform .15s;
      flex-shrink: 0;
    }
    .header-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
    .header-cta svg { width: 15px; height: 15px; fill: white; }

    .menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: var(--gray-800);
    }
    .menu-btn svg { width: 22px; height: 22px; }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: white;
      border-bottom: 1px solid var(--gray-200);
      padding: 12px 24px 20px;
      flex-direction: column;
      gap: 4px;
      z-index: 99;
      box-shadow: var(--shadow-md);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-800);
      padding: 11px 14px;
      border-radius: var(--radius-sm);
      transition: background .15s;
    }
    .mobile-nav a:hover { background: var(--gray-100); }
    .mobile-nav .mobile-wa {
      margin-top: 8px;
      background: #25D366;
      color: white;
      display: flex; align-items: center; gap: 8px;
      justify-content: center;
      font-weight: 600;
      border-radius: 50px;
      padding: 13px 20px;
    }


    /* ──── KAMPANYALAR ──── */
    #kampanyalar { padding: 96px 0; background: var(--gray-50); }
    .kamp-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .kamp-header { text-align: center; margin-bottom: 52px; }
    .kamp-label { display: inline-block; background: #fff3cd; color: #92400e; font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 5px 14px; border-radius: 50px; border: 1px solid #fde68a; margin-bottom: 14px; }
    .kamp-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4vw, 42px); color: var(--gray-900); margin-bottom: 12px; }
    .kamp-sub { font-size: 16px; color: var(--gray-500); max-width: 480px; margin: 0 auto; }

    .kamp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .kamp-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-sm);
      transition: transform .2s, box-shadow .2s;
      display: flex; flex-direction: column;
    }
    .kamp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .kamp-img-wrap {
      position: relative;
      background: var(--gray-100);
      aspect-ratio: 4/5;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .kamp-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .kamp-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--red); color: #fff;
      font-size: 12px; font-weight: 700;
      padding: 4px 12px; border-radius: 50px;
    }

    .kamp-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
    .kamp-cat { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: .06em; text-transform: uppercase; }
    .kamp-name { font-size: 17px; font-weight: 700; color: var(--gray-900); line-height: 1.3; }
    .kamp-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; flex: 1; }

    .kamp-price-row { display: flex; align-items: flex-end; gap: 10px; margin-top: 4px; }
    .kamp-price-old { font-size: 14px; color: var(--gray-500); text-decoration: line-through; }
    .kamp-price-new { font-size: 24px; font-weight: 700; color: var(--gray-900); line-height: 1; }
    .kamp-price-note { font-size: 11px; color: var(--gray-500); }

    .kamp-cta {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: #25D366; color: #fff;
      font-size: 14px; font-weight: 700;
      padding: 13px; border-radius: 50px;
      margin-top: 14px;
      transition: background .15s, transform .1s;
    }
    .kamp-cta:hover { background: #1ea855; transform: scale(1.02); }
    .kamp-cta svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

    .kamp-footer { text-align: center; margin-top: 44px; }
    .kamp-footer p { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }

    /* placeholder görsel */
    .kamp-placeholder { width: 80px; height: 80px; opacity: .25; }

    @media (max-width: 900px) { .kamp-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 580px) {
      #kampanyalar { padding: 64px 0; }
      .kamp-grid { grid-template-columns: 1fr; gap: 16px; }
    }

    /* ──── TRUST güncelleme ──── */
    .trust-header-row { text-align: center; margin-bottom: 52px; }
    .trust-label { display: inline-block; background: var(--red-light); color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
    .trust-title { font-family: 'DM Serif Display', serif; font-size: clamp(26px, 3.5vw, 38px); color: var(--gray-900); margin-bottom: 12px; }
    .trust-desc { font-size: 16px; color: var(--gray-500); max-width: 460px; margin: 0 auto; }

    .trust-badge-row {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center; margin-top: 44px;
      padding-top: 36px; border-top: 1px solid var(--gray-200);
    }
    .trust-badge-item {
      display: flex; align-items: center; gap: 8px;
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: 50px; padding: 8px 16px;
      font-size: 13px; font-weight: 500; color: var(--gray-700);
    }
    .trust-badge-item svg { color: var(--red); flex-shrink: 0; }


    /* ──── FAQ ──── */
    #faq { padding: 96px 0; background: #fff; }
    .faq-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
    .faq-header { text-align: center; margin-bottom: 52px; }
    .faq-label { display: inline-block; background: #f0fdf4; color: #166534; font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 5px 14px; border-radius: 50px; border: 1px solid #bbf7d0; margin-bottom: 14px; }
    .faq-title { font-family: 'DM Serif Display', serif; font-size: clamp(26px, 3.5vw, 38px); color: var(--gray-900); margin-bottom: 12px; }
    .faq-sub { font-size: 15px; color: var(--gray-500); }

    .faq-list { display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open { border-color: var(--red); }

    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      user-select: none;
      background: #fff;
    }
    .faq-item.open .faq-q { background: #fff9f9; }

    .faq-q-text {
      font-size: 15px; font-weight: 600; color: var(--gray-900); line-height: 1.4;
    }
    .faq-item.open .faq-q-text { color: var(--red); }

    .faq-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      border-radius: 50%;
      background: var(--gray-100);
      display: flex; align-items: center; justify-content: center;
      transition: transform .25s, background .2s;
    }
    .faq-item.open .faq-icon { background: var(--red); transform: rotate(45deg); }
    .faq-icon svg { width: 14px; height: 14px; stroke: var(--gray-500); }
    .faq-item.open .faq-icon svg { stroke: #fff; }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s ease;
      padding: 0 24px;
      font-size: 14px; line-height: 1.8; color: var(--gray-500);
    }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
    .faq-a a { color: var(--red); font-weight: 600; }

    .faq-cta-row {
      margin-top: 44px; text-align: center;
      padding: 32px; background: var(--gray-50);
      border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    }
    .faq-cta-row p { font-size: 15px; color: var(--gray-700); margin-bottom: 16px; font-weight: 500; }

    @media (max-width: 600px) {
      #faq { padding: 64px 0; }
      .faq-q { padding: 16px 18px; }
      .faq-q-text { font-size: 14px; }
      .faq-a { font-size: 13px; }
      .faq-item.open .faq-a { padding: 0 18px 18px; }
    }


    /* ──── ARAÇLAR ──── */
    #araclar { padding: 80px 0; background: var(--gray-900); }
    .arac-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .arac-header { text-align: center; margin-bottom: 44px; }
    .arac-label { display: inline-block; background: rgba(200,16,46,.2); border: 1px solid rgba(200,16,46,.4); color: #fca5a5; font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
    .arac-title { font-family: 'DM Serif Display', serif; font-size: clamp(24px, 3.5vw, 36px); color: #fff; margin-bottom: 10px; }
    .arac-sub { color: rgba(255,255,255,.55); font-size: 15px; }

    .arac-card {
      background: rgba(255,255,255,.07);
      border: 1.5px solid rgba(255,255,255,.15);
      border-radius: var(--radius-xl);
      padding: 36px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 32px;
      transition: border-color .2s, background .2s;
      text-decoration: none;
    }
    .arac-card:hover { border-color: var(--red); background: rgba(200,16,46,.08); }
    .arac-card-icon { font-size: 44px; margin-bottom: 16px; }
    .arac-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .arac-card p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 500px; }
    .arac-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
    .arac-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,.1); }
    .arac-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-size: 15px; font-weight: 700; padding: 16px 28px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; transition: background .15s, transform .1s; }
    .arac-btn:hover, .arac-card:hover .arac-btn { background: #a50d26; transform: scale(1.03); }

    @media (max-width: 640px) {
      .arac-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
      .arac-btn { width: 100%; justify-content: center; }
    }


    /* ──── BLOG ──── */
    #blog-preview { padding: 80px 0; background: var(--gray-50); }
    .blog-prev-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .blog-prev-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 16px; }
    .blog-prev-head h2 { font-family: 'DM Serif Display', serif; font-size: clamp(24px,3.5vw,36px); color: var(--gray-900); }
    .blog-prev-head p { font-size: 14px; color: var(--gray-500); margin-top: 6px; }
    .blog-all-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
    .blog-all-link:hover { text-decoration: underline; }

    .blog-prev-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }

    .bp-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; text-decoration: none; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
    .bp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .bp-card-img { display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; background: var(--dark); }
    .bp-card:first-child .bp-card-img { height: 200px; font-size: 64px; }
    .bp-card:not(:first-child) .bp-card-img { height: 130px; }
    .bp-card-img .hot { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
    .bp-card-body { padding: 20px; flex: 1; }
    .bp-cat { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
    .bp-title { font-size: 15px; font-weight: 700; color: var(--gray-900); line-height: 1.35; margin-bottom: 8px; }
    .bp-card:first-child .bp-title { font-size: 18px; }
    .bp-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
    .bp-meta { font-size: 11px; color: var(--gray-400); }

    @media(max-width:900px) { .blog-prev-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:560px) {
      #blog-preview { padding: 56px 0; }
      .blog-prev-grid { grid-template-columns: 1fr; }
      .blog-prev-head { flex-direction: column; align-items: flex-start; }
    }


    /* ──── HİZMET BÖLGELERİ ──── */
    #hizmet-bolgeleri { padding: 80px 0; background: var(--dark); }
    .hb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .hb-header { text-align: center; margin-bottom: 48px; }
    .hb-label { display: inline-block; background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.3); color: #f87171; font-size: 12px; font-weight: 700; letter-spacing: .07em; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
    .hb-title { font-family: 'DM Serif Display', serif; font-size: clamp(26px, 3.5vw, 38px); color: #fff; margin-bottom: 10px; }
    .hb-sub { color: rgba(255,255,255,.45); font-size: 15px; }

    .hb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

    .hb-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-xl);
      padding: 28px 24px;
      text-decoration: none;
      transition: all .2s;
      display: flex; flex-direction: column; gap: 12px;
    }
    .hb-card:hover {
      background: rgba(200,16,46,.1);
      border-color: rgba(200,16,46,.4);
      transform: translateY(-4px);
    }
    .hb-card-icon { font-size: 32px; }
    .hb-card-name { font-size: 18px; font-weight: 700; color: #fff; }
    .hb-card-tag { display: inline-block; background: rgba(200,16,46,.2); color: #fca5a5; font-size: 10px; font-weight: 700; letter-spacing: .05em; padding: 3px 10px; border-radius: 50px; width: fit-content; }
    .hb-card-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; flex: 1; }
    .hb-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--red); margin-top: 4px; }
    .hb-card-link svg { width: 12px; height: 12px; }

    @media (max-width: 900px) { .hb-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) {
      #hizmet-bolgeleri { padding: 56px 0; }
      .hb-grid { grid-template-columns: 1fr; gap: 12px; }
    }

    /* ──── HERO ──── */
    #hero {
      padding-top: 64px;
      min-height: 100svh;
      display: flex;
      align-items: center;
      background: var(--gray-900);
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #1a0508 100%);
    }

    .hero-grid-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,16,46,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,16,46,0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }

    .hero-accent {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
      right: -100px; top: -100px;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,16,46,0.15);
      border: 1px solid rgba(200,16,46,0.3);
      color: #f8a3b0;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .7px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.1;
      color: white;
      letter-spacing: -.5px;
      margin-bottom: 20px;
    }
    .hero-title em {
      font-style: italic;
      color: #f8a3b0;
    }

    .hero-desc {
      font-size: 17px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 460px;
    }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: white;
      font-weight: 600;
      font-size: 15px;
      padding: 14px 24px;
      border-radius: 50px;
      transition: background .2s, transform .15s;
    }
    .btn-wa:hover { background: #1ea855; transform: translateY(-2px); }
    .btn-wa svg { width: 18px; height: 18px; fill: white; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.85);
      font-weight: 500;
      font-size: 15px;
      padding: 14px 24px;
      border-radius: 50px;
      transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .showroom-frame {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .showroom-img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .showroom-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,5,8,0.7) 0%, transparent 50%);
    }

    .showroom-tag {
      position: absolute;
      bottom: 20px; left: 20px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      color: white;
    }
    .showroom-tag .label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .5px; }
    .showroom-tag .val { font-size: 14px; font-weight: 600; margin-top: 2px; }

    .floating-badge {
      position: absolute;
      top: -16px; right: -16px;
      background: var(--red);
      color: white;
      border-radius: var(--radius-md);
      padding: 14px 18px;
      box-shadow: 0 8px 24px rgba(200,16,46,0.35);
      text-align: center;
      animation: float 4s ease-in-out infinite;
    }
    .floating-badge .num { font-family: 'DM Serif Display', serif; font-size: 28px; line-height: 1; }
    .floating-badge .txt { font-size: 11px; font-weight: 500; opacity: .85; margin-top: 2px; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ──── SECTION COMMON ──── */
    section { padding: 96px 24px; }
    .container { max-width: 1200px; margin: 0 auto; }

    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.15;
      color: var(--gray-900);
      letter-spacing: -.3px;
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 560px;
    }

    /* ──── TRUST ──── */
    #trust { background: var(--gray-50); }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .trust-card {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: transform .2s, box-shadow .2s;
    }
    .trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .trust-icon {
      width: 48px; height: 48px;
      background: var(--red-light);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .trust-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    .trust-card h3 { font-size: 16px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
    .trust-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

    /* ──── PRODUCTS ──── */
    #urunler { background: white; }

    .products-header { margin-bottom: 56px; }
    .products-header .section-desc { max-width: 480px; }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .product-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
      background: white;
      display: flex; flex-direction: column;
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .product-card:hover .product-img-wrap img { transform: scale(1.04); }

    .product-img-wrap {
      height: 220px;
      overflow: hidden;
      background: var(--gray-100);
    }
    .product-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      transition: transform .4s ease;
    }

    .product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .product-cat { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
    .product-body h3 { font-size: 17px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
    .product-body p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 18px; flex: 1; }

    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--red);
      color: white;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 50px;
      transition: background .2s, transform .15s;
      width: fit-content;
    }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
    .btn-red svg { width: 14px; height: 14px; fill: white; }

    /* ──── WHY ──── */
    #neden { background: var(--gray-900); padding: 96px 24px; }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-left .section-label { color: #f8a3b0; }
    .why-left .section-title { color: white; }
    .why-left .section-desc { color: rgba(255,255,255,0.55); }

    .why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; }

    .why-num {
      flex-shrink: 0;
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(200,16,46,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: #f8a3b0;
    }

    .why-item h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 4px; }
    .why-item p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    .why-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .why-stat {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 24px 20px;
      transition: border-color .2s;
    }
    .why-stat:hover { border-color: rgba(200,16,46,0.3); }
    .why-stat.span2 { grid-column: span 2; }
    .why-stat .big { font-family: 'DM Serif Display', serif; font-size: 36px; color: white; line-height: 1; margin-bottom: 4px; }
    .why-stat .big em { color: var(--red-mid); font-style: normal; }
    .why-stat .txt { font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ──── OFFER FORM ──── */
    #teklif { background: var(--red-light); }

    .offer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .offer-left .section-label { color: var(--red); }
    .offer-left .section-title { max-width: 380px; }
    .offer-left .section-desc { font-size: 16px; }

    .offer-form {
      background: white;
      border-radius: var(--radius-xl);
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
    }

    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--gray-900);
      background: var(--gray-50);
      outline: none;
      transition: border-color .2s;
    }
    .form-group input:focus,
    .form-group select:focus { border-color: var(--red); background: white; }
    .form-group select { cursor: pointer; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    .btn-wa-full {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      background: #25D366;
      color: white;
      font-weight: 700;
      font-size: 15px;
      padding: 15px;
      border-radius: 50px;
      margin-top: 8px;
      transition: background .2s, transform .15s;
    }
    .btn-wa-full:hover { background: #1ea855; transform: translateY(-1px); }
    .btn-wa-full svg { width: 18px; height: 18px; fill: white; }
    .form-note { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 10px; }

    /* ──── BRANCHES ──── */
    #subeler { background: white; }

    .branches-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 56px;
    }

    .branch-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .branch-header {
      background: var(--gray-900);
      padding: 28px 28px 24px;
      position: relative;
      overflow: hidden;
    }
    .branch-header::after {
      content: '';
      position: absolute;
      right: -40px; top: -40px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(200,16,46,0.12);
    }

    .branch-tag {
      display: inline-block;
      background: var(--red);
      color: white;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .6px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .branch-name { font-family: 'DM Serif Display', serif; font-size: 26px; color: white; }

    .branch-body { padding: 24px 28px; }
    .branch-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .branch-info-row { display: flex; align-items: flex-start; gap: 10px; }
    .branch-info-row svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--gray-500); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
    .branch-info-row span { font-size: 14px; color: var(--gray-600, #555); line-height: 1.5; }

    .branch-btns { display: flex; gap: 10px; }
    .btn-map {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      border: 1.5px solid var(--gray-200);
      color: var(--gray-700);
      font-size: 13px;
      font-weight: 600;
      padding: 11px 16px;
      border-radius: 50px;
      transition: border-color .2s, background .2s;
    }
    .btn-map:hover { border-color: var(--gray-800); background: var(--gray-100); }
    .btn-map svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .btn-wa-sm {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      background: #25D366;
      color: white;
      font-size: 13px;
      font-weight: 600;
      padding: 11px 16px;
      border-radius: 50px;
      transition: background .2s;
    }
    .btn-wa-sm:hover { background: #1ea855; }
    .btn-wa-sm svg { width: 14px; height: 14px; fill: white; }

    /* ──── SUPPORT ──── */
    #destek { background: var(--gray-50); }

    .support-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .support-header { text-align: center; margin-bottom: 64px; }
    .support-header .section-desc { margin: 0 auto; }

    .support-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }

    .support-steps::before {
      content: '';
      position: absolute;
      top: 56px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 6px, transparent 6px, transparent 12px);
    }

    .step-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 32px;
    }

    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--red);
      color: white;
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 16px rgba(200,16,46,0.3);
    }

    .step-card h3 { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 10px; }
    .step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

    /* ──── INSTAGRAM ──── */
    #instagram { background: white; }

    .insta-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .insta-visual {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .insta-tile {
      aspect-ratio: 1;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--gray-100);
      position: relative;
    }
    .insta-tile img { width: 100%; height: 100%; object-fit: cover; }
    .insta-tile .hover-overlay {
      position: absolute;
      inset: 0;
      background: rgba(200,16,46,0.5);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity .2s;
    }
    .insta-tile:hover .hover-overlay { opacity: 1; }
    .insta-tile .hover-overlay svg { width: 24px; height: 24px; fill: white; }

    .insta-right .section-title { max-width: 360px; }
    .btn-insta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
      color: white;
      font-size: 14px;
      font-weight: 600;
      padding: 13px 24px;
      border-radius: 50px;
      transition: opacity .2s, transform .15s;
    }
    .btn-insta:hover { opacity: .9; transform: translateY(-1px); }
    .btn-insta svg { width: 16px; height: 16px; fill: white; }

    /* ──── FOOTER ──── */
    footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.6);
      padding: 64px 24px 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 32px;
    }

    .footer-brand .logo-mark { width: 44px; height: 44px; }
    .footer-brand .brand { font-size: 17px; color: white; }
    .footer-brand .sub { font-size: 12px; }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 14px; max-width: 280px; }

    .footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
    .footer-col a, .footer-col span {
      display: block;
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      transition: color .2s;
      line-height: 1.5;
    }
    .footer-col a:hover { color: white; }

    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 13px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.07);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .social-btn:hover { background: rgba(255,255,255,0.15); }
    .social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }

    

    /* ──── RESPONSIVE ──── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { display: none; }
      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .why-visual { display: none; }
      .offer-inner { grid-template-columns: 1fr; gap: 40px; }
      .insta-inner { grid-template-columns: 1fr; gap: 40px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 768px) {
      .branch-header { height: 200px !important; }
      .branch-header img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
      section { padding: 72px 20px; }
      nav { display: none; }
      .header-cta { display: none; }
      .menu-btn { display: block; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .branches-grid { grid-template-columns: 1fr; }
      .support-steps { grid-template-columns: 1fr; gap: 32px; }
      .support-steps::before { display: none; }
      .insta-visual { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      }

    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; }
      .btn-wa, .btn-outline { justify-content: center; }
      .trust-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .branch-btns { flex-direction: column; }
    }