@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   IDEAL REKLAM — Design System v3.0
   Corporate-Bold Theme (Soccer Club Inspired)
   ============================================================ */

:root {
  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Core Palette */
  --clr-bg:        #0a0c12;
  --clr-surface:   #111520;
  --clr-surface2:  #161b28;
  --clr-line:      rgba(255,255,255,0.07);

  /* Accent — vivid electric red-orange */
  --clr-accent:    #e8320a;
  --clr-accent2:   #ff5c2e;
  --clr-accent-dim:#b8280a;
  --accent-grd:    linear-gradient(135deg, #ff5c2e 0%, #cc2200 100%);

  /* Text */
  --clr-text:      #f0f2f8;
  --clr-muted:     #7a8199;
  --clr-muted2:    #4d5368;

  /* Shadows */
  --shadow-card:   0 8px 32px rgba(0,0,0,0.45);
  --shadow-hover:  0 20px 60px rgba(232,50,10,0.15);
  --shadow-glow:   0 0 40px rgba(232,50,10,0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(232,50,10,0.3);
  color: #fff;
}

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

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--clr-text);
}

p { color: var(--clr-muted); }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section-pad   { padding: 6rem 0; }
.section-pad-sm{ padding: 4rem 0; }

@media (max-width:768px) {
  .section-pad    { padding: 4rem 0; }
  .section-pad-sm { padding: 2.5rem 0; }
}

/* Grid helpers */
.grid   { display:grid; gap:2rem; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

@media (max-width:1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
}

/* ─── Utility classes ───────────────────────────────────── */
.text-center   { text-align: center; }
.text-accent   { color: var(--clr-accent2); }
.uppercase     { text-transform: uppercase; letter-spacing: 0.07em; }
.fw-900        { font-weight: 900; }

.accent-bar {
  display: inline-block;
  width: 3.5rem;
  height: 4px;
  background: var(--accent-grd);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent2);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-grd);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,50,10,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(232,50,10,0.5);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--clr-accent2);
  color: var(--clr-accent2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--clr-text);
  border: 1px solid var(--clr-line);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.1rem; }

/* Icon inside button */
.btn svg { width:1.1rem; height:1.1rem; fill:currentColor; flex-shrink:0; }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232,50,10,0.3);
}

.card-body { padding: 1.75rem; }

.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--clr-surface2);
  position: relative;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), opacity 0.5s;
  opacity: 0.85;
}
.card:hover .card-img {
  transform: scale(1.05);
  opacity: 1;
}

/* Tag badge on card */
.card-tag {
  display: inline-block;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

/* ─── Top Bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--clr-accent);
  padding: 0.6rem 0;
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-email {
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a, .topbar span { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-item svg { width:1rem; height:1rem; fill:currentColor; }

/* ─── Header / Nav ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,18,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--clr-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--accent-grd);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-text span { color: var(--clr-accent2); }

/* Nav links */
nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-muted);
  padding: 0.5rem 0.7rem;
  border-radius: 3px;
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-text);
  background: rgba(255,255,255,0.05);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1.1rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--clr-accent);
}

.header-cta { display: flex; align-items: center; gap: 1rem; }

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--clr-text);
  cursor: pointer;
  padding: 0.5rem;
}
.menu-btn svg { width:1.6rem; height:1.6rem; stroke:currentColor; fill:none; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-top: 2px solid var(--clr-accent);
  border-radius: 0 0 6px 6px;
  padding: 0.5rem;
  padding-top: 0.65rem;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: var(--shadow-card);
  z-index: 99;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.65rem;
  left: 0;
  right: 0;
  height: 0.65rem;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  padding: 0.6rem 1rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(232,50,10,0.1);
  color: var(--clr-accent2);
}

@media (max-width:1024px) {
  nav { display: none; }
  .header-cta .btn { display: none; }
  .menu-btn { display: block; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--clr-surface);
  border-left: 1px solid var(--clr-line);
  z-index: 200;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  transition: right 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-overlay {
  position: fixed; inset:0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 199;
  display: none;
}
.mobile-drawer-overlay.open { display:block; }

.drawer-close {
  align-self: flex-end;
  background: none; border: none;
  color: var(--clr-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(232,50,10,0.12);
  color: var(--clr-accent2);
}
.mobile-nav-section {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-muted2);
  padding: 1.25rem 1rem 0.5rem;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
  padding: 0;
}

/* Hero reveal slider (draggable curtain) */
.hero-reveal {
  --reveal: 42%;
  position: relative;
  height: clamp(460px, calc(100vh - 10.5rem), 560px);
  min-height: 0;
  max-height: 560px;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.hero-reveal-panel {
  position: absolute;
  inset: 0;
}

.hero-reveal-text {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-reveal-text .container {
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 0 2rem;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

@media (max-width:1024px) {
  .hero-reveal { min-height: auto; touch-action: auto; user-select: auto; }
  .hero-reveal-text {
    position: relative;
    clip-path: none;
    inset: auto;
  }
  .hero-reveal-image {
    position: relative;
    clip-path: none !important;
    inset: auto;
  }
  .hero-reveal-handle { display: none !important; }
  .hero-content { padding: 5rem 0 2rem; text-align: center; max-width: none; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--clr-accent);
}
.hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clr-accent2);
}

.hero-title {
  font-size: clamp(2.25rem, 3.8vw, 4.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--clr-text);
}
.hero-title em {
  font-style: normal;
  color: var(--clr-accent2);
}

.hero-desc {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
@media (max-width:1024px) {
  .hero-desc { margin-left:auto; margin-right:auto; }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width:1024px) {
  .hero-actions { justify-content: center; }
}

/* Image layer (revealed on drag) — full-width 16:6 panorama from left edge */
.hero-reveal-image {
  z-index: 1;
  clip-path: inset(0 0 0 var(--reveal));
  background: var(--clr-bg);
  padding: 0;
  overflow: hidden;
}

.hero-visual-img,
.hero-visual-picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-visual-img {
  object-fit: cover;
  object-position: left center;
}

.hero-reveal-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(to top, var(--clr-bg), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

@media (max-width:1024px) {
  .hero-reveal-image {
    height: 45vw;
    min-height: 260px;
  }
}

/* Draggable divider handle */
.hero-reveal-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  transform: translateX(-50%);
  width: 48px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 10;
  touch-action: none;
}

.hero-reveal-handle:focus-visible {
  outline: 2px solid var(--clr-accent2);
  outline-offset: 2px;
}

.hero-reveal-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: var(--clr-accent);
  box-shadow: 0 0 20px rgba(232, 50, 10, 0.45);
  pointer-events: none;
}

.hero-reveal-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  border: 3px solid var(--clr-bg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-reveal-handle-grip svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

/* Full HD (1920×1080) — compact hero proportions */
@media (min-width: 1025px) and (max-width: 1920px) and (min-height: 900px) {
  .hero-reveal {
    height: 520px;
    max-height: 520px;
  }
  .hero-content {
    padding: 1.25rem 0 1.5rem;
  }
}

/* ─── Stats Banner ────────────────────────────────────────── */
.stats-banner {
  background: var(--clr-accent);
  padding: 0;
}
.stats-banner-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
@media (max-width:768px) {
  .stats-banner-inner { grid-template-columns: repeat(2,1fr); }
}

.stat-cell {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
  transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(0,0,0,0.12); }

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-lbl {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
}

/* ─── Services Section ─────────────────────────────────────── */
.services-section {
  background: var(--clr-bg);
}

.service-card {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
}
.service-card:hover .service-card-img {
  transform: scale(1.06);
  opacity: 0.95;
}

.service-card-body {
  padding: 1.75rem;
  position: relative;
}
.service-card-body::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--clr-accent);
  margin-bottom: 1rem;
}

.service-card-body h3 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.service-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent2);
  transition: gap 0.3s;
}
.service-card-link:hover { gap: 0.75rem; }
.service-card-link svg { width:1rem; height:1rem; stroke:currentColor; fill:none; transition: transform 0.3s; }
.service-card-link:hover svg { transform: translateX(3px); }

/* ─── Why Us / Feature Strips ─────────────────────────────── */
.features-section {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-line);
  border-bottom: 1px solid var(--clr-line);
}

.features-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width:1024px) {
  .features-split { grid-template-columns: 1fr; gap: 3rem; }
}

.features-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.features-visual-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.features-visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-icon-box {
  width: 3rem;
  height: 3rem;
  background: rgba(232,50,10,0.1);
  border: 1px solid rgba(232,50,10,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent2);
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: background 0.3s, border-color 0.3s;
}
.feature-item:hover .feature-icon-box {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.feature-item-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.feature-item-content p {
  font-size: 0.925rem;
  line-height: 1.65;
}

/* ─── Process / Çalışma Şekli ─────────────────────────────── */
.process-section { background: var(--clr-bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--clr-line);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width:768px) {
  .process-steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:480px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--clr-line);
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--clr-surface2); }

.process-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232,50,10,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ─── CTA Banner / Strip ──────────────────────────────────── */
.cta-strip {
  background: var(--clr-surface2);
  border-top: 3px solid var(--clr-accent);
  padding: 4.5rem 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-size: clamp(1.75rem,3vw,2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.cta-strip-text p {
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.65;
}
.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-section { background: var(--clr-surface); border-top:1px solid var(--clr-line); }

.testimonial-slider {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--clr-line);
}
.testimonial-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 3rem 3.5rem;
  background: var(--clr-surface);
  box-sizing: border-box;
}
@media (max-width:640px) {
  .testimonial-slide { padding: 2rem; }
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 0.6;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(232,50,10,0.15);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-accent2);
  flex-shrink: 0;
}
.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.t-dot {
  width: 8px; height:8px;
  border-radius: 50%;
  background: var(--clr-muted2);
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active {
  background: var(--clr-accent);
  width: 24px;
  border-radius: 4px;
}
.t-btn {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-line);
  color: var(--clr-muted);
  width: 2.25rem; height:2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.t-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.t-btn svg { width:0.9rem; height:0.9rem; stroke:currentColor; fill:none; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--clr-bg); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width:1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.faq-list { display:flex; flex-direction:column; gap:0.75rem; }

.faq-item {
  border-radius: 4px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--clr-accent); }

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.faq-header span,
.faq-header h3.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.35;
}
.faq-icon {
  width: 1.25rem; height:1.25rem;
  flex-shrink:0;
  color: var(--clr-accent2);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-body {
  padding: 0 1.5rem 1.5rem;
  max-height: 480px;
}

.faq-item.reveal.open,
.faq-item.reveal.open.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Contact Layout ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width:1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info { display:flex; flex-direction:column; gap:1.75rem; }
.contact-info-item { display:flex; gap:1rem; align-items:flex-start; }
.contact-info-icon {
  width:3rem; height:3rem;
  border-radius:4px;
  background: rgba(232,50,10,0.1);
  border: 1px solid rgba(232,50,10,0.25);
  display:flex; align-items:center; justify-content:center;
  color: var(--clr-accent2);
  flex-shrink:0;
  font-size:1.1rem;
}
.contact-info-item h4 {
  font-size:1rem;
  font-weight:700;
  margin-bottom:0.25rem;
  text-transform: uppercase;
}
.contact-info-item p, .contact-info-item a {
  font-size:0.9rem;
  color: var(--clr-muted);
}
.contact-info-item a:hover { color: var(--clr-accent2); }

.map-box {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--clr-line);
  height: 320px;
  margin-top: 2rem;
}

/* ─── Forms ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width:640px) {
  .form-row { grid-template-columns: 1fr; }
}

label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
select,
textarea {
  background: var(--clr-surface2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-text);
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--clr-accent);
}

/* ─── Pricing / Calculator ──────────────────────────────── */
.calc-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width:1024px) {
  .calc-layout { grid-template-columns: 1fr; }
}

.calc-form { display:flex; flex-direction:column; gap:1.5rem; }

.calc-result {
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  border-top: 3px solid var(--clr-accent);
  border-radius: 6px;
  padding: 2rem;
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--clr-line);
  font-size: 0.925rem;
}
.calc-result-row:last-of-type { border-bottom: none; }
.calc-result-total {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--clr-line);
}
.calc-result-total .calc-result-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-result-total .calc-result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-accent2);
}
.calc-result-label { color: var(--clr-muted); }
.calc-result-value { font-weight: 700; }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--clr-surface);
  border-top: 3px solid var(--clr-accent);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width:1024px) {
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-text {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-top: 1.25rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent2);
  margin-bottom: 1.25rem;
}

.footer-links { display:flex; flex-direction:column; gap:0.7rem; }
.footer-link {
  font-size: 0.875rem;
  color: var(--clr-muted);
  transition: color 0.25s, padding-left 0.25s;
}
.footer-link:hover { color: var(--clr-text); padding-left: 0.4rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  width:0.9rem; height:0.9rem;
  fill:none; stroke: var(--clr-accent2);
  flex-shrink:0;
  margin-top: 0.15rem;
}
.footer-contact-item a:hover { color: var(--clr-text); }

.footer-bottom {
  border-top: 1px solid var(--clr-line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--clr-muted2);
}

/* ─── Floating Buttons ────────────────────────────────────── */
.floating-actions {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 90;
}

.floating-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.floating-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.whatsapp-float { background: #25d366; }
.whatsapp-float svg { width:1.4rem; height:1.4rem; fill:#fff; }
.back-to-top {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-line);
  color: var(--clr-text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.back-to-top.show { opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top svg { width:1.1rem; height:1.1rem; stroke:currentColor; fill:none; }
.back-to-top:hover { background: var(--clr-accent); border-color: var(--clr-accent); }

/* ─── Page Banner (inner pages) ──────────────────────────── */
.page-banner {
  background: var(--clr-surface);
  border-bottom: 3px solid var(--clr-accent);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(232,50,10,0.08)'/%3E%3C/svg%3E") repeat;
}
.page-banner-content { position: relative; z-index:1; }
.page-banner h1 {
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
}
.page-banner-breadcrumb a { color: var(--clr-muted); transition: color 0.2s; }
.page-banner-breadcrumb a:hover { color: var(--clr-accent2); }
.page-banner-breadcrumb .sep { color: var(--clr-accent); }

/* ─── Product Page Specs Table ─────────────────────────── */
.spec-table { width:100%; border-collapse:collapse; }
.spec-table tr { border-bottom: 1px solid var(--clr-line); }
.spec-table tr:last-child { border-bottom:none; }
.spec-table td {
  padding: 0.9rem 1rem;
  font-size:0.9rem;
  vertical-align:top;
}
.spec-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
  width: 40%;
}
.spec-table td:last-child { color: var(--clr-text); }

/* ─── Reveal / Animate on Scroll ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Misc Utilities ─────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--clr-line);
  margin: 3rem 0;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
}
.badge-accent { background: var(--clr-accent); color: #fff; }
.badge-outline { border: 1px solid var(--clr-line); color: var(--clr-muted); }

.number-accent {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--clr-accent2);
}

/* Glow pulse */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,50,10,0); }
  50%      { box-shadow: 0 0 0 8px rgba(232,50,10,0.12); }
}
.pulse { animation: pulse-glow 3s ease infinite; }

/* Diagonal stripe decoration */
.stripe-deco {
  position: relative;
  overflow: hidden;
}
.stripe-deco::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-grd);
  transform: skewY(-3deg);
}
