:root {
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --ink: #0B1220;
    --ink-2: #334155;
    --muted: #64748B;
    --line: #E2E8F0;
    --brand: #A855F7;
    --brand-600: #9333EA;
    --brand-700: #7E22CE;
    --brand-900: #581C87;
    --accent: #F59E0B;
    --accent-600: #D97706;
    --success: #10B981;
    --wa: #25D366;
    --wa-dark: #128C7E;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.18), 0 4px 10px -4px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 25px 60px -15px rgba(147, 51, 234, 0.35);
    --container: 1160px;
  }
 
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.15; letter-spacing: -0.02em; }
  h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
  h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
  h3 { font-size: 1.2rem; font-weight: 700; }
  p { margin: 0 0 1em; color: var(--ink-2); }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    color: var(--brand-700); background: #E0F2FE; padding: 6px 12px; border-radius: 999px;
  }
  .eyebrow .dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; box-shadow: 0 0 0 3px rgba(14,165,233,.25); }
 
  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 22px; border-radius: 12px; font-weight: 700;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
    color: #1F1300;
    box-shadow: 0 12px 30px -10px rgba(245, 158, 11, .5);
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 40px -12px rgba(245, 158, 11, .6); }
  .btn-wa {
    background: var(--wa); color: #fff;
    box-shadow: 0 10px 25px -10px rgba(37, 211, 102, .6);
  }
  .btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
  .btn-ghost {
    background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
  }
  .btn-ghost:hover { background: rgba(255,255,255,.18); }
  .btn-dark {
    background: var(--ink); color: #fff;
  }
  .btn-dark:hover { background: #1e293b; }
 
  /* Header */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
  }
  .logo {
    display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.01em;
  }
  .logo .mark {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 8px 20px -8px rgba(14,165,233,.6);
  }
  .logo .mark svg { width: 20px; height: 20px; }
  .logo .name { font-size: 1.05rem; }
  .logo .name small { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; }
  nav.links { display: flex; align-items: center; gap: 26px; }
  nav.links a { font-weight: 600; font-size: .95rem; color: var(--ink-2); }
  nav.links a:hover { color: var(--brand-700); }
  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .tel-inline { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: .95rem; }
  .tel-inline svg { width: 16px; height: 16px; color: var(--brand); }
  @media (max-width: 900px) {
    nav.links { display: none; }
    .tel-inline { display: none; }
    .hide-sm { display: none !important; }
    /* Mobil: hemen ara butonu göster */
    .mob-call-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: linear-gradient(135deg, var(--accent), var(--accent-600));
      color: #1F1300; font-weight: 700; font-size: .88rem;
      padding: 9px 14px; border-radius: 10px;
      box-shadow: 0 6px 18px -6px rgba(245,158,11,.5);
    }
  }
  @media (min-width: 901px) {
    .mob-call-btn { display: none; }
  }

  /* ══ Hamburger Bars ══ */
  .menu-toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px; padding: 8px;
    border-radius: 10px; background: transparent;
    border: 1.5px solid var(--line); cursor: pointer;
    transition: background .15s;
  }
  .menu-toggle:hover { background: #F1F5F9; }
  .menu-toggle .bar {
    display: block; height: 2px; border-radius: 2px;
    background: var(--ink); transition: all .25s ease;
  }
  .menu-toggle .bar:nth-child(1) { width: 20px; }
  .menu-toggle .bar:nth-child(2) { width: 16px; }
  .menu-toggle .bar:nth-child(3) { width: 20px; }
  .menu-toggle.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; }
  .menu-toggle.is-open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }
  @media (max-width: 900px) { .menu-toggle { display: flex; } }

  /* ══ Drawer Overlay ══ */
  .drawer-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(11, 18, 32, 0.55);
    backdrop-filter: blur(4px);
    animation: fadeIn .25s ease;
  }
  .drawer-overlay.is-open { display: block; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* ══ Drawer Panel ══ */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 210;
    width: min(320px, 88vw);
    background: #fff;
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .drawer.is-open { transform: translateX(0); }

  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid var(--line);
  }
  .drawer-head img { height: 38px; width: auto; }
  .drawer-close {
    width: 36px; height: 36px; border-radius: 8px; border: 0;
    background: #F1F5F9; color: var(--ink); display: grid; place-items: center;
    cursor: pointer; transition: background .15s;
  }
  .drawer-close:hover { background: #E2E8F0; }
  .drawer-close svg { width: 18px; height: 18px; }

  .drawer-nav {
    display: flex; flex-direction: column; padding: 12px 0; flex: 1;
  }
  .drawer-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 15px 22px; font-weight: 600; font-size: 1rem;
    color: var(--ink); border-bottom: 1px solid #F1F5F9;
    transition: background .15s, color .15s;
  }
  .drawer-nav a svg { color: var(--brand); flex-shrink: 0; }
  .drawer-nav a:hover { background: #F8FAFC; color: var(--brand-700); }

  .drawer-cta {
    padding: 20px; display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid var(--line);
  }

  .drawer-hours {
    text-align: center; color: var(--muted); font-size: .85rem;
    padding: 0 20px 20px; margin: 0;
  }

 
  /* Hero */
  .hero {
    position: relative; overflow: hidden; color: #fff;
    background:
      linear-gradient(160deg, rgba(88, 28, 135, 0.85) 0%, rgba(126, 34, 206, 0.85) 50%, rgba(147, 51, 234, 0.9) 100%),
      url('./images/sxaas.jpg') center/cover no-repeat;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, black, transparent 80%);
  }
  .hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
    padding: 70px 0 90px;
  }
  @media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; padding: 50px 0 70px; gap: 36px; } }
  .hero h1 { color: #fff; }
  .hero h1 .hl { background: linear-gradient(90deg, #FDE68A, #F59E0B); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero p.lede {
    color: #E0F2FE; font-size: 1.1rem; max-width: 560px;
  }
  .hero .eyebrow { background: rgba(255,255,255,.14); color: #BAE6FD; border: 1px solid rgba(255,255,255,.18); }
  .hero .eyebrow .dot { background: #FDE68A; box-shadow: 0 0 0 3px rgba(253, 230, 138, .25); }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
  .hero-trust {
    display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap;
    color: #BAE6FD; font-size: .92rem;
  }
  .hero-trust .t { display: flex; align-items: center; gap: 8px; }
  .hero-trust svg { width: 18px; height: 18px; color: #86EFAC; }
  .hero-card {
    position: relative;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(6px);
  }
  .hero-card h3 { color: #fff; }
  .hero-card .tag {
    position: absolute; top: -14px; left: 24px;
    background: var(--accent); color: #1F1300; font-weight: 800;
    padding: 6px 14px; border-radius: 999px; font-size: .85rem;
    box-shadow: 0 10px 20px -8px rgba(245, 158, 11, .6);
  }
  .quick-form { display: grid; gap: 12px; }
  .quick-form label { font-size: .85rem; font-weight: 600; color: #BAE6FD; }
  .quick-form input, .quick-form select {
    width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08); color: #fff; font-family: inherit; font-size: .95rem;
    outline: none;
  }
  .quick-form input::placeholder { color: #BAE6FD; opacity: .7; }
  .quick-form input:focus, .quick-form select:focus { border-color: var(--accent); background: rgba(255,255,255,.12); }
  .quick-form select option { color: #0B1220; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
  .form-note { font-size: .8rem; color: #BAE6FD; opacity: .8; margin-top: 4px; }
 
  .wave {
    display: block; width: 100%; height: 60px; margin-top: -1px;
  }
 
  /* Trust strip */
  .trust-strip {
    background: #fff; border-bottom: 1px solid var(--line);
  }
  .trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 26px 0;
  }
  .trust-grid .cell {
    display: flex; gap: 14px; align-items: center; padding: 8px 14px;
    border-right: 1px dashed var(--line);
  }
  .trust-grid .cell:last-child { border-right: 0; }
  .trust-grid .num { font-size: 1.6rem; font-weight: 800; color: var(--brand-700); }
  .trust-grid .lbl { color: var(--muted); font-size: .9rem; font-weight: 500; }
  @media (max-width: 820px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid .cell:nth-child(2) { border-right: 0; }
    .trust-grid .cell { padding: 12px; }
  }
 
  /* Sections */
  section.sec { padding: 90px 0; }
  @media (max-width: 720px) { section.sec { padding: 64px 0; } }
  .sec-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
  .sec-head p { color: var(--muted); font-size: 1.05rem; }
 
  /* Problem */
  .problem {
    background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
  }
  .problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  @media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }
  .problem-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow-sm);
    display: flex; gap: 16px; align-items: flex-start;
  }
  .problem-card .icn {
    flex: 0 0 44px; width: 44px; height: 44px; border-radius: 10px;
    background: #FEF3C7; color: #B45309;
    display: grid; place-items: center;
  }
  .problem-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
  .problem-card p { margin: 0; font-size: .95rem; }
 
  /* Services */
  .services { background: #fff; }
  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc {
    position: relative; padding: 28px;
    border-radius: var(--radius); background: #F8FAFC;
    border: 1px solid var(--line);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #BAE6FD; background: #fff; }
  .svc .badge {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: var(--brand-700);
    display: grid; place-items: center; margin-bottom: 16px;
  }
  .svc h3 { margin-bottom: 6px; }
  .svc p { font-size: .95rem; margin: 0; }
  .svc .price {
    margin-top: 16px; font-weight: 700; color: var(--brand-700); font-size: .95rem;
  }
  .svc .price em { font-style: normal; color: var(--muted); font-weight: 500; font-size: .85rem; }
  .svc-cta {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px; font-weight: 700; font-size: .88rem;
    color: var(--brand-700); border-bottom: 2px solid rgba(168,85,247,.25);
    transition: color .15s, border-color .15s;
  }
  .svc-cta:hover { color: var(--brand-600); border-color: var(--brand); }
 
  /* Process */
  .process {
    background: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 100%);
  }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
  .step {
    background: #fff; border-radius: var(--radius); padding: 24px;
    position: relative; box-shadow: var(--shadow-sm);
  }
  .step::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: -18px; left: 20px;
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
    color: #fff; display: grid; place-items: center;
    font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 8px 18px -8px rgba(14,165,233,.6);
  }
  .step h3 { margin-top: 18px; font-size: 1.05rem; }
  .step p { font-size: .9rem; margin: 0; }
 
  /* Benefits / Why us */
  .why { background: #fff; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
  .why ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
  .why li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px; border: 1px solid var(--line); border-radius: 12px;
    background: #F8FAFC;
  }
  .why li .chk {
    flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%;
    background: var(--success); color: #fff; display: grid; place-items: center;
  }
  .why li .chk svg { width: 16px; height: 16px; }
  .why li h4 { margin: 0 0 2px; font-size: 1rem; }
  .why li p { margin: 0; font-size: .9rem; color: var(--ink-2); }
  .why .media {
    position: relative;
    border-radius: var(--radius-lg);
    background:
      linear-gradient(160deg, rgba(88, 28, 135, 0.4), rgba(126, 34, 206, 0.6)),
      url('./images/D1.jpg') center/cover no-repeat;
    min-height: 420px;
    padding: 28px; color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .why .media h3 { color: #fff; font-size: 1.4rem; }
  .why .media p { color: #BAE6FD; }
  .float-card {
    position: absolute;
    background: #fff; color: var(--ink);
    border-radius: 14px; padding: 14px 16px;
    box-shadow: var(--shadow-md);
    display: flex; gap: 12px; align-items: center;
  }
  .float-card .circle {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #FDE68A, var(--accent));
    display: grid; place-items: center; color: #1F1300;
  }
  .float-card .t { font-weight: 700; font-size: .9rem; }
  .float-card .s { font-size: .78rem; color: var(--muted); }
  .fc-1 { bottom: 20px; left: 20px; }
  .fc-2 { top: 100px; right: 20px; }
  .fc-3 { bottom: 160px; right: 60px; }
 
  /* Before/After */
  .ba { background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%); }
  .ba-wrap {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 16 / 9; max-width: 900px; margin: 0 auto;
    box-shadow: var(--shadow-md);
    user-select: none;
  }
  .ba-side { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 1.1rem; letter-spacing: .05em; }
  .ba-before { background: url('./images/IMG-20230422-WA0012.jpg') center/cover no-repeat; }
  .ba-before::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(0,0,0,0.1);
  }
  .ba-after { background: url('./images/IMG-20230422-WA0013.jpg') center/cover no-repeat; clip-path: inset(0 0 0 50%); transition: clip-path .05s linear; }
  .ba-after::after {
    content: ""; position: absolute; inset: 0;
    background: transparent;
  }
  .ba-label {
    position: absolute; top: 16px; padding: 6px 12px; border-radius: 999px;
    background: rgba(0,0,0,.55); color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .05em;
    z-index: 2; backdrop-filter: blur(6px);
  }
  .ba-label.left { left: 16px; }
  .ba-label.right { right: 16px; }
  .ba-slider {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 4px; background: #fff; cursor: ew-resize; z-index: 3;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
  }
  .ba-handle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; display: grid; place-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
    color: var(--brand-700);
  }
  .ba-handle svg { width: 24px; height: 24px; }
  .ba-hint { text-align: center; margin-top: 14px; color: var(--muted); font-size: .9rem; }
 
  /* Testimonials */
  .tests { background: #fff; }
  .tests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 900px) { .tests-grid { grid-template-columns: 1fr; } }
  .test {
    background: #F8FAFC; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px; display: flex; flex-direction: column; gap: 14px;
  }
  .test .stars { color: #F59E0B; font-size: 1.05rem; letter-spacing: 2px; }
  .test p.quote { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.6; }
  .test .who { display: flex; gap: 12px; align-items: center; margin-top: auto; }
  .test .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; font-weight: 800;
  }
  .test .who .name { font-weight: 700; font-size: .95rem; }
  .test .who .loc { color: var(--muted); font-size: .82rem; }
  .tests-cta { margin-top: 36px; text-align: center; }
  .tests-cta .google {
    display: inline-flex; gap: 10px; align-items: center; padding: 12px 18px;
    border: 1px solid var(--line); border-radius: 999px; background: #fff;
    font-weight: 600; color: var(--ink-2);
  }
 
  /* Pricing */
  .pricing { background: linear-gradient(180deg, #F0F9FF, #fff); }
  .price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .price-grid { grid-template-columns: 1fr; } }
  .price-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px; text-align: center; position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #BAE6FD; }
  .price-card.featured {
    border: 2px solid var(--brand); box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, #fff, #F0F9FF);
  }
  .price-card .pill {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff; font-size: .75rem; font-weight: 700;
    padding: 4px 12px; border-radius: 999px; letter-spacing: .05em;
  }
  .price-card h3 { font-size: 1rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
  .price-card .price {
    display: flex; align-items: baseline; justify-content: center; gap: 4px; margin: 8px 0;
  }
  .price-card .price .from { color: var(--muted); font-size: .8rem; font-weight: 600; }
  .price-card .price .amt { font-size: 2rem; font-weight: 800; color: var(--ink); }
  .price-card .price .cur { font-size: 1.1rem; font-weight: 700; color: var(--ink-2); }
  .price-card ul { list-style: none; padding: 0; margin: 16px 0; text-align: left; }
  .price-card ul li { padding: 6px 0; display: flex; gap: 8px; align-items: center; font-size: .9rem; color: var(--ink-2); }
  .price-card ul li::before { content: "✓"; color: var(--success); font-weight: 800; }
  .price-card .btn { width: 100%; }
  .price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 20px; }
 
  /* Guarantee */
  .guarantee {
    background: #fff;
  }
  .guar-card {
    max-width: 820px; margin: 0 auto; text-align: center;
    border: 2px dashed #F59E0B; border-radius: var(--radius-lg);
    padding: 40px 28px; background: linear-gradient(180deg, #FFFBEB, #fff);
    position: relative;
  }
  .guar-card .stamp {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg, #FDE68A, var(--accent));
    color: #78350F; display: grid; place-items: center; margin: -65px auto 14px;
    font-weight: 800; text-align: center; font-size: .8rem;
    box-shadow: 0 20px 40px -10px rgba(245,158,11,.5);
    transform: rotate(-6deg);
    border: 3px solid #fff;
  }
  .guar-card h2 { margin-bottom: 8px; }
  .guar-card p { max-width: 600px; margin: 0 auto 14px; color: var(--ink-2); }
 
  /* FAQ */
  .faq { background: linear-gradient(180deg, #fff, #F8FAFC); }
  .faq-wrap { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
  details.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 4px 20px;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  details.faq-item[open] { border-color: #BAE6FD; box-shadow: var(--shadow-sm); }
  details.faq-item summary {
    cursor: pointer; list-style: none; padding: 16px 0;
    font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: "+"; font-weight: 400; font-size: 1.6rem; color: var(--brand-700);
    transition: transform .2s ease;
    line-height: 1;
  }
  details.faq-item[open] summary::after { content: "−"; }
  details.faq-item .a { padding: 0 0 16px; color: var(--ink-2); }
 
  /* Service area */
  .area { background: #fff; }
  .area-wrap {
    background: linear-gradient(135deg, #581C87, #7E22CE); color: #fff;
    border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden;
  }
  .area-wrap::before {
    content: ""; position: absolute; top: -50px; right: -50px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,.3), transparent 70%);
  }
  .area-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center;
    position: relative; z-index: 1;
  }
  @media (max-width: 820px) { .area-grid { grid-template-columns: 1fr; } .area-wrap { padding: 32px 24px; } }
  .area h2 { color: #fff; }
  .area p { color: #BAE6FD; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .chip {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    padding: 6px 12px; border-radius: 999px; font-size: .85rem; color: #E0F2FE;
    backdrop-filter: blur(4px);
  }
 
  /* Final CTA */
  .final {
    background: linear-gradient(135deg, #581C87 0%, #9333EA 100%);
    color: #fff; position: relative; overflow: hidden;
  }
  .final::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 80% 50%, rgba(245,158,11,.25), transparent 60%);
  }
  .final-inner { position: relative; z-index: 1; text-align: center; padding: 80px 20px; }
  .final h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
  .final p { color: #BAE6FD; font-size: 1.1rem; max-width: 600px; margin: 0 auto 28px; }
  .final .final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
 
  /* Footer */
  footer.site {
    background: #0B1220; color: #CBD5E1; padding: 50px 0 24px;
  }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  @media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
  footer h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { padding: 4px 0; font-size: .92rem; }
  footer a:hover { color: var(--brand); }
  .foot-contact { display: flex; flex-direction: column; gap: 8px; }
  .foot-contact .row { display: flex; gap: 10px; align-items: center; font-size: .92rem; }
  .foot-contact svg { width: 16px; height: 16px; color: var(--brand); flex: 0 0 16px; }
  .copy {
    border-top: 1px solid #1e293b; margin-top: 36px; padding-top: 20px;
    display: flex; justify-content: space-between; gap: 12px; color: #64748B; font-size: .85rem;
    flex-wrap: wrap;
  }
 
  .fab {
    position: fixed; right: 20px; bottom: 30px; z-index: 100;
    display: flex; flex-direction: column; align-items: flex-end; gap: 20px;
  }
  .fab a {
    display: block;
    transition: transform .15s ease;
  }
  .fab a:hover { transform: translateY(-2px) scale(1.04); }
  .fab .wa { background: var(--wa); animation: pulse 2.4s ease-in-out infinite; }
  .fab .wa-img {
    width: 180px;
    display: block;
    box-shadow: none;
    transition: transform .15s ease;
    background: transparent; padding: 0;
  }
  .fab .wa-img img { width: 180px; height: auto; display: block; }
  .fab .wa-img:hover { transform: translateY(-2px) scale(1.04); }
  .fab .call {
    background: var(--brand);
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 16px 30px -10px rgba(0,0,0,.35);
  }
  .fab svg { width: 26px; height: 26px; }
  @media (max-width: 600px) {
    .fab {
      bottom: 16px;
      right: 16px;
      flex-direction: column;
      gap: 53px;
    }
    .fab .wa-img { width: 140px; }
    .fab .wa-img img { width: 140px; }
    .fab .call {
      position: fixed;
      left: 16px;
      bottom: 16px;
      right: auto;
      width: 52px; height: 52px;
    }
    .fab svg { width: 22px; height: 22px; }
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 16px 30px -10px rgba(0,0,0,.35); }
    50% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 16px 30px -10px rgba(0,0,0,.35); }
  }
 
  /* Utils */
  .center { text-align: center; }
  .hide-sm { display: inline; }
  @media (max-width: 520px) { .hide-sm { display: none; } }

  /* Mobile Adjustments */
  @media (max-width: 900px) {
    .menu-toggle { display: flex; }
    nav.links {
      display: none; flex-direction: column; width: 100%; position: absolute;
      top: 100%; left: 0; background: #fff; padding: 16px 24px;
      border-bottom: 1px solid var(--line); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
      gap: 0; align-items: flex-start; z-index: 100;
    }
    nav.links.is-open { display: flex; animation: slideDown 0.2s ease-out forwards; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
    nav.links a { width: 100%; padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid #f1f5f9; }
    nav.links a:last-child { border-bottom: 0; }
    .tel-inline span.label { display: none; }
  }

  @media (max-width: 600px) {
    /* Header layout */
    header.site { padding: 4px 0; }
    .logo img { height: 48px !important; }
    .tel-inline { display: none !important; } /* Hide phone icon in header on mobile */
    .menu-toggle { margin-left: auto; } /* Push menu toggle to the right */

    /* Hero section */
    .hero { padding-top: 32px; padding-bottom: 40px; }
    .hero h1 { font-size: 2rem !important; line-height: 1.2; margin-bottom: 16px; }
    .hero .lede { font-size: 1rem !important; margin-bottom: 24px; line-height: 1.5; }
    
    /* Buttons in Hero */
    .hero-cta { flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }
    
    /* Trust markers */
    .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; margin-top: 24px; }
    .hero-trust .t { font-size: 0.9rem; }

    /* Form card */
    .hero-card { margin-top: 32px; padding: 24px; }

   /* FAB floating buttons */
    .fab { bottom: 16px; right: 16px; flex-direction: column; gap: 50px; }
    .fab a { width: 50px; height: 50px; }
    .fab svg { width: 22px; height: 22px; }
  }
