/* ============================================================
   BengkelML — Company Profile & Booking Website
   Design System: Soft Blue + Cream + Deep Navy
   ============================================================ */

/* ---- Google Fonts Loaded via HTML ---- */

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* Color Palette */
  --blue-light:     #7EC8E3;   /* Biru muda utama */
  --blue-mid:       #4A9EC4;   /* Biru menengah */
  --blue-dark:      #1A3A6B;   /* Biru tua sekunder */
  --blue-deeper:    #0E2147;   /* Biru paling gelap */
  --blue-slate:     #2C4A6E;   /* Biru ke abu-abuan (nuansa in-game) */
  --blue-slate-2:   #3B5F82;
  --blue-glow:      #5BAAFF;
  --cream:          #F7F3EE;   /* Krem lembut latar */
  --cream-2:        #EDE8E1;
  --cream-3:        #DDD7CE;
  --gold:           #D4A843;
  --gold-light:     #F0C565;
  --white:          #FFFFFF;
  --text-dark:      #1C2B3A;
  --text-mid:       #3D5166;
  --text-muted:     #6B849A;
  --text-light:     #CCDAE6;
  --success:        #27AE60;
  --warning:        #F39C12;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container-max: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26,58,107,0.08);
  --shadow-md:  0 8px 24px rgba(26,58,107,0.12);
  --shadow-lg:  0 16px 48px rgba(26,58,107,0.16);
  --shadow-xl:  0 24px 64px rgba(26,58,107,0.22);
  --shadow-glow: 0 0 30px rgba(91,170,255,0.35);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(14, 33, 71, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(91,170,255,0.5));
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--blue-light);
  background: rgba(126,200,227,0.1);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(91,170,255,0.3);
  white-space: nowrap;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,170,255,0.45);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--blue-deeper) 0%,
    var(--blue-dark) 40%,
    var(--blue-slate) 70%,
    #1E4A7A 100%
  );
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

/* Animated Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-100px) translateX(var(--drift)) scale(1); opacity: 0; }
}

/* Hero Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbPulse 6s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91,170,255,0.2), transparent 70%);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,158,196,0.15), transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,168,67,0.1), transparent 70%);
  top: 30%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.1) translate(15px, -10px); }
  66%       { transform: scale(0.9) translate(-10px, 15px); }
}

/* Hero Layout */
.hero > .hero-content,
.hero > .hero-visual {
  position: relative;
  z-index: 2;
}

.hero {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 48px;
  padding: 120px 10% 80px;
}

.hero-particles {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.hero-orbs {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,170,255,0.15);
  border: 1px solid rgba(91,170,255,0.3);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-glow);
  border-radius: 50%;
  animation: badgePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--blue-glow);
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title-em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-glow), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(91,170,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(91,170,255,0.55);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
  color: var(--white);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.feat-icon {
  font-size: 1rem;
}

/* Hero Visual */
.hero-img-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 580px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(91,170,255,0.2);
  border: 1px solid rgba(91,170,255,0.2);
  animation: heroImgFloat 4s ease-in-out infinite;
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(91,170,255,0.15), transparent 70%);
  border-radius: var(--border-radius-lg);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.hero-floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,33,71,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(91,170,255,0.3);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.float-badge-1 {
  top: 12%;
  left: -18%;
  animation: floatBadge 3s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 20%;
  right: -15%;
  animation: floatBadge 3.5s ease-in-out infinite 0.5s;
}

.float-badge-3 {
  bottom: 5%;
  left: -10%;
  animation: floatBadge 2.8s ease-in-out infinite 1s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fb-icon { font-size: 1rem; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--blue-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(91,170,255,0.15);
  border-bottom: 1px solid rgba(91,170,255,0.15);
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-badge-text {
  font-size: 1.4rem;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(74,158,196,0.12);
  border: 1px solid rgba(74,158,196,0.25);
  color: var(--blue-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   FILTER CHIPS
   ============================================================ */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--cream-3);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover {
  border-color: var(--blue-mid);
  color: var(--blue-dark);
  background: rgba(74,158,196,0.06);
  transform: translateY(-2px);
}

.chip.active {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(91,170,255,0.35);
  transform: translateY(-2px);
}

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,158,196,0.3);
}

.service-card.hidden {
  display: none;
}

.card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ci-hack      { background: linear-gradient(135deg, #1a3a6b, #2c6496); }
.ci-banned    { background: linear-gradient(135deg, #3b0a45, #6a1a7a); }
.ci-email     { background: linear-gradient(135deg, #0a3d5e, #0d5c8a); }
.ci-verifikasi { background: linear-gradient(135deg, #1a4a2e, #1e7a45); }
.ci-gm        { background: linear-gradient(135deg, #4a2a00, #8a5200); }
.ci-unbind    { background: linear-gradient(135deg, #2a1a5e, #4a30a0); }

.ci-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.badge-hack      { background: rgba(91,170,255,0.85); color: white; }
.badge-banned    { background: rgba(180,50,200,0.85); color: white; }
.badge-email     { background: rgba(30,120,200,0.85); color: white; }
.badge-verifikasi { background: rgba(39,174,96,0.85); color: white; }
.badge-gm        { background: rgba(212,168,67,0.9); color: white; }
.badge-unbind    { background: rgba(100,60,200,0.85); color: white; }

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rating-val {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.rating-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--cream-3);
}

.card-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(91,170,255,0.3);
}

.btn-card:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(91,170,255,0.45);
  color: var(--white);
}

/* ============================================================
   DETAIL CARDS
   ============================================================ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.detail-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-3);
  transition: var(--transition);
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: white;
}

.dh-hack      { background: linear-gradient(135deg, var(--blue-dark), var(--blue-slate-2)); }
.dh-banned    { background: linear-gradient(135deg, #3b0a45, #6a1a7a); }
.dh-email     { background: linear-gradient(135deg, #0a3d5e, var(--blue-slate)); }
.dh-verifikasi { background: linear-gradient(135deg, #1a4a2e, #1e7a45); }
.dh-gm        { background: linear-gradient(135deg, #4a3000, #8a6200); }
.dh-unbind    { background: linear-gradient(135deg, #2a1a5e, #4a30a0); }

.detail-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.detail-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2px;
}

.detail-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.detail-body {
  padding: 20px 24px;
}

.detail-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.detail-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 100px;
}

.di-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.di-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.di-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.detail-tip {
  display: flex;
  gap: 10px;
  background: rgba(126,200,227,0.08);
  border: 1px solid rgba(126,200,227,0.25);
  border-left: 3px solid var(--blue-mid);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.tip-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   CARA ORDER SECTION
   ============================================================ */
.section-order {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue-dark), var(--blue-slate));
  position: relative;
  overflow: hidden;
}

.section-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(91,170,255,0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,158,196,0.08), transparent 50%);
  pointer-events: none;
}

.section-tag-light {
  background: rgba(91,170,255,0.15);
  border-color: rgba(91,170,255,0.3);
  color: var(--blue-light);
}

.section-title-light {
  color: var(--white);
}

.section-desc-light {
  color: rgba(255,255,255,0.65);
}

.order-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.order-step {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(91,170,255,0.15);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}

.order-step:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(91,170,255,0.35);
  transform: translateY(-4px);
}

.step-num {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid));
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(91,170,255,0.5);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 8px;
}

.step-list {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.step-list li::before {
  content: '→ ';
  color: var(--blue-light);
  font-weight: 600;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(91,170,255,0.5);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0 10px;
  flex-shrink: 0;
  margin-top: 56px;
}

.order-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-order-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 40px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}

.btn-order-big:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
  color: var(--white);
}

/* ============================================================
   TESTIMONI SECTION
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testi-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(74,158,196,0.07);
  line-height: 1;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-card-featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-slate));
  border-color: rgba(91,170,255,0.3);
  color: white;
  transform: scale(1.02);
}

.testi-card-featured::before {
  color: rgba(255,255,255,0.07);
}

.testi-card-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-card-featured .testi-quote {
  color: rgba(255,255,255,0.8);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.ta-1 { background: linear-gradient(135deg, var(--blue-glow), var(--blue-mid)); }
.ta-2 { background: linear-gradient(135deg, var(--gold), #b8860b); }
.ta-3 { background: linear-gradient(135deg, #27ae60, #1e7a45); }

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.testi-card-featured .testi-name {
  color: white;
}

.testi-role {
  font-size: 0.77rem;
  color: var(--text-muted);
}

.testi-card-featured .testi-role {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-slate), var(--blue-slate-2));
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(91,170,255,0.12), transparent 60%);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-band-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  line-height: 1.7;
}

.cta-band-action {
  text-align: center;
  flex-shrink: 0;
}

.btn-cta-band {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.btn-cta-band:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.cta-band-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-deeper);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(91,170,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(91,170,255,0.2);
  border-color: rgba(91,170,255,0.4);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-contacts a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-contacts a:hover {
  color: var(--blue-light);
}

.fc-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-weight: 700;
  font-size: 0.875rem;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(37,211,102,0.55);
  color: white;
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.wa-label {
  letter-spacing: 0.02em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 5% 64px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    max-width: 540px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .float-badge-1 { left: 0; top: -10px; }
  .float-badge-2 { right: 0; bottom: 10%; }
  .float-badge-3 { left: 0; bottom: 5%; }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-steps {
    flex-wrap: wrap;
    gap: 32px;
  }

  .step-arrow {
    display: none;
  }

  .order-step {
    flex: 1;
    min-width: 200px;
  }

  .trust-divider-hide {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --section-py: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14,33,71,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .btn-cta-nav {
    font-size: 1rem;
    padding: 14px 28px;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

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

  .testi-card-featured:hover {
    transform: translateY(-6px);
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-note {
    text-align: center;
  }

  .trust-grid {
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    min-width: 45%;
  }

  .order-steps {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  .float-badge-1,
  .float-badge-2,
  .float-badge-3 {
    display: none;
  }

  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 12px 16px 12px 14px;
  }

  .wa-label {
    display: none;
  }

  .wa-float {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}

/* ============================================================
   SCROLL BAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--blue-mid);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(74,158,196,0.25);
  color: var(--blue-dark);
}

/* ============================================================
   FORM ORDER — Booking Form (Cara Order Section)
   ============================================================ */
.order-form-wrap {
  margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(91,170,255,0.2);
  border-radius: var(--border-radius-lg);
  padding: 40px 40px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(91,170,255,0.15);
}

.form-header-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(91,170,255,0.5));
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full { grid-column: 1 / -1; }

.form-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.label-icon { font-size: 0.95rem; }

.input-wrap { position: relative; }

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  caret-color: var(--blue-glow);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.28);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
}

.form-input:hover { border-color: rgba(255,255,255,0.28); }

.form-input:focus {
  background: rgba(91,170,255,0.1);
  border-color: var(--blue-glow);
  box-shadow: 0 0 0 4px rgba(91,170,255,0.12);
}

.input-focus-bar {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--blue-light));
  border-radius: 2px;
  transition: width 0.3s ease;
  pointer-events: none;
}

.form-input:focus ~ .input-focus-bar,
.form-select:focus ~ .input-focus-bar { width: calc(100% - 20px); }

.select-wrap { position: relative; }

.form-select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 13px 44px 13px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-select option { background: #0E2147; color: var(--white); }

.form-select:hover { border-color: rgba(255,255,255,0.28); }

.form-select:focus {
  background: rgba(91,170,255,0.1);
  border-color: var(--blue-glow);
  box-shadow: 0 0 0 4px rgba(91,170,255,0.12);
}

.form-select.rank-selected {
  color: var(--gold-light);
  border-color: rgba(212,168,67,0.6);
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.form-select:focus + .select-arrow {
  color: var(--blue-light);
  transform: translateY(-50%) rotate(180deg);
}

/* Rank badge below select */
.rank-badge-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.rank-badge-indicator.show { opacity: 1; transform: translateY(0); }

.rank-warrior   { background: rgba(140,100,60,0.25); color:#c8a060; border:1px solid rgba(180,130,70,0.4); }
.rank-elite     { background: rgba(100,140,180,0.2); color:#90c0e0; border:1px solid rgba(100,160,210,0.4); }
.rank-master    { background: rgba(80,120,200,0.2);  color:#80b0f0; border:1px solid rgba(80,130,220,0.4); }
.rank-gmaster   { background: rgba(100,60,160,0.2);  color:#b090e0; border:1px solid rgba(120,70,180,0.4); }
.rank-epic      { background: rgba(50,90,210,0.2);   color:#80aeff; border:1px solid rgba(60,100,220,0.4); }
.rank-legend    { background: rgba(200,140,40,0.2);  color:#f0c060; border:1px solid rgba(210,150,50,0.4); }
.rank-mythic    { background: rgba(180,40,60,0.2);   color:#f08090; border:1px solid rgba(190,50,70,0.4); }
.rank-mhonor    { background: rgba(100,20,180,0.25); color:#c080ff; border:1px solid rgba(130,40,210,0.5); }
.rank-mimmortal { background: rgba(200,160,0,0.2);   color:#ffe060; border:1px solid rgba(200,170,0,0.5); }

/* Upload Area */
.upload-area {
  position: relative;
  border: 2px dashed rgba(91,170,255,0.3);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.upload-area:hover {
  border-color: rgba(91,170,255,0.6);
  background: rgba(91,170,255,0.06);
}

.upload-area.drag-over {
  border-color: var(--blue-glow);
  background: rgba(91,170,255,0.12);
  box-shadow: 0 0 0 4px rgba(91,170,255,0.15);
}

.upload-area.has-file {
  border-style: solid;
  border-color: rgba(91,170,255,0.5);
  background: rgba(91,170,255,0.06);
}

.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  pointer-events: none;
  text-align: center;
  width: 100%;
}

.upload-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(91,170,255,0.35));
  animation: uploadBounce 3s ease-in-out infinite;
}

@keyframes uploadBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-7px) scale(1.06); }
}

.upload-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.upload-text strong {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(126,200,227,0.5);
}

.upload-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.32);
  margin-top: 2px;
}

.upload-preview {
  position: relative;
  width: 100%;
  padding: 14px;
}

.upload-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.upload-remove {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  background: rgba(220,50,50,0.85);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.upload-remove:hover {
  background: rgb(220,50,50);
  transform: scale(1.15) rotate(5deg);
}

.upload-filename {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 8px;
}

/* Form Submit */
.form-submit-wrap {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.btn-submit-form {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 44px;
  color: white;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-submit-form:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}

.btn-submit-form:active {
  transform: translateY(-1px) scale(0.99);
}

@media (max-width: 768px) {
  .order-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: 1; }
  .form-header { flex-direction: column; gap: 10px; }
  .btn-submit-form { width: 100%; justify-content: center; font-size: 0.95rem; padding: 16px 24px; }
}

