/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a1733;
  --bg-2: #112444;
  --bg-3: #1a2e5a;
  --ink: #ffffff;
  --ink-soft: #b8c5e0;
  --muted: #6b7a99;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --accent: #4a90e2;
  --accent-2: #6ba3f5;
  --warm: #e8c89a;
  --white: #ffffff;
  --radius: 22px;
  --radius-sm: 12px;
  --max: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.6s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--bg);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex; gap: 2px;
}
.loader-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: loadIn 0.6s var(--ease) forwards;
}
.loader-text span:nth-child(1) { animation-delay: 0.05s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.15s; }
.loader-text span:nth-child(4) { animation-delay: 0.2s; }
.loader-text span:nth-child(5) { animation-delay: 0.25s; }
.loader-text span:nth-child(6) { animation-delay: 0.3s; }
.loader-text span:nth-child(7) { animation-delay: 0.35s; }
.loader-text span:nth-child(8) { animation-delay: 0.4s; }
.loader-text span:nth-child(9) { animation-delay: 0.45s; }
@keyframes loadIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t), padding var(--t), backdrop-filter var(--t);
}
.header.scrolled {
  background: rgba(10, 23, 51, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-top: 5px;
}
body.theme-red .logo-name { color: var(--ink); }
body.theme-red .logo-sub { color: var(--accent); }
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: ''; position: absolute;
  inset: 6px; border-radius: 50%;
  background: var(--warm);
}
.nav {
  display: flex; gap: 32px;
  align-items: center;
}
.nav-link {
  font-size: 0.93rem; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  transition: transform var(--t), background 0.3s;
}
.header-cta:hover { background: var(--accent-2); transform: translateY(-2px); }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}
.menu-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex; align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(74, 144, 226, 0.18), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(232, 200, 154, 0.08), transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: saturate(0.7);
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(10, 23, 51, 0.5) 50%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner { width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--warm);
  font-weight: 400;
}
.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.reveal-line.in > span,
.in .reveal-line > span {
  transform: translateY(0);
}
.reveal-line:nth-of-type(2) > span { transition-delay: 0.1s; }
.reveal-line:nth-of-type(3) > span { transition-delay: 0.2s; }

.hero-sub {
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 500;
  transition: transform var(--t), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--bg);
}
.btn-light:hover { background: var(--ink-soft); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 700px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-scroll {
  position: absolute;
  right: 28px; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--white), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute;
  top: -30px; left: 0;
  width: 100%; height: 30px;
  background: var(--accent-2);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -30px; }
  100% { top: 60px; }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--accent);
  color: var(--white);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: scrollX 30s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}
.marquee-track span:nth-child(even) { opacity: 0.4; }
@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* ===== Section ===== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-header { margin-bottom: 64px; max-width: 800px; }
.section-label {
  display: inline-block;
  font-size: 0.85rem; font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-text.in { opacity: 1; transform: translateY(0); }

/* ===== About ===== */
.about { background: var(--bg); }
.about-image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.about-image-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-image-card:hover img { transform: scale(1.05); }
.about-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 23, 51, 0.7) 100%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-text strong { color: var(--ink); font-weight: 600; }
.about-list {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.about-list li {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  transition: padding-left 0.4s var(--ease);
}
.about-list li:hover { padding-left: 12px; color: var(--accent-2); }
.about-list span {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--accent-2);
  font-weight: 500;
  min-width: 32px;
}
.about-visual {
  display: flex; flex-direction: column; gap: 24px;
  position: sticky; top: 100px;
}
.about-card {
  background: var(--bg-3);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-card-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.about-card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.about-card-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.about-card-bar::after {
  content: ''; position: absolute;
  left: 0; top: 0; height: 100%; width: 70%;
  background: var(--warm);
  border-radius: 2px;
  transform: translateX(-100%);
  transition: transform 1.5s var(--ease);
}
.about-card.in .about-card-bar::after,
.in .about-card-bar::after { transform: translateX(0); }
.about-card.secondary {
  background: linear-gradient(135deg, var(--accent), var(--bg-3));
  color: var(--white);
}
.about-card.secondary .quote {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--warm);
  margin-bottom: 16px;
}
.about-card.secondary p {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
}

/* ===== Services ===== */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--bg-3);
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform var(--t), background 0.4s, color 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-3), rgba(74, 144, 226, 0.15));
}
.service-card:hover .service-link { color: var(--warm); }
.service-card:hover .service-num { color: var(--accent); }
.service-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-2);
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 60px;
  transition: color 0.4s;
}
.service-icon {
  width: 64px; height: 64px;
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 0.98rem;
  transition: color 0.4s;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--accent-2);
  transition: color 0.3s, gap 0.3s;
}
.service-link:hover { gap: 14px; color: var(--warm); }
.service-card.highlight {
  background: linear-gradient(135deg, var(--accent), var(--bg-3));
  border-color: var(--accent);
}
.service-card.highlight .service-num { color: var(--warm); }
.service-card.highlight .service-link { color: var(--warm); }

/* ===== Campaign ===== */
.campaign {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.campaign::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 179, 128, 0.1), transparent 60%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.campaign-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.campaign-content .section-label { color: var(--warm); }
.campaign-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.campaign-title span { display: block; }
.campaign-title .accent {
  color: var(--warm);
  font-style: italic;
  font-weight: 400;
}
.campaign-content p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.campaign-visual {
  display: flex; justify-content: center; align-items: center;
}
.campaign-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.campaign-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(217, 179, 128, 0.4);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.circle-inner { text-align: center; }
.circle-percent {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.circle-label {
  font-size: 0.95rem;
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Process ===== */
.process { background: var(--bg); }
.process-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left 0.5s var(--ease), background 0.3s;
}
.process-item:hover { padding-left: 24px; background: rgba(74, 144, 226, 0.06); }
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-2);
}
.process-content h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  margin-bottom: 8px;
}
.process-content p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 600px;
}

/* ===== FAQ ===== */
.faq { background: var(--bg-2); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] { border-color: var(--accent); background: var(--bg-3); }
.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-icon {
  width: 24px; height: 24px;
  position: relative; flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--white);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before {
  top: 11px; left: 0;
  width: 100%; height: 2px;
}
.faq-icon::after {
  left: 11px; top: 0;
  width: 2px; height: 100%;
}
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  animation: faqOpen 0.4s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Contact ===== */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 24px; }
.contact-text {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 460px;
}
.contact-items {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left 0.4s var(--ease);
}
a.contact-item:hover { padding-left: 8px; }
.contact-item-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-item-value {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  background: var(--bg-3);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: #050d20;
  color: var(--white);
  padding: 80px 0 32px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.footer-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 14vw, 14rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 60px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col p,
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--warm); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  flex-wrap: wrap; gap: 12px;
}

/* ===== Float Call Button ===== */
.float-call {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
  transition: transform 0.3s, background 0.3s;
}
.float-call:hover {
  background: var(--accent-2);
  transform: scale(1.08);
}
.float-call svg { width: 22px; height: 22px; }
.float-call::before {
  content: ''; position: absolute;
  inset: 0; border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== About Feature (with timeline icons + photo + stat overlay) ===== */
.about-feature {
  background: var(--bg);
  padding: 120px 0;
}
.about-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-feature-left h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 56px;
  color: var(--white);
}
.feature-list {
  position: relative;
  padding-left: 28px;
}
.feature-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--line));
}
.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
  position: relative;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  margin-left: -28px;
  box-shadow: 0 0 0 6px var(--bg);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.feature-item:hover .feature-icon {
  background: var(--accent-2);
  transform: scale(1.08);
}
.feature-icon svg {
  width: 26px; height: 26px;
  color: var(--white);
  stroke-width: 1.8;
}
.feature-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-feature-right {
  display: flex; flex-direction: column;
  gap: 40px;
}
.about-feature-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 540px;
}
.about-feature-lead strong { color: var(--white); }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.about-image-wrap:hover img { transform: scale(1.04); }
.stat-overlay {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-sm);
  display: flex; gap: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.stat-overlay-item { display: flex; align-items: flex-end; gap: 8px; }
.stat-overlay-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-overlay-label {
  font-size: 0.82rem;
  line-height: 1.2;
  opacity: 0.95;
  max-width: 90px;
}

/* ===== Google Reviews ===== */
.reviews-section {
  background: var(--bg-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1), transparent 60%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.reviews-header {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  margin-bottom: 64px;
}
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 32px;
}
.google-rating-badge .google-logo {
  width: 24px; height: 24px;
}
.google-rating-badge .stars {
  color: #fbbc05;
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.google-rating-badge .rate-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.google-rating-badge .rate-text strong { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--t), border-color 0.4s;
  display: flex; flex-direction: column;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.review-stars {
  color: #fbbc05;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.review-text {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-author-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.review-author-meta {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.review-author-meta svg { width: 12px; height: 12px; }
.reviews-footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== Floating buttons (WhatsApp + Phone) ===== */
.float-actions {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.3s, background 0.3s;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 24px; height: 24px; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.whatsapp:hover { background: #20bd5a; }
.float-btn.phone { background: var(--accent); }
.float-btn.phone:hover { background: var(--accent-2); }
.float-btn .float-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-3);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  border: 1px solid var(--line);
}
.float-btn:hover .float-label { opacity: 1; transform: translateY(-50%) translateX(-4px); }
.float-btn.phone::before {
  content: ''; position: absolute;
  inset: 0; border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ripple 2s ease-out infinite;
}

/* ===== Brand Cards ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.brand-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform var(--t), border-color 0.4s;
  display: flex; flex-direction: column;
}
.brand-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.brand-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.brand-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.brand-card:hover .brand-cover img { transform: scale(1.06); }
.brand-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 23, 51, 0.6));
}
.brand-body {
  padding: 36px;
  display: flex; flex-direction: column; flex: 1;
}
.brand-logo {
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--white);
}
.brand-tag {
  font-size: 0.78rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.brand-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.brand-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 980px) {
  .brand-grid { grid-template-columns: 1fr; }
}

/* ===== Model gallery (brand detail pages) ===== */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.model-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 28px;
  transition: transform var(--t), border-color 0.4s;
  display: flex; flex-direction: column;
}
.model-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.model-cover {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  margin-bottom: 20px;
  position: relative;
}
.model-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.model-card:hover .model-cover img { transform: scale(1.06); }
.model-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.model-type {
  font-size: 0.78rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.model-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.model-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .model-grid { grid-template-columns: 1fr; }
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 180px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(74, 144, 226, 0.18), transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(0.7);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(10, 23, 51, 0.7) 50%, rgba(10, 23, 51, 0.4) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink-soft); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; font-weight: 400; }
.page-hero .lead {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
}

/* ===== Product Grid (urunler.html) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color 0.4s, background 0.4s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.product-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-thumb img { transform: scale(1.08); }
.product-thumb svg {
  width: 60%; height: 60%;
  color: var(--accent-2);
  opacity: 0.85;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-thumb svg { transform: scale(1.08) rotate(-3deg); }
.product-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(74, 144, 226, 0.18), transparent 60%);
  z-index: 1;
}
.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 23, 51, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.product-thumb img + ::before { display: none; }
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.product-tag.warm { background: var(--warm); color: var(--ink); }
.product-tag.accent { background: var(--accent); color: var(--bg); }
.product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.product-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.product-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.6;
}
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s;
}
.product-link:hover { gap: 12px; }
.product-features {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.feat-chip {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ===== Product Detail ===== */
.product-detail {
  padding: 140px 0 80px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.product-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-visual::before {
  content: '';
  position: absolute;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.18), transparent 70%);
  border-radius: 50%;
  top: 10%; left: 10%;
  z-index: 0;
}
.product-visual svg { width: 50%; height: 50%; color: var(--accent-2); position: relative; z-index: 1; }
.product-info .breadcrumb { margin-bottom: 16px; }
.product-info h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.product-info > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.product-specs {
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.spec-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spec-value {
  font-size: 1rem;
  color: var(--white);
}
.product-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}
.product-features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.product-features-list li::before {
  content: '✓';
  color: var(--accent-2);
  font-weight: 700;
  flex-shrink: 0;
}
.product-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== Related products ===== */
.related-section { background: var(--bg-2); padding: 100px 0; }

/* ===== Page CTA ===== */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--bg-3));
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 200, 154, 0.15), transparent 60%);
  top: -200px; left: -200px;
}
.cta-band-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px;
  position: relative; z-index: 1;
}
.cta-band-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-band-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 500px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--bg); padding: 24px; flex-direction: column;
    align-items: flex-start; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .about-grid, .contact-grid, .campaign-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-scroll { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  .process-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .contact-item { grid-template-columns: 100px 1fr; gap: 16px; }
}
/* ===========================================
   THEME: RED & WHITE (alternative theme)
   Add class="theme-red" to <body> to activate
   =========================================== */
body.theme-red {
  --bg: #ffffff;
  --bg-2: #faf6f5;
  --bg-3: #fef0ef;
  --ink: #1a0808;
  --ink-soft: #5c4040;
  --muted: #999999;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.15);
  --accent: #e63946;
  --accent-2: #c1121f;
  --warm: #f4a261;
  --white: #ffffff;
}

/* Loader */
body.theme-red .loader { background: #faf6f5; }
body.theme-red .loader-text { color: #e63946; }

/* Header */
body.theme-red .header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
}
body.theme-red .menu-toggle span { background: var(--ink); }
body.theme-red .logo-mark { background: var(--accent); }
body.theme-red .logo-mark::after { background: var(--warm); }
body.theme-red .nav-link { color: var(--ink-soft); }
body.theme-red .nav-link:hover { color: var(--ink); }
body.theme-red .nav-link::after { background: var(--accent); }
body.theme-red .header-cta { background: var(--accent); color: var(--white); }
body.theme-red .header-cta:hover { background: var(--accent-2); }

/* Hero */
body.theme-red .hero {
  background:
    radial-gradient(ellipse at top right, rgba(230, 57, 70, 0.12), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(244, 162, 97, 0.08), transparent 50%),
    var(--bg);
}
body.theme-red .hero-bg-image { opacity: 0.12; filter: saturate(0.5); }
body.theme-red .hero-bg-image::after {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}
body.theme-red .hero-badge {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--line-strong);
  color: var(--ink-soft);
}
body.theme-red .badge-dot { background: var(--accent); }
body.theme-red .hero-title { color: var(--ink); }
body.theme-red .hero-title em { color: var(--accent); }
body.theme-red .hero-sub { color: var(--ink-soft); }
body.theme-red .hero-stats { border-color: var(--line); }
body.theme-red .stat-num { color: var(--ink); }
body.theme-red .stat-label { color: var(--muted); }
body.theme-red .hero-scroll span { color: var(--muted); }
body.theme-red .scroll-line { background: linear-gradient(to bottom, var(--ink), transparent); }
body.theme-red .scroll-line::after { background: var(--accent); }

/* Buttons */
body.theme-red .btn-primary { background: var(--accent); color: var(--white); }
body.theme-red .btn-primary:hover { background: var(--accent-2); }
body.theme-red .btn-ghost {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.2);
}
body.theme-red .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--ink);
}

/* Marquee */
body.theme-red .marquee { background: var(--accent); color: var(--white); }

/* About feature */
body.theme-red .about-feature { background: var(--bg); }
body.theme-red .about-feature-left h2 { color: var(--ink); }
body.theme-red .feature-list::before {
  background: linear-gradient(to bottom, var(--accent), rgba(0, 0, 0, 0.08));
}
body.theme-red .feature-icon {
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--bg);
}
body.theme-red .feature-item:hover .feature-icon { background: var(--accent-2); }
body.theme-red .feature-content h3 { color: var(--ink); }
body.theme-red .feature-content p { color: var(--ink-soft); }
body.theme-red .about-feature-lead { color: var(--ink-soft); }
body.theme-red .about-feature-lead strong { color: var(--ink); }
body.theme-red .about-image-wrap { border-color: var(--line); }
body.theme-red .stat-overlay { background: var(--accent); color: var(--white); }

/* Section titles & labels */
body.theme-red .section-title { color: var(--ink); }
body.theme-red .section-label { color: var(--accent); }

/* Services */
body.theme-red .services { background: var(--bg-2); }
body.theme-red .service-card {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink);
}
body.theme-red .service-card:hover {
  background: linear-gradient(135deg, var(--bg), rgba(230, 57, 70, 0.05));
  border-color: var(--accent);
}
body.theme-red .service-card h3 { color: var(--ink); }
body.theme-red .service-card p { color: var(--ink-soft); }
body.theme-red .service-num { color: var(--muted); }
body.theme-red .service-card:hover .service-num { color: var(--accent); }
body.theme-red .service-link { color: var(--accent); }
body.theme-red .service-link:hover { color: var(--accent-2); }
body.theme-red .service-card.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: var(--white);
}
body.theme-red .service-card.highlight h3 { color: var(--white); }
body.theme-red .service-card.highlight p { color: rgba(255, 255, 255, 0.85); }
body.theme-red .service-card.highlight .service-num { color: rgba(255, 255, 255, 0.6); }
body.theme-red .service-card.highlight .service-link { color: var(--warm); }

/* Product grid */
body.theme-red .product-card {
  background: var(--bg);
  border-color: var(--line);
}
body.theme-red .product-card:hover { border-color: var(--accent); }
body.theme-red .product-body h3 { color: var(--ink); }
body.theme-red .product-body p { color: var(--ink-soft); }
body.theme-red .product-cat { color: var(--muted); }
body.theme-red .product-link { color: var(--accent); }
body.theme-red .feat-chip {
  background: rgba(230, 57, 70, 0.08);
  border-color: var(--line);
  color: var(--ink-soft);
}
body.theme-red .product-thumb {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}
body.theme-red .product-thumb::after {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
}
body.theme-red .product-tag { background: var(--accent); color: var(--white); }
body.theme-red .product-tag.warm { background: var(--warm); color: var(--ink); }

/* Reviews */
body.theme-red .reviews-section { background: var(--bg-2); }
body.theme-red .reviews-section::before {
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08), transparent 60%);
}
body.theme-red .google-rating-badge {
  background: var(--bg);
  border-color: var(--line);
}
body.theme-red .google-rating-badge .rate-text { color: var(--ink-soft); }
body.theme-red .google-rating-badge .rate-text strong { color: var(--ink); }
body.theme-red .review-card {
  background: var(--bg);
  border-color: var(--line);
}
body.theme-red .review-card:hover { border-color: var(--accent); }
body.theme-red .review-text { color: var(--ink-soft); }
body.theme-red .review-author { border-top-color: var(--line); }
body.theme-red .review-author-name { color: var(--ink); }
body.theme-red .review-author-meta { color: var(--muted); }

/* CTA band */
body.theme-red .cta-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
body.theme-red .cta-band::before {
  background: radial-gradient(circle, rgba(244, 162, 97, 0.2), transparent 60%);
}
body.theme-red .btn-light { background: var(--white); color: var(--accent); }
body.theme-red .btn-light:hover { background: var(--bg-3); }

/* Footer */
body.theme-red .footer { background: #1a0808; }
body.theme-red .footer-big {
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Float button */
body.theme-red .float-btn.phone { background: var(--accent); }
body.theme-red .float-btn.phone:hover { background: var(--accent-2); }
body.theme-red .float-btn.phone::before { border-color: var(--accent); }
body.theme-red .float-btn .float-label {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Brand cards (markalar sayfası) */
body.theme-red .brand-card {
  background: var(--bg);
  border-color: var(--line);
}
body.theme-red .brand-card:hover { border-color: var(--accent); }
body.theme-red .brand-logo { color: var(--ink); }
body.theme-red .brand-tag { color: var(--accent); }
body.theme-red .brand-body p { color: var(--ink-soft); }
body.theme-red .brand-cover::after {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4));
}

/* Model cards (Oticon/Rexton detay sayfaları) */
body.theme-red .model-card {
  background: var(--bg);
  border-color: var(--line);
}
body.theme-red .model-card:hover { border-color: var(--accent); }
body.theme-red .model-name { color: var(--ink); }
body.theme-red .model-type { color: var(--accent); }
body.theme-red .model-card p { color: var(--ink-soft); }
body.theme-red .model-tags { border-top-color: var(--line); }
body.theme-red .model-cover {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
}

/* Page hero (iç sayfalardaki büyük başlık alanı) */
body.theme-red .page-hero {
  background:
    radial-gradient(ellipse at top right, rgba(230, 57, 70, 0.12), transparent 50%),
    var(--bg);
}
body.theme-red .page-hero-bg { opacity: 0.12; filter: saturate(0.5); }
body.theme-red .page-hero-bg::after {
  background: linear-gradient(135deg, var(--bg) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}
body.theme-red .page-hero h1 { color: var(--ink); }
body.theme-red .page-hero h1 em { color: var(--accent); }
body.theme-red .page-hero .lead { color: var(--ink-soft); }
body.theme-red .breadcrumb { color: var(--muted); }
body.theme-red .breadcrumb a { color: var(--ink-soft); }
body.theme-red .breadcrumb a:hover { color: var(--accent); }

/* Process timeline (hizmet/about) */
body.theme-red .process { background: var(--bg); }
body.theme-red .process-list { border-top-color: var(--line); }
body.theme-red .process-item { border-bottom-color: var(--line); }
body.theme-red .process-item:hover { background: rgba(230, 57, 70, 0.04); }
body.theme-red .process-num { color: var(--accent); }
body.theme-red .process-content h3 { color: var(--ink); }
body.theme-red .process-content p { color: var(--ink-soft); }

/* About grid (hakkimizda) */
body.theme-red .about { background: var(--bg); }
body.theme-red .about-text { color: var(--ink-soft); }
body.theme-red .about-text strong { color: var(--ink); }
body.theme-red .about-list { border-top-color: var(--line); }
body.theme-red .about-list li {
  color: var(--ink);
  border-bottom-color: var(--line);
}
body.theme-red .about-list li:hover { color: var(--accent); }
body.theme-red .about-list span { color: var(--accent); }
body.theme-red .about-image-card { border-color: var(--line); }
body.theme-red .about-image-card::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}
body.theme-red .about-card { background: var(--bg-3); color: var(--ink); }
body.theme-red .about-card .about-card-num { color: var(--ink); }
body.theme-red .about-card .about-card-text { color: var(--ink-soft); }
body.theme-red .about-card .about-card-bar { background: rgba(0, 0, 0, 0.08); }
body.theme-red .about-card.secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
}
body.theme-red .about-card.secondary .quote { color: var(--warm); }
body.theme-red .about-card.secondary p { color: var(--white); }

/* FAQ */
body.theme-red .faq { background: var(--bg-2); }
body.theme-red .faq-item {
  background: var(--bg);
  border-color: var(--line);
}
body.theme-red .faq-item[open] { border-color: var(--accent); }
body.theme-red .faq-item summary { color: var(--ink); }
body.theme-red .faq-item summary:hover { color: var(--accent); }
body.theme-red .faq-icon::before,
body.theme-red .faq-icon::after { background: var(--ink); }
body.theme-red .faq-body { color: var(--ink-soft); }

/* Product detail page */
body.theme-red .product-visual {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-color: var(--line);
}
body.theme-red .product-visual::before {
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12), transparent 70%);
}
body.theme-red .product-info h1 { color: var(--ink); }
body.theme-red .product-info > p { color: var(--ink-soft); }
body.theme-red .product-specs { border-top-color: var(--line); }
body.theme-red .spec-row { border-bottom-color: var(--line); }
body.theme-red .spec-label { color: var(--muted); }
body.theme-red .spec-value { color: var(--ink); }
body.theme-red .product-features-list li { color: var(--ink-soft); }
body.theme-red .product-features-list li::before { color: var(--accent); }

/* Contact form */
body.theme-red .contact { background: var(--bg); }
body.theme-red .contact-text { color: var(--ink-soft); }
body.theme-red .contact-items { border-top-color: var(--line); }
body.theme-red .contact-item { border-bottom-color: var(--line); }
body.theme-red .contact-item-label { color: var(--muted); }
body.theme-red .contact-item-value { color: var(--ink); }
body.theme-red .contact-item-value a { color: var(--accent); }
body.theme-red .contact-form {
  background: var(--bg-3);
  border-color: var(--line);
}
body.theme-red .form-group label { color: var(--ink-soft); }
body.theme-red .form-group input,
body.theme-red .form-group select,
body.theme-red .form-group textarea {
  background: var(--bg);
  border-color: var(--line-strong);
  color: var(--ink);
}
body.theme-red .form-group input::placeholder,
body.theme-red .form-group textarea::placeholder { color: var(--muted); }
body.theme-red .form-group input:focus,
body.theme-red .form-group select:focus,
body.theme-red .form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
body.theme-red .form-note { color: var(--muted); }

/* Related products section */
body.theme-red .related-section { background: var(--bg-2); }

/* Campaign section (kampanya.html'de) */
body.theme-red .campaign {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
}
body.theme-red .campaign .section-label { color: var(--warm); }
body.theme-red .campaign-title { color: var(--white); }
body.theme-red .campaign-title .accent { color: var(--warm); }
body.theme-red .campaign-content p { color: rgba(255, 255, 255, 0.85); }
body.theme-red .campaign-circle { background: var(--white); color: var(--accent); }
body.theme-red .campaign-circle::before { border-color: rgba(255, 255, 255, 0.4); }

@media (max-width: 980px) {
  .services-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .about-feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-overlay { top: 20px; right: 20px; padding: 16px 20px; gap: 20px; }
  .stat-overlay-num { font-size: 1.6rem; }
  .stat-overlay-label { font-size: 0.72rem; max-width: 70px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-visual { position: static; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .product-features-list { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .page-hero { padding: 130px 0 60px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .service-card, .contact-form { padding: 28px; }
  .about-card { padding: 28px; }
  .campaign-circle { width: 240px; height: 240px; }
  .circle-percent { font-size: 3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .product-grid { grid-template-columns: 1fr; }
  .product-body { padding: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid.cols-3 { grid-template-columns: 1fr; }
  .stat-overlay { position: static; margin-top: -1px; border-radius: 0 0 var(--radius) var(--radius); justify-content: space-around; }
}
