/* Anilox Temizlik — Ana CSS v2.0.0 */

  :root {
    --ink: #0a0f1a;
    --steel: #151e2d;
    --mid: #1e2d42;
    --accent: #e8a000;
    --accent-hover: #ffb733;
    --accent-soft: rgba(232,160,0,0.12);
    --accent-border: rgba(232,160,0,0.25);
    --light: #f0f4fa;
    --white: #ffffff;
    --text-muted: #7a8ea8;
    --text-soft: rgba(255,255,255,0.62);
    --text-faint: rgba(255,255,255,0.38);
    --border: rgba(255,255,255,0.07);
    --wa: #25d366;
    --section-alt: #0f1825;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--accent);
    text-align: center;
    padding: 9px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #1a0d00;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,15,26,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 68px; gap: 16px;
  }
  .logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 900;
    letter-spacing: .04em; color: var(--white);
    text-decoration: none; white-space: nowrap;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 24px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none; font-size: 13px; font-weight: 500;
    letter-spacing: .03em; transition: color .2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-right { display: flex; align-items: center; gap: 12px; }

  /* Language switcher */
  .lang-switcher { display: flex; gap: 4px; }
  .lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.45);
    padding: 5px 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: .06em;
    cursor: pointer; border-radius: 3px; transition: all .2s;
  }
  .lang-btn:hover, .lang-btn.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
  }

  .nav-cta {
    background: var(--accent); color: #1a0d00;
    border: none; padding: 10px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: .06em;
    cursor: pointer; border-radius: 3px; transition: background .2s;
    text-decoration: none; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--accent-hover); }

  /* ── HERO ── */
  .hero {
    min-height: 90vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 80px 40px 80px 80px; gap: 60px;
    background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(212,146,26,.07) 0%, transparent 70%),
                linear-gradient(160deg, var(--ink) 0%, var(--steel) 100%);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent); padding: 6px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 600; letter-spacing: .07em; margin-bottom: 24px;
  }
  .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 900; line-height: 1.0;
    letter-spacing: -.01em; margin-bottom: 8px;
  }
  .hero h1 em { font-style: normal; color: var(--accent); display: block; }
  .hero-sub {
    font-size: 16px; color: var(--text-soft);
    font-weight: 400; line-height: 1.7;
    margin: 20px 0 36px; max-width: 480px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn-primary {
    background: var(--accent); color: #1a0d00;
    padding: 15px 32px; border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700; letter-spacing: .06em;
    text-decoration: none; transition: all .2s;
    box-shadow: 0 4px 20px rgba(212,146,26,.25);
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,146,26,.35);
  }
  .btn-secondary {
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white); padding: 15px 32px; border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 600; letter-spacing: .06em;
    text-decoration: none; transition: all .2s; display: inline-block;
  }
  .btn-secondary:hover {
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.05);
  }
  .hero-stats { display: flex; gap: 32px; margin-top: 48px; }
  .stat { border-left: 2px solid var(--accent); padding-left: 16px; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900; color: var(--white); line-height: 1;
  }
  .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: .04em; }
  .hero-visual { position: relative; display: flex; flex-direction: column; gap: 16px; }
  .compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--steel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 80px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .trust-label { font-size: 12px; color: var(--text-muted); letter-spacing: .08em; white-space: nowrap; }
  .trust-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
  .trust-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.25); letter-spacing: .1em; }

  /* ── SECTIONS ── */
  section { padding: 96px 80px; }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; color: var(--accent); margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900; line-height: 1.05; margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px; color: var(--text-soft);
    font-weight: 400; line-height: 1.75;
    max-width: 560px; margin-bottom: 52px;
  }

  /* ── SERVICES ── */
  .services { background: var(--section-alt); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card {
    background: var(--steel); padding: 48px 36px;
    border: 1px solid var(--border);
    transition: all .3s; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s;
  }
  .service-card:hover { background: var(--mid); transform: translateY(-3px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px; border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
  }
  .service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
  .service-card p { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.75; }
  .service-tag {
    display: inline-block; margin-top: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: .08em;
    color: var(--accent); background: var(--accent-soft);
    padding: 4px 10px; border-radius: 2px;
  }

  /* ── WHY ── */
  .why { background: var(--steel); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-points { display: flex; flex-direction: column; gap: 16px; }
  .why-point {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 18px 20px; background: rgba(255,255,255,.025);
    border: 1px solid var(--border); border-radius: 6px; transition: border-color .2s;
  }
  .why-point:hover { border-color: var(--accent-border); }
  .why-point-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--accent-soft); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
  }
  .why-point-body h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
  .why-point-body p { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.65; }
  .big-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 120px; font-weight: 900; line-height: 1;
    color: rgba(212,146,26,.08); letter-spacing: -.04em; margin-bottom: -20px;
  }
  .why-text-block p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 16px; }

  /* ── PROCESS ── */
  .process { background: var(--ink); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 27px; left: 80px; right: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  .step { padding: 0 20px 0 0; }
  .step-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
    color: var(--accent); background: var(--ink);
    width: 56px; height: 56px; border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; position: relative; z-index: 1;
  }
  .step h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .step p { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.7; }

  /* ── COMPARISON ── */
  .comparison { background: var(--steel); }
  .comp-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
  .comp-table th { padding: 20px 24px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .06em; }
  .comp-table th:first-child { text-align: left; }
  .comp-table th.highlight { background: rgba(212,146,26,.15); color: var(--accent); }
  .comp-table th:not(:first-child):not(.highlight) { color: rgba(255,255,255,.35); background: rgba(255,255,255,.02); }
  .comp-table td { padding: 16px 24px; font-size: 14px; border-top: 1px solid rgba(255,255,255,.04); text-align: center; color: rgba(255,255,255,.55); }
  .comp-table td:first-child { text-align: left; color: white; font-weight: 500; }
  .comp-table td.highlight { background: rgba(212,146,26,.04); }
  .check { color: #4caf50; font-size: 18px; } .cross { color: #e53935; font-size: 18px; } .partial { color: #fb8c00; font-size: 13px; }

  /* ── FAQ ── */
  .faq { background: var(--section-alt); }
  .faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 10px; }
  .faq-item { background: var(--steel); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
  .faq-q {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-weight: 600; font-size: 15px; transition: color .2s; user-select: none;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-arrow { font-size: 18px; transition: transform .3s; flex-shrink: 0; color: var(--accent); }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
  .faq-item.open .faq-a { max-height: 200px; }
  .faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.8; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--steel); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card { background: var(--ink); padding: 32px; border: 1px solid var(--border); border-radius: 6px; }
  .testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-card p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--mid); border: 2px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--accent); flex-shrink: 0;
  }
  .testi-name { font-size: 13px; font-weight: 600; }
  .testi-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(135deg, #c8840e 0%, #b06a00 100%);
    padding: 80px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: 'ANİLOKS'; position: absolute;
    font-family: 'Barlow Condensed', sans-serif; font-size: 200px; font-weight: 900;
    opacity: .05; top: -40px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; color: var(--ink);
  }
  .cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: white; margin-bottom: 16px; position: relative; }
  .cta-band p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 40px; position: relative; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-dark { background: var(--ink); color: white; padding: 16px 36px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .06em; text-decoration: none; transition: all .2s; display: inline-block; }
  .btn-dark:hover { background: var(--steel); transform: translateY(-2px); }
  .btn-wa-large { background: var(--wa); color: white; padding: 16px 36px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .04em; text-decoration: none; transition: all .2s; display: inline-block; }
  .btn-wa-large:hover { background: #1da851; transform: translateY(-2px); }

  /* ── CONTACT ── */
  .contact { background: var(--ink); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-info p { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 32px; }
  .contact-detail {
    display: flex; gap: 16px; align-items: center;
    margin-bottom: 12px; padding: 16px 20px;
    background: rgba(255,255,255,.025); border-radius: 6px;
    border: 1px solid var(--border); text-decoration: none; transition: border-color .2s;
  }
  .contact-detail:hover { border-color: var(--accent-border); }
  .contact-detail-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--accent-soft); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
  }
  .contact-detail-body strong { display: block; font-size: 13px; color: white; margin-bottom: 2px; }
  .contact-detail-body span { font-size: 14px; color: rgba(255,255,255,.48); }
  .wa-detail { border-color: rgba(37,211,102,.2) !important; background: rgba(37,211,102,.03) !important; }
  .wa-detail .contact-detail-icon { background: rgba(37,211,102,.1) !important; }

  /* Form */
  .form-box { background: var(--steel); border: 1px solid var(--border); border-radius: 8px; padding: 40px; }
  .form-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
  .form { display: flex; flex-direction: column; gap: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 11px; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.4); }
  .form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    color: white; padding: 13px 16px; border-radius: 4px;
    font-family: 'Barlow', sans-serif; font-size: 14px;
    transition: border-color .2s; outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(212,146,26,.04);
  }
  .form-group select { cursor: pointer; }
  .form-group select option { background: var(--steel); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.22); }
  .btn-submit {
    background: var(--accent); color: #1a0d00;
    border: none; padding: 16px 36px; border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px; font-weight: 700; letter-spacing: .06em;
    cursor: pointer; transition: all .2s; width: 100%;
  }
  .btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); }

  /* Form states */
  .form-success { display: none; text-align: center; padding: 40px 20px; }
  .form-success .success-icon { font-size: 56px; margin-bottom: 16px; }
  .form-success h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; color: var(--accent); }
  .form-success p { color: rgba(255,255,255,.52); font-size: 15px; }
  .field-error { border-color: #e53935 !important; }
  .error-msg { font-size: 11px; color: #ef5350; margin-top: 4px; }

  /* ── FOOTER ── */
  footer { background: var(--steel); border-top: 1px solid var(--border); padding: 60px 80px 40px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,.38); line-height: 1.75; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.3); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a { color: rgba(255,255,255,.48); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--accent); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,.28); }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4); text-decoration: none;
    font-size: 13px; font-weight: 700; transition: all .2s;
  }
  .social-link:hover { border-color: var(--accent); color: var(--accent); }

  /* ── FLOATING BUTTONS ── */
  .floating-buttons { position: fixed; bottom: 28px; right: 28px; z-index: 200; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
  .float-wa {
    background: var(--wa); color: white; border-radius: 50px;
    padding: 13px 22px; font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700; letter-spacing: .04em;
    text-decoration: none; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    transition: all .2s; animation: floatUp 3s ease-in-out infinite;
  }
  .float-wa:hover { background: #1da851; transform: translateY(-3px) scale(1.02); }
  .float-phone {
    background: var(--accent); color: #1a0d00; border-radius: 50px;
    padding: 13px 22px; font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700; letter-spacing: .04em;
    text-decoration: none; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 6px 24px rgba(212,146,26,.3);
    transition: all .2s; animation: floatUp 3s ease-in-out infinite .5s;
  }
  .float-phone:hover { background: var(--accent-hover); transform: translateY(-3px) scale(1.02); }
  @keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

  /* ── ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    section { padding: 60px 24px !important; }
    .hero { grid-template-columns: 1fr; padding: 60px 24px; min-height: auto; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr !important; }
    .laser-adv-grid { grid-template-columns: 1fr 1fr !important; }
    .proof-grid { grid-template-columns: 1fr 1fr !important; }
    .proof-grid-cards { grid-template-columns: 1fr !important; }
    .proof-section { padding: 60px 20px !important; }
    .ref-cta-box { grid-template-columns: 1fr !important; text-align: center; padding: 32px 20px !important; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-strip { padding: 24px; }
    .cta-band { padding: 60px 24px; }
    .cta-band h2 { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 40px 24px 24px; }
    .floating-buttons { bottom: 16px; right: 16px; }
    .float-wa, .float-phone { padding: 11px 18px; font-size: 14px; }
  }

  @media (max-width: 600px) {
    .laser-adv-grid { grid-template-columns: 1fr !important; }
    .proof-grid { grid-template-columns: 1fr 1fr !important; }
    .hero-stats { gap: 16px; }
    .hero-stats .stat-num { font-size: 26px; }
    .nav-right .lang-switcher { display: none; }
    .float-phone { display: none; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-band { padding: 40px 20px; }
    .cta-band h2 { font-size: 28px; }
    .section-title { font-size: 30px !important; }
  }
