﻿:root {
  --ink: #0b0f1a;
  --ink-soft: #111827;
  --text: #e6ebf5;
  --muted: #9aa3b6;
  --brand-red: #e63b3b;
  --brand-blue: #1b78d1;
  --brand-cyan: #5bd1ff;
  --accent: #f6b53c;
  --card: rgba(17, 24, 39, 0.75);
  --card-strong: rgba(20, 28, 48, 0.95);
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 24px 60px rgba(6, 11, 20, 0.45);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 16.5px;
  background: radial-gradient(circle at top left, rgba(27, 120, 209, 0.25), transparent 55%),
    radial-gradient(circle at top right, rgba(230, 59, 59, 0.28), transparent 50%),
    linear-gradient(180deg, #0b0f1a 0%, #0f172a 50%, #0b0f1a 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1280px, 94vw);
  margin: 0 auto;
}

.site-header .nav.container {
  width: min(1600px, 96vw);
}

.background-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(91, 209, 255, 0.2), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(246, 181, 60, 0.18), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(230, 59, 59, 0.2), transparent 40%);
  z-index: -2;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.92), rgba(9, 12, 20, 0.65));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo span {
  font-size: 1.15rem;
  line-height: 1.1;
}

.logo img {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.2);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
  object-fit: cover;
  object-position: center 18%;
}

.logo small {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 0.98rem;
  flex: 1;
}

.nav-menu,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-menu {
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  white-space: nowrap;
}

.nav-actions {
  justify-content: flex-end;
}

.nav-actions {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.15);
}

.nav-links a {
  font-weight: 500;
  line-height: 1;
}

.nav-links a.active-nav {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.75);
  background: rgba(15, 23, 42, 0.35);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.2);
}

.nav-links a.active-nav::after {
  width: 100%;
}

.pill {
  border: 1px solid rgba(91, 209, 255, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brand-cyan);
  font-size: 0.9rem;
  background: rgba(10, 15, 25, 0.5);
  display: inline-flex;
  align-items: center;
  height: 38px;
  line-height: 1;
}

.pill.instagram {
  border-color: rgba(230, 59, 59, 0.5);
  color: #f8fafc;
  background: linear-gradient(135deg, rgba(230, 59, 59, 0.22), rgba(91, 209, 255, 0.22));
}

.pill.whatsapp {
  border-color: rgba(29, 78, 216, 0.45);
  color: #0f172a;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(29, 78, 216, 0.18));
}

.pill:hover {
  border-color: rgba(230, 59, 59, 0.6);
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
}

.nav-links a:not(.btn):not(.pill)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.hero {
  padding: 80px 0 40px;
}

.hero .container {
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 3.8vw, 54px);
}

.hero-shell {
  display: grid;
  gap: 28px;
}

.quick-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--card-grad);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 1;
}

.quick-access::before {
  content: "";
  display: block;
  width: 6px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1d4ed8, #38bdf8, #f59e0b);
  margin-right: 6px;
}

.quick-label {
  display: grid;
  gap: 4px;
}

.quick-label strong {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.05rem;
}

.quick-label small {
  color: var(--muted);
  font-size: 0.85rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #b5d0ff;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: #1d4ed8;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.quick-link.primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #ffffff;
  border: 1px solid rgba(29, 78, 216, 0.4);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 18px 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--brand-cyan);
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(91, 209, 255, 0.12);
  border: 1px solid rgba(91, 209, 255, 0.3);
  color: var(--brand-cyan);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.btn {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.5);
}

.btn.light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.ghost {
  background: transparent;
  border: 1px dashed rgba(91, 209, 255, 0.5);
  color: var(--brand-cyan);
  box-shadow: none;
}

.btn.instagram {
  border: 1px solid rgba(246, 181, 60, 0.5);
  background: linear-gradient(135deg, rgba(230, 59, 59, 0.85), rgba(246, 181, 60, 0.85));
  color: #fff;
}

.btn-small {
  padding: 9px 18px;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  height: 38px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 120px;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.hero-social a {
  color: var(--brand-cyan);
  font-weight: 600;
}

.instagram-spotlight {
  background: radial-gradient(circle at 20% 20%, rgba(246, 181, 60, 0.16), transparent 55%),
    rgba(10, 15, 25, 0.7);
  border-block: 1px solid rgba(148, 163, 184, 0.12);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.instagram-copy h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin: 12px 0 16px;
}

.instagram-copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.instagram-handle {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.instagram-handle a {
  color: var(--brand-cyan);
  font-weight: 600;
}

.instagram-cards {
  display: grid;
  gap: 14px;
}

.instagram-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid rgba(91, 209, 255, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.instagram-card span {
  color: var(--brand-cyan);
  font-weight: 600;
  font-size: 0.85rem;
}

.instagram-card:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 181, 60, 0.5);
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.panel-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel-card h3 {
  font-family: "Chakra Petch", sans-serif;
  margin-bottom: 12px;
}

.panel-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.panel-card li span {
  color: var(--brand-cyan);
  font-weight: 600;
  margin-right: 8px;
}

.panel-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(91, 209, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
}

.panel-highlight .btn {
  white-space: nowrap;
  min-width: 130px;
  justify-content: center;
  text-align: center;
}

.quick-form {
  display: grid;
  gap: 12px;
}

.quick-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

input,
select,
textarea {
  background: rgba(10, 15, 25, 0.85);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}

.section {
  padding: 64px 0;
}

.section.dark {
  background: rgba(12, 18, 32, 0.85);
  border-block: 1px solid rgba(148, 163, 184, 0.08);
}

.section > .container {
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 3.8vw, 52px);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  max-width: 80ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  min-height: 160px;
  position: relative;
  overflow: hidden;
  padding-bottom: 46px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.service-card,
.dealer-card,
.price-card,
.campaign-card,
.blog-card,
.brand-service-card,
.fault-card,
.problem-card,
.testimonial-grid article,
.faq-item,
.contact-cards div,
.contact-form,
.process-step,
.hero-stats div,
.region-grid span,
.dealer-callout,
.brand-service-cta,
.instagram-card {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 59, 59, 0.2), rgba(27, 120, 209, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.9), rgba(56, 189, 248, 0.9), rgba(245, 158, 11, 0.8));
  opacity: 0.8;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.18);
  border-color: rgba(56, 189, 248, 0.55);
}

.service-card h3 {
  font-family: "Chakra Petch", sans-serif;
  margin-bottom: 10px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.region-grid span {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 2px solid #99b8ff;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region-grid span:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px rgba(15, 23, 42, 0.28);
}

.region-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-tags {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.service-tag.kombi {
  color: #ff6b5a;
  border-color: rgba(230, 59, 59, 0.5);
}

.service-tag.klima {
  color: var(--brand-cyan);
  border-color: rgba(91, 209, 255, 0.5);
}

.brand-service-grid,
.fault-grid,
.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.brand-service-card,
.fault-card,
.problem-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  min-height: 170px;
  display: grid;
  gap: 10px;
  align-content: start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-service-card:hover,
.fault-card:hover,
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 78, 216, 0.45);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.brand-service-card h3,
.fault-card h3,
.problem-card h3 {
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.3;
}

.brand-service-card p,
.fault-card p,
.problem-card p {
  color: var(--muted);
}

.brand-service-card::before,
.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.9), rgba(56, 189, 248, 0.9), rgba(245, 158, 11, 0.8));
}

.brand-service-card::after,
.fault-card::after,
.problem-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -75px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.26), transparent 70%);
  pointer-events: none;
}

.brand-service-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(27, 120, 209, 0.12);
  border: 1px solid rgba(91, 209, 255, 0.3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brand-service-cta p {
  color: var(--muted);
  max-width: 76ch;
}

.brand-service-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.9), rgba(56, 189, 248, 0.9), rgba(245, 158, 11, 0.8));
}

.brand-service-cta > * {
  position: relative;
  z-index: 1;
}

.fault-grid {
  margin-bottom: 20px;
}

.fault-card {
  border-color: rgba(245, 158, 11, 0.35);
}

.fault-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(230, 59, 59, 0.85), rgba(27, 120, 209, 0.85), rgba(245, 158, 11, 0.8));
}

.fault-card > * {
  position: relative;
  z-index: 1;
}

#marka-servisi .container,
#ariza-cozum .container {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#marka-servisi .container::before,
#ariza-cozum .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(29, 78, 216, 0.06), transparent 36%),
    radial-gradient(circle at 15% 22%, rgba(56, 189, 248, 0.13), transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(245, 158, 11, 0.1), transparent 48%);
  z-index: 0;
}

#marka-servisi .container::after,
#ariza-cozum .container::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

#marka-servisi .section-head,
#marka-servisi .brand-service-grid,
#marka-servisi .brand-service-cta,
#ariza-cozum .section-head,
#ariza-cozum .fault-grid,
#ariza-cozum .problem-solution-grid {
  position: relative;
  z-index: 1;
}

#marka-servisi .brand-service-card h3::before,
#ariza-cozum .fault-card h3::before,
#ariza-cozum .problem-card h3::before {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  background: rgba(29, 78, 216, 0.14);
  border: 1px solid rgba(29, 78, 216, 0.28);
  color: #1d4ed8;
}

#marka-servisi .brand-service-card h3::before {
  content: "Marka Servisi";
}

#ariza-cozum .fault-card h3::before {
  content: "Ariza Kodu";
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.36);
  color: #b45309;
}

#ariza-cozum .problem-card h3::before {
  content: "Sorun / Cozum";
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
  align-items: stretch;
}

.dealer-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.dealer-card h3 {
  font-family: "Chakra Petch", sans-serif;
}

.dealer-tag {
  display: inline-flex;
  align-self: start;
  margin-top: auto;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(91, 209, 255, 0.15);
  color: var(--brand-cyan);
  border: 1px solid rgba(91, 209, 255, 0.3);
}

.dealer-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(27, 120, 209, 0.15);
  border: 1px solid rgba(91, 209, 255, 0.25);
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 14px;
}

.dealer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dealer-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.process-step {
  background: var(--card-strong);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(91, 209, 255, 0.2);
}

.process-step span {
  display: inline-flex;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.4rem;
  color: var(--brand-cyan);
  margin-bottom: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--card);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.price-card.featured {
  background: linear-gradient(140deg, rgba(27, 120, 209, 0.35), rgba(230, 59, 59, 0.25));
  border: 1px solid rgba(91, 209, 255, 0.4);
  transform: translateY(-12px);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  color: var(--muted);
}

.price {
  font-weight: 600;
  color: var(--brand-cyan);
}

.campaign-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.campaign-card,
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: start;
}

.campaign-card.placeholder,
.blog-card.placeholder {
  opacity: 0.7;
}

.card-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(10, 15, 25, 0.6);
  aspect-ratio: 16 / 9;
}

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.campaign-badge {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(246, 181, 60, 0.2);
  color: var(--accent);
  border: 1px solid rgba(246, 181, 60, 0.4);
}

.campaign-date,
.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Chakra Petch", sans-serif;
  color: var(--muted);
  margin-bottom: 30px;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(10, 15, 25, 0.7);
  padding: 14px 0;
  margin-bottom: 16px;
}

.logo-track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

.logo-item {
  min-width: 160px;
  min-height: 80px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(91, 209, 255, 0.2);
  color: var(--text);
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0.4px;
  display: grid;
  place-items: center;
  gap: 6px;
}

.logo-item img {
  width: 120px;
  height: 52px;
  padding: 6px 8px;
  background: #f8fafc;
  border-radius: 10px;
  object-fit: contain;
  filter: grayscale(0.1) brightness(1.05);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.logo-label {
  display: none;
  font-size: 0.9rem;
}

.logo-label.show {
  display: inline-block;
}

.logo-item img.hide {
  display: none;
}

.logo-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 26px;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.testimonial-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--brand-cyan);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  text-align: left;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 12px;
  position: relative;
}

.faq-item .icon {
  position: absolute;
  top: 18px;
  right: 18px;
  font-weight: 600;
}

.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.is-hidden {
  display: none !important;
}

.contact-cards div {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contact-cards small {
  color: var(--muted);
}

.contact-form {
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.site-footer {
  padding: 60px 0 30px;
  background: rgba(8, 11, 18, 0.95);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
}

.footer-grid a,
.footer-grid p {
  color: var(--muted);
}

.footer-logo {
  width: 90px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 12px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.floating-instagram {
  position: fixed;
  right: 20px;
  bottom: 76px;
  background: linear-gradient(135deg, rgba(230, 59, 59, 0.95), rgba(246, 181, 60, 0.95));
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: rgba(12, 18, 32, 0.95);
  border: 1px solid rgba(91, 209, 255, 0.4);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1650px) {
  .site-header .nav.container {
    width: min(1280px, 94vw);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    right: 2%;
    width: min(420px, 94vw);
    background: var(--card-grad-strong);
    border: 1px solid #c7dbff;
    box-shadow: var(--shadow-strong);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-menu,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-actions {
    padding: 10px;
    border-radius: 16px;
  }

  .nav-menu a,
  .nav-actions a {
    text-align: center;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .quick-access {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-access::before {
    width: 70px;
    height: 4px;
    margin: 0 0 6px;
  }

  .quick-links {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 4%;
    width: min(340px, 92vw);
    background: rgba(10, 15, 25, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-menu,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-actions {
    padding: 10px;
    border-radius: 16px;
  }

  .nav-menu a,
  .nav-actions a {
    text-align: center;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .logo img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
  }

  .panel-highlight {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   Light Theme Override
========================= */
:root {
  --ink: #0f172a;
  --ink-soft: #1f2937;
  --text: #0f172a;
  --muted: #5b6473;
  --brand-red: #1d4ed8;
  --brand-blue: #38bdf8;
  --brand-cyan: #0ea5e9;
  --accent: #1d4ed8;
  --accent-warm: #f59e0b;
  --accent-warm-soft: rgba(245, 158, 11, 0.16);
  --card: #f5f7fb;
  --card-strong: #edf1f7;
  --border: #cfd8ea;
  --shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 22px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 22px 48px rgba(15, 23, 42, 0.16);
  --card-grad: linear-gradient(180deg, #f5f7fb 0%, #edf1f7 100%);
  --card-grad-strong: linear-gradient(180deg, #f2f5fa 0%, #e7ecf4 100%);
  --radius: 22px;
}

body {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.14), transparent 50%),
    linear-gradient(180deg, #f2f5fa 0%, #e7ecf4 55%, #f2f5fa 100%);
  color: var(--text);
}

.background-glow {
  background: radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(29, 78, 216, 0.12), transparent 55%),
    radial-gradient(circle at 30% 60%, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(circle at 75% 85%, rgba(29, 78, 216, 0.12), transparent 60%);
  background-size: 100% 1200px;
  background-repeat: repeat-y;
}

.site-header {
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.98), rgba(231, 238, 248, 0.9));
  border-bottom: 1px solid rgba(199, 219, 255, 0.8);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.nav-actions {
  background: linear-gradient(180deg, #f5f7fb, #e9eef7);
  border: 1px solid #c7dbff;
  box-shadow: inset 0 0 0 1px rgba(199, 219, 255, 0.6), var(--shadow-soft);
}

.nav-links a.active-nav {
  background: linear-gradient(180deg, #f5f7fb, #e3eaf6);
  border-color: #1d4ed8;
  color: #0f172a;
  box-shadow: var(--shadow-soft);
}

.pill {
  background: linear-gradient(180deg, #f5f7fb, #e3eaf6);
  border-color: #b5d0ff;
  color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.pill.instagram,
.pill.whatsapp {
  border-color: rgba(29, 78, 216, 0.5);
  color: #1d4ed8;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.92), rgba(56, 189, 248, 0.18));
}

.badge {
  background: linear-gradient(180deg, #f5f7fb, rgba(56, 189, 248, 0.16));
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.quick-link {
  background: linear-gradient(180deg, #f5f7fb, #e3eaf6);
}

.btn {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(29, 78, 216, 0.22);
}

.btn.light {
  background: linear-gradient(180deg, #f5f7fb, #e1e8f4);
  border: 1px solid #b5d0ff;
  color: #1e3a8a;
  box-shadow: var(--shadow-soft);
}

.btn.ghost {
  border: 1px dashed #93c5fd;
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.04);
}

.btn.instagram {
  border: 1px solid rgba(29, 78, 216, 0.4);
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
}

input,
select,
textarea {
  background: #f5f7fb;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.section.dark {
  background: linear-gradient(180deg, #f2f5fb, #e7ecf4);
  border-block: 1px solid #c7dbff;
}

.service-card::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(56, 189, 248, 0.18));
}

.service-card {
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
}

.service-card::before {
  opacity: 0.35;
}

.service-card::after {
  height: 4px;
  opacity: 1;
  background: linear-gradient(90deg, #1d4ed8, #38bdf8, #f59e0b);
}

.service-card:hover {
  border-color: rgba(29, 78, 216, 0.5);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.2);
}

.region-grid span,
.dealer-card,
.process-step,
.price-card,
.campaign-card,
.blog-card,
.brand-service-card,
.fault-card,
.problem-card,
.testimonial-grid article,
.faq-item,
.contact-cards div,
.contact-form {
  background: var(--card-grad);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
  border-top: 3px solid rgba(29, 78, 216, 0.28);
}

.service-tag {
  background: #f2f5fb;
  border: 1px solid #c7dbff;
  color: #1d4ed8;
}

.service-tag.kombi {
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.14);
}

.service-tag.klima {
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.35);
  background: rgba(56, 189, 248, 0.12);
}

.dealer-tag {
  background: linear-gradient(180deg, #f5f7fb, #e3eaf6);
  color: #1d4ed8;
  border: 1px solid #b5d0ff;
}

.dealer-callout {
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
}

.brand-service-cta {
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
}

.price-card.featured {
  background: linear-gradient(140deg, rgba(29, 78, 216, 0.12), rgba(56, 189, 248, 0.18));
  border: 1px solid rgba(29, 78, 216, 0.25);
}

.campaign-badge {
  background: linear-gradient(180deg, #f5f7fb, rgba(56, 189, 248, 0.2));
  color: #1d4ed8;
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.card-media {
  background: var(--card-grad);
  border: 1px solid #c7dbff;
  box-shadow: var(--shadow-soft);
}

.logo-carousel {
  background: var(--card-grad);
  border: 1px solid #c7dbff;
  box-shadow: var(--shadow);
}

.logo-item {
  background: var(--card-grad);
  border: 1px solid #c7dbff;
  color: #0f172a;
  box-shadow: var(--shadow-soft);
}

.logo-item img {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(219, 227, 243, 0.7);
}

.site-footer {
  background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.2), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.16), transparent 50%),
    linear-gradient(180deg, #f2f5fb 0%, #dde6f3 100%);
  border-top: 1px solid #b5d0ff;
  box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.12);
}

.footer-grid a,
.footer-grid p,
.footer-bottom {
  color: #4b5563;
}

.site-footer .footer-grid {
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-strong);
}

.footer-grid h4 {
  color: #0f172a;
  margin-bottom: 8px;
}

.footer-grid a {
  font-weight: 600;
}

.floating-call,
.floating-instagram {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  box-shadow: var(--shadow-strong);
}

.section-head h2 {
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d4ed8, #f59e0b);
  box-shadow: 0 6px 14px rgba(29, 78, 216, 0.2);
}

.nav-links a:not(.btn):not(.pill)::after {
  background: linear-gradient(90deg, #1d4ed8, rgba(245, 158, 11, 0.9));
}

.dealer-tag,
.service-tag.kombi {
  background: linear-gradient(180deg, #fff7ed, rgba(245, 158, 11, 0.18));
  border-color: rgba(245, 158, 11, 0.45);
  color: #b45309;
}

.service-tag.klima {
  background: linear-gradient(180deg, #f5f7fb, rgba(56, 189, 248, 0.14));
}

.toast {
  background: var(--card-grad);
  border: 1px solid #b5d0ff;
  color: #0f172a;
  box-shadow: var(--shadow-strong);
}

.instagram-spotlight {
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.16), transparent 55%),
    linear-gradient(180deg, #f2f5fb, #e7ecf4);
  border-block: 1px solid #c7dbff;
}

.instagram-card {
  background: var(--card-grad);
  border: 1px solid #c7dbff;
  box-shadow: var(--shadow-strong);
}

.instagram-card span {
  color: #1d4ed8;
}

.panel-card,
.hero-stats div {
  background: var(--card-grad);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow);
}

.panel-highlight {
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-soft);
}

.section > .container,
.hero .container {
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
}

/* =========================
   Premium Accents
========================= */
.hero .container {
  position: relative;
  overflow: hidden;
}

.hero .container::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28), transparent 65%);
  z-index: 0;
}

.hero .container::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.2), transparent 70%);
  z-index: 0;
}

.hero-grid,
.hero-panel,
.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 66ch;
}

.pricing-grid {
  gap: 24px;
}

.price-card {
  position: relative;
  background: var(--card-grad-strong);
  border: 1px solid #b5d0ff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #1d4ed8, #38bdf8, #f59e0b);
}

.price-card.featured {
  border: 2px solid rgba(29, 78, 216, 0.35);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  transform: translateY(-10px);
}

.price-card.featured::before {
  height: 5px;
}

.price-card .price {
  color: #1d4ed8;
  font-weight: 700;
}

.brand-row span {
  background: var(--card-grad);
  border: 1px solid #b5d0ff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--shadow-soft);
  color: #1d4ed8;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
}

.logo-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(199, 219, 255, 0.7);
  pointer-events: none;
}

.testimonial-grid article {
  position: relative;
  overflow: hidden;
}

.testimonial-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #1d4ed8, #38bdf8);
}

.site-footer .footer-grid {
  position: relative;
  overflow: hidden;
}

.site-footer .footer-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #1d4ed8, #38bdf8, #f59e0b);
}

.site-footer .footer-grid::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 70%);
  pointer-events: none;
}

.site-footer .footer-grid > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .nav-links {
    background: var(--card-grad-strong);
    border: 1px solid #c7dbff;
    box-shadow: var(--shadow-strong);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(1280px, 92vw);
  }

  .nav {
    padding: 12px 0;
    gap: 12px;
  }

  .logo {
    gap: 10px;
  }

  .logo span {
    font-size: 1.02rem;
  }

  .logo small {
    font-size: 0.75rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    left: 4%;
    right: 4%;
    width: auto;
    top: 64px;
    max-height: 74vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-menu a,
  .nav-actions a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .hero {
    padding: 48px 0 28px;
  }

  .hero .container,
  .section > .container {
    padding: 22px;
    border-radius: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    line-height: 1.15;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-social {
    gap: 6px;
  }

  .hero-stats div {
    min-width: 0;
    width: 100%;
  }

  .quick-access {
    padding: 14px;
    gap: 12px;
  }

  .quick-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }

  .quick-link {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .panel-card,
  .contact-form,
  .contact-cards div,
  .service-card,
  .brand-service-card,
  .fault-card,
  .problem-card,
  .price-card,
  .process-step,
  .campaign-card,
  .blog-card,
  .testimonial-grid article {
    padding: 18px;
  }

  .brand-service-cta {
    padding: 18px;
  }

  #marka-servisi .brand-service-card h3::before,
  #ariza-cozum .fault-card h3::before,
  #ariza-cozum .problem-card h3::before {
    font-size: 0.64rem;
    padding: 4px 8px;
  }

  .panel-highlight {
    width: 100%;
  }

  .panel-highlight .btn {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .pricing-grid,
  .service-grid,
  .brand-service-grid,
  .fault-grid,
  .problem-solution-grid,
  .campaign-grid,
  .blog-grid,
  .process-grid,
  .dealer-grid,
  .testimonial-grid {
    gap: 16px;
  }

  .price-card.featured {
    transform: none;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
  }

  .floating-call,
  .floating-instagram {
    right: 14px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .floating-call {
    bottom: calc(env(safe-area-inset-bottom) + 14px);
  }

  .floating-instagram {
    bottom: calc(env(safe-area-inset-bottom) + 64px);
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 52px;
    height: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 7.6vw, 2.1rem);
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .nav-links {
    left: 3%;
    right: 3%;
  }

  .footer-grid {
    gap: 18px;
  }

  .floating-call span,
  .floating-instagram span {
    font-size: 0.85rem;
  }
}
