/* ═══════════════════════════════════════════════════════
   ONYETECH CREATIVE HUB — Premium Business Website
   Brand Colors: Navy #1B2D5B · Gold #B8964E · White #FFFFFF
   ═══════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1B2D5B;
  --navy-dark:  #0F1D3D;
  --navy-mid:   #243570;
  --gold:       #B8964E;
  --gold-light: #D4AF72;
  --gold-pale:  #F5EDD8;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --text:       #2C2C2C;
  --text-light: #6B7280;
  --border:     rgba(27,45,91,0.12);
  --shadow-sm:  0 2px 12px rgba(27,45,91,0.08);
  --shadow-md:  0 8px 32px rgba(27,45,91,0.12);
  --shadow-lg:  0 20px 60px rgba(27,45,91,0.18);
  --radius:     14px;
  --radius-lg:  24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;   /* Hero titles, big quotes */
  --font-head:    'Playfair Display', Georgia, serif;     /* Section & card headings */
  --font-body:    'Jost', system-ui, sans-serif;          /* Body, nav, UI, labels   */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:      80px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body); color: var(--text); background: var(--white);
  overflow-x: hidden; line-height: 1.7; font-size: 15px;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--dark .section-title { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label--light { color: var(--gold-light); }
.section-label::before, .section-label::after {
  content: ''; width: 28px; height: 1px; background: currentColor; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px);
  font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-sub { color: var(--text-light); font-size: 16px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  padding: 14px 32px; border-radius: 50px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(184,150,78,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,150,78,0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  padding: 13px 30px; border-radius: 50px; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,150,78,0.08); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); padding: 18px; font-size: 15px; }

/* ─── PRELOADER ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.preloader-inner img { width: 220px; animation: preloaderPulse 1.5s ease infinite; }
.preloader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.preloader-bar span { display: block; height: 100%; background: var(--gold); border-radius: 2px; animation: preloaderBar 1.8s ease forwards; }
@keyframes preloaderPulse { 0%,100%{opacity:0.7;transform:scale(0.98)} 50%{opacity:1;transform:scale(1.02)} }
@keyframes preloaderBar { 0%{width:0} 100%{width:100%} }

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
  background: rgba(15,29,61,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 40px;
}
.nav-logo img { height: 32px; width: auto; filter: invert(68%) sepia(38%) saturate(650%) hue-rotate(6deg) brightness(92%) contrast(88%); }
#navbar:not(.scrolled) .nav-logo img { filter: invert(68%) sepia(38%) saturate(650%) hue-rotate(6deg) brightness(92%) contrast(88%); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em; transition: color 0.25s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 13px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2B4080 100%);
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,150,78,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(184,150,78,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 2px; height: 2px; background: var(--gold);
  border-radius: 50%; opacity: 0; animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-10px) scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

.container.hero-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding-top: 40px; padding-bottom: 40px;
  max-width: 800px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(184,150,78,0.15); border: 1px solid rgba(184,150,78,0.3);
  color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; width: fit-content; margin-bottom: 28px;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulseDot 1.8s ease infinite; }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(184,150,78,0.5)} 50%{box-shadow:0 0 0 6px rgba(184,150,78,0)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700; color: var(--white); line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.hero-title em { color: var(--gold-light); font-style: normal; }

.hero-subtitle { font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 44px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-scroll { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.45); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line { width: 48px; height: 1px; background: currentColor; position: relative; }
.scroll-line::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 100%; background: var(--gold); animation: scrollLine 2.2s ease infinite; transform-origin: left; }
@keyframes scrollLine { 0%,100%{transform:scaleX(0);opacity:0} 40%{transform:scaleX(1);opacity:1} 70%{transform:scaleX(1);opacity:1} 100%{transform:scaleX(0);opacity:0;transform-origin:right} }

.hero-image-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; display: flex; align-items: flex-end; justify-content: center;
}
.hero-image-wrap { position: relative; width: 100%; height: 100%; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--navy-dark) 0%, transparent 35%),
              linear-gradient(to top, var(--navy-dark) 0%, transparent 20%);
}
.hero-image-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 2;
}

/* ─── MARQUEE STRIP ─────────────────────────────────────── */
.marquee-strip {
  background: var(--gold); padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(184,150,78,0.3);
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: white; }
.marquee-track .sep { color: rgba(255,255,255,0.5); font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.service-card {
  background: var(--white);
  padding: 44px 38px 38px;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { background: var(--navy-dark); z-index: 1; }
.service-card:hover h3 { color: var(--white); }
.service-card:hover .service-num { color: rgba(184,150,78,0.25); }
.service-card:hover .service-num-line { background: rgba(184,150,78,0.3); }
.service-card:hover .service-divider { background: rgba(255,255,255,0.1); }
.service-card:hover .service-icon { background: rgba(184,150,78,0.15); }
.service-card:hover .service-icon svg { color: var(--gold-light); }
.service-card:hover p { color: rgba(255,255,255,0.65); }
.service-card:hover .service-list li { color: rgba(255,255,255,0.8); }
.service-card:hover .service-list li::before { background: var(--gold); }
.service-card:hover .service-link { color: var(--gold-light); }

.service-card--wide { grid-column: span 1; }

/* Card top row: number + icon */
.service-card__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px;
}
.service-num {
  font-family: var(--font-head); font-size: 52px; font-weight: 900; line-height: 1;
  color: rgba(27,45,91,0.1); letter-spacing: -2px;
  transition: color var(--transition);
  position: relative;
}
.service-num-line {
  display: block; width: 28px; height: 2px; background: var(--gold);
  margin-top: 6px; transition: background var(--transition);
}

.service-divider {
  height: 1px; background: var(--border);
  margin-bottom: 24px; transition: background var(--transition);
}

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(27,45,91,0.06), rgba(184,150,78,0.08));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--transition);
}
.service-icon svg { width: 24px; height: 24px; color: var(--navy); transition: color var(--transition); }

.service-card h3 {
  font-family: var(--font-display); font-size: 22px; color: var(--navy);
  margin-bottom: 10px; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em; transition: color var(--transition);
}
.service-card > p { color: var(--text-light); font-size: 13.5px; margin-bottom: 20px; line-height: 1.7; transition: color var(--transition); flex: 1; }

.service-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.service-list li {
  font-size: 13px; color: var(--text); padding-left: 16px; position: relative;
  transition: color var(--transition);
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
  transition: background var(--transition);
}

.service-link {
  font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.1em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.25s; margin-top: auto;
}
.service-link span { transition: transform 0.25s; font-size: 14px; }
.service-link:hover { color: var(--gold); }
.service-card:hover .service-link:hover { color: var(--gold-light); }
.service-link:hover span { transform: translateX(4px); }

/* ─── ABOUT THE TEAM ─────────────────────────────────────── */
.about-header {
  max-width: 720px; margin: 0 auto 64px; text-align: center;
}
.about-intro {
  font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-top: 16px;
}
.about-intro em { color: var(--gold-light); font-style: normal; font-weight: 600; }

/* Story blocks */
.about-story {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 48px;
}
.about-story__block {
  background: rgba(255,255,255,0.03);
  padding: 40px 32px; display: flex; flex-direction: column; gap: 16px;
  transition: background var(--transition);
}
.about-story__block:hover { background: rgba(255,255,255,0.07); }
.about-story__icon {
  width: 48px; height: 48px;
  background: rgba(184,150,78,0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-story__icon svg { width: 22px; height: 22px; color: var(--gold); }
.about-story__block h4 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--white); margin: 0;
}
.about-story__block p {
  font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.75; margin: 0;
}

/* Lead profile card */
.about-lead {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 52px 56px;
  background: rgba(255,255,255,0.03);
  position: relative; overflow: hidden;
}
.about-lead::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.about-lead__header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 28px;
}
.about-lead__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.about-cta { text-align: center; margin-top: 48px; }
.btn-outline--gold {
  border-color: rgba(184,150,78,0.45) !important;
  color: var(--gold-light) !important;
}
.btn-outline--gold:hover {
  border-color: var(--gold) !important;
  background: rgba(184,150,78,0.1) !important;
  color: var(--gold-light) !important;
}
.about-lead__line {
  flex: 1; height: 1px; background: rgba(255,255,255,0.1); margin-left: 16px;
}
.about-lead__bio {
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.85;
  margin-bottom: 18px;
}
.about-lead__bio strong { color: var(--gold-light); font-weight: 600; }

.about-lead__tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px;
}
.about-lead__tags span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid rgba(184,150,78,0.35);
  color: var(--gold-light); background: rgba(184,150,78,0.08);
}

/* ─── SERVICES PRICING BADGES ────────────────────────────── */
.services-pricing-note {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-pale); border: 1px solid rgba(184,150,78,0.3);
  color: var(--navy); font-size: 12px; font-weight: 600;
  padding: 7px 16px; border-radius: 50px; letter-spacing: 0.04em;
  -webkit-tap-highlight-color: transparent; user-select: none;
}
.pricing-badge svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why-section { background: var(--off-white); }

/* Header — centered */
.why-header {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: 640px; margin: 0 auto 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.why-header .section-title { margin-bottom: 16px; }
.why-header__desc {
  font-size: 15px; color: var(--text-light); line-height: 1.75;
  margin-bottom: 28px; max-width: 520px;
}
.why-header__cta { align-self: center; }

/* Pillars — vertical list */
.why-pillars {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
}
.why-pillar {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: default;
}
.why-pillar--last { border-bottom: none; }
.why-pillar:hover { background: var(--navy-dark); }
.why-pillar:hover .why-pillar__num { color: rgba(184,150,78,0.2); }
.why-pillar:hover .why-pillar__connector { background: rgba(184,150,78,0.2); }
.why-pillar:hover h4 { color: var(--white); }
.why-pillar:hover p  { color: rgba(255,255,255,0.65); }
.why-pillar:hover .why-pillar__icon { background: rgba(184,150,78,0.18); }
.why-pillar:hover .why-pillar__icon svg { color: var(--gold-light); }
.why-pillar:hover .why-pillar__tag { background: rgba(184,150,78,0.15); color: var(--gold-light); border-color: rgba(184,150,78,0.3); }

/* Left column: number + connector line */
.why-pillar__left {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 32px 36px 40px; flex-shrink: 0; width: 110px;
  border-right: 1px solid var(--border);
}
.why-pillar:hover .why-pillar__left { border-color: rgba(255,255,255,0.08); }
.why-pillar__num {
  font-family: var(--font-head); font-size: 38px; font-weight: 900;
  color: rgba(27,45,91,0.12); line-height: 1; transition: color var(--transition);
}
.why-pillar__connector {
  flex: 1; width: 1px; background: var(--border); margin-top: 12px;
  transition: background var(--transition);
}

/* Right column: body */
.why-pillar__body {
  display: flex; align-items: center; gap: 28px;
  padding: 36px 40px; flex: 1;
}
.why-pillar__icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.why-pillar__icon svg { width: 24px; height: 24px; color: var(--gold); transition: color var(--transition); }
.why-pillar__text { flex: 1; }
.why-pillar__text h4 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em;
  transition: color var(--transition);
}
.why-pillar__text p {
  font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0;
  transition: color var(--transition);
}
.why-pillar__tag {
  flex-shrink: 0;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--off-white);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 6px 16px; transition: var(--transition);
}

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { padding: 36px 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; color: var(--gold); }
.why-card h4 { font-family: var(--font-head); font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 44px 36px; position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(184,150,78,0.3); transform: translateY(-4px); }
.testimonial-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,150,78,0.35);
  background: rgba(184,150,78,0.08); padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
}
.quote-mark { font-family: var(--font-head); font-size: 80px; color: var(--gold); opacity: 0.3; line-height: 0.7; margin-bottom: 24px; }
.testimonial-card > p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.75; margin-bottom: 32px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
}
.testimonial-author strong { display: block; font-size: 14px; color: white; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }

.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.contact-item:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateX(4px); }
.contact-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-item strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
.contact-item span { font-size: 13px; color: var(--text-light); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px; background: var(--navy); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(184,150,78,0.35); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: var(--off-white); transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,45,91,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 14px; }

.form-success-banner {
  display: flex; align-items: flex-start; gap: 16px;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px;
  animation: fadeSlideIn 0.4s ease;
}
.form-success-banner svg { width: 28px; height: 28px; color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.form-success-banner strong { display: block; font-size: 15px; color: #15803d; margin-bottom: 4px; }
.form-success-banner span { font-size: 13px; color: #166534; }
@keyframes fadeSlideIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 40px; filter: invert(68%) sepia(38%) saturate(650%) hue-rotate(6deg) brightness(92%) contrast(88%); margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.5); }
.footer-links h5, .footer-newsletter h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 10px 14px; color: white; font-family: var(--font-body); font-size: 13px; outline: none; transition: border-color 0.25s; }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form .btn-primary { padding: 10px 18px; font-size: 12.5px; border-radius: 8px; }

.footer-bottom { padding: 24px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color 0.25s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────────── */
#whatsappFloat {
  position: fixed; bottom: 90px; left: 32px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition); text-decoration: none;
}
#whatsappFloat svg { width: 28px; height: 28px; }
#whatsappFloat:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
#whatsappFloat::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4); animation: waPulse 2s ease infinite;
}
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.18);opacity:0} }
.wa-tooltip {
  position: absolute; left: 68px; background: var(--navy-dark); color: white;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  padding: 6px 12px; border-radius: 8px; pointer-events: none;
  opacity: 0; transform: translateX(-6px); transition: opacity 0.25s, transform 0.25s;
}
.wa-tooltip::after {
  content: ''; position: absolute; left: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-right-color: var(--navy-dark); border-left: none;
}
#whatsappFloat:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* WhatsApp contact item green accent */
.contact-icon--whatsapp { background: #25D366 !important; }
.contact-item--whatsapp:hover { border-color: #25D366 !important; background: #f0fdf4 !important; }

@media (max-width: 720px) {
  #whatsappFloat { bottom: 76px; left: 16px; width: 50px; height: 50px; }
  #whatsappFloat svg { width: 24px; height: 24px; }
}
@media (max-width: 480px) {
  #whatsappFloat { bottom: 70px; left: 14px; width: 46px; height: 46px; }
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; background: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 4px 16px rgba(184,150,78,0.4);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: var(--transition);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--navy); transform: translateY(-3px); }
#backToTop svg { width: 20px; height: 20px; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-fade { opacity: 0; transition: opacity 0.7s ease; }
.reveal-up.visible, .reveal-fade.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Full Media Query Coverage
   Breakpoints: 1280 · 1100 · 900 · 720 · 480 · 360
   ═══════════════════════════════════════════════════════ */

/* ── 1280px: Large desktop cap ──────────────────────────── */
@media (max-width: 1280px) {
  .container { padding: 0 28px; }
  .hero-title { font-size: clamp(40px, 5.5vw, 72px); }
  .about-inner { gap: 56px; }
  .contact-inner { gap: 56px; }
}

/* ── 1100px: Small desktop / large tablet landscape ─────── */
@media (max-width: 1100px) {
  /* Layout */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .service-card--wide { grid-column: span 2; }
  .service-card--wide .service-list--cols { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Nav */
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 13px; }

  /* Typography */
  .section-title { font-size: clamp(28px, 3.5vw, 46px); }
  .stat-number { font-size: 46px; }
  .stat-plus { font-size: 30px; }

  /* Cards */
  .service-card { padding: 32px 28px; }
  .testimonial-card { padding: 36px 28px; }
  .contact-form-wrap { padding: 40px 36px; }
}

/* ── 900px: Tablet portrait ─────────────────────────────── */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  /* Section spacing */
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 52px; }

  /* Navbar — switch to hamburger */
  .nav-links {
    display: none; flex-direction: column; gap: 20px;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(15,29,61,0.98); backdrop-filter: blur(16px);
    padding: 28px 32px 36px; z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 6px 0; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 28px; }

  /* Hero */
  .container.hero-content { padding: 48px 28px; max-width: 100%; }
  .hero-title { font-size: clamp(36px, 7vw, 58px); }
  .hero-subtitle { font-size: 15px; max-width: 480px; }
  .hero-actions { justify-content: center; gap: 12px; }
  .hero-scroll { justify-content: center; }
  .btn-primary { padding: 13px 26px; font-size: 13.5px; }
  .btn-outline { padding: 12px 24px; font-size: 13.5px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about-story { grid-template-columns: 1fr; }
  .about-lead { padding: 36px 32px; }
  .about-lead__line { display: none; }

  /* Why Us */
  .why-header { margin-bottom: 40px; padding-bottom: 40px; }
  .why-pillar__body { padding: 28px; gap: 20px; }
  .why-pillar__left { width: 90px; padding: 28px 20px 28px 28px; }
  .why-pillar__tag { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 28px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 48px; }
  #footer { padding-top: 60px; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-form input { width: 100%; box-sizing: border-box; }
  .newsletter-form .btn-primary { width: 100%; max-width: none; justify-content: center; border-radius: 8px; box-sizing: border-box; }

  /* Contact send button */
  .btn-full { width: 100%; box-sizing: border-box; }

  /* Preloader */
  .preloader-inner img { width: 180px; }
}

/* ── 720px: Large mobile / small tablet ─────────────────── */
@media (max-width: 720px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 18px; }

  /* Section */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(24px, 6vw, 38px); }
  .section-sub { font-size: 14px; }

  /* Navbar */
  .nav-logo img { height: 26px; }
  .nav-links { padding: 24px 20px 32px; }
  .nav-links a { font-size: 15px; }

  /* Hero */
  .container.hero-content { padding: 40px 18px; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); line-height: 1.12; }
  .hero-subtitle { font-size: 14px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 40px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
  .hero-scroll { font-size: 10px; }

  /* Marquee */
  .marquee-track span { font-size: 11px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card--wide { grid-column: span 1; }
  .service-card--wide .service-list--cols { columns: 1; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 18px; }
  .service-icon { width: 48px; height: 48px; }

  /* About */
  .about-story { grid-template-columns: 1fr; }
  .about-lead { padding: 28px 22px; }
  .about-lead__header h3 { font-size: 20px; }
  .about-lead__bio { font-size: 14px; }
  .about-lead__tags span { font-size: 11px; padding: 6px 12px; }

  /* Why Us */
  .why-header { gap: 28px; margin-bottom: 36px; padding-bottom: 36px; }
  .why-pillar__body { padding: 22px 20px; gap: 16px; flex-wrap: wrap; }
  .why-pillar__left { width: 72px; padding: 22px 16px 22px 20px; }
  .why-pillar__num { font-size: 28px; }
  .why-pillar__icon { width: 46px; height: 46px; }
  .why-pillar__text h4 { font-size: 16px; }
  .why-pillar__text p { font-size: 13px; }

  /* Testimonials */
  .testimonial-card { padding: 28px 22px; }
  .quote-mark { font-size: 60px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .contact-item { padding: 14px 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand img { height: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; gap: 18px; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-form .btn-primary { width: 100%; max-width: none; justify-content: center; border-radius: 8px; box-sizing: border-box; }

  /* Back to top */
  #backToTop { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ── 480px: Standard mobile ─────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-h: 58px; }
  .container { padding: 0 16px; }

  /* Section */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  /* Navbar */
  .nav-logo img { height: 24px; }

  /* Hero */
  .hero-title { font-size: clamp(28px, 9vw, 40px); }
  .hero-subtitle { font-size: 13.5px; }

  /* Services */
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 17px; }
  .service-list li { font-size: 13px; }

  /* Why Us */
  .why-pillar__left { display: none; }
  .why-pillar__body { padding: 20px 18px; gap: 14px; }
  .why-quote-block { padding: 32px 28px; }
  .why-quote { font-size: 22px; }

  /* Testimonials */
  .testimonials-grid { max-width: 100%; }

  /* Contact */
  .contact-form-wrap { padding: 20px 16px; border-radius: var(--radius); }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 11px 14px; font-size: 13px; }
  .btn-full { padding: 16px; font-size: 14px; }

  /* Footer */
  #footer { padding-top: 44px; }
  .footer-links h5, .footer-newsletter h5 { font-size: 12px; }

  /* Preloader */
  .preloader-inner img { width: 150px; }
  .preloader-bar { width: 140px; }

  /* Back to top */
  #backToTop { bottom: 16px; right: 14px; width: 40px; height: 40px; border-radius: 10px; }
}

/* ── 360px: Very small mobile ───────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 13px; }
  .btn-primary, .btn-outline { font-size: 13px; padding: 12px 20px; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .service-card { padding: 20px 16px; }
  .contact-form-wrap { padding: 16px 12px; }
  .section-title { font-size: 22px; }
  .footer-inner { gap: 22px; }
  .nav-logo img { height: 22px; }
  .btn-full { padding: 14px; font-size: 13px; }
  .newsletter-form .btn-primary { font-size: 13px; padding: 11px 16px; width: 100%; }
}


/* ─── PROMO POPUP ────────────────────────────────────────── */
.promo-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10, 18, 40, 0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.promo-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-modal.premium-promo {
  max-width: 820px; width: 100%;
  display: flex; flex-direction: row;
  padding: 0; margin: auto;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(10, 18, 40, 0.15);
  max-height: 90vh;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  -ms-overflow-style: none; scrollbar-width: none;
  border: 1px solid rgba(184,150,78,0.2);
}
.promo-overlay.active .promo-modal.premium-promo {
  transform: translateY(0) scale(1);
}
.promo-modal.premium-promo::-webkit-scrollbar { display: none; }

.promo-modal__left {
  flex: 1;
  background: var(--off-white);
  padding: 60px 48px;
  color: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(184,150,78,0.15);
}

.promo-modal__right {
  flex: 1; background: var(--white);
  padding: 60px 48px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.premium-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: var(--transition);
  cursor: pointer;
}
.premium-close:hover { color: var(--navy); transform: rotate(90deg); }
.premium-close svg { width: 18px; height: 18px; }

.promo-modal__left .promo-badge {
  display: inline-block;
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin: 0 0 16px;
}
.promo-modal__left .promo-badge::before {
  content: '—'; margin-right: 8px;
}

.promo-modal__left .promo-title {
  font-family: var(--font-head); font-weight: 600;
  color: var(--navy); line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 20px; font-size: clamp(32px, 4vw, 42px);
}
.promo-modal__left .promo-title em { color: var(--gold); font-style: italic; font-weight: 400; }

.promo-modal__left .promo-price {
  margin: 0 0 20px;
}
.promo-modal__left .promo-price__amount {
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.5px;
}
.promo-modal__left .promo-price__note { font-size: 13px; color: var(--text-light); margin-left: 8px; font-style: italic; }

.promo-modal__left .promo-desc {
  font-size: 14px; color: var(--text); line-height: 1.8; margin: 0 0 28px;
}

.promo-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.promo-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); font-weight: 400; }
.promo-features svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.promo-form-wrapper { width: 100%; max-width: 340px; }
.promo-form-wrapper h3 { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.promo-form-wrapper > p { font-size: 13px; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }

.premium-promo .promo-form { padding: 0; }
.premium-promo .promo-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.premium-promo .promo-form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.premium-promo .promo-form__group label {
  font-size: 11px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.premium-promo .promo-form__group input,
.premium-promo .promo-form__group textarea {
  border: none; border-bottom: 1px solid var(--border); border-radius: 0;
  background: transparent; padding: 8px 0; font-family: var(--font-body);
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color 0.25s; width: 100%; box-sizing: border-box;
}
.premium-promo .promo-form__group input:focus,
.premium-promo .promo-form__group textarea:focus {
  border-bottom-color: var(--gold); box-shadow: none;
}
.premium-promo .promo-form__group textarea { resize: vertical; min-height: 40px; }

.premium-submit {
  background: var(--navy); color: white;
  border: 1px solid var(--navy); display: block; box-sizing: border-box; max-width: none;
  margin-top: 12px; padding: 14px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; width: 100%; cursor: pointer; font-family: var(--font-body); font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
.premium-submit:hover { background: transparent; color: var(--navy); }

.promo-form__note { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 14px; }

.promo-success {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 60px 48px;
  gap: 16px; height: 100%; min-height: 300px;
  width: 100%; box-sizing: border-box;
}
.promo-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.promo-success__icon svg { width: 24px; height: 24px; color: var(--gold); }
.promo-success h3 {
  font-family: var(--font-head); font-size: 28px;
  font-weight: 600; color: var(--navy); margin: 0;
}
.promo-success p { font-size: 14px; color: var(--text); max-width: 320px; margin: 0; line-height: 1.7; }

@media (max-width: 800px) {
  .promo-modal.premium-promo { flex-direction: column; max-height: 85vh; overflow-y: auto; }
  .promo-modal__left { padding: 40px 32px; border-right: none; border-bottom: 1px solid rgba(184,150,78,0.15); }
  .promo-modal__right { padding: 40px 32px; }
  .promo-modal__left .promo-title { font-size: 32px; }
}

@media (max-width: 480px) {
  .promo-modal__left { padding: 32px 24px; }
  .promo-modal__right { padding: 32px 24px; }
  .promo-modal__left .promo-title { font-size: 28px; }
  .premium-promo .promo-form__row { grid-template-columns: 1fr; }
  .promo-success { padding: 40px 20px; }
}