/* ============================================================
   LIQUID COURAGE CONSULTANTS — Main Stylesheet
   Brand: Dark charcoal base | Gold #D4A017 | Green #2A7B3B
   ============================================================ */

/* === VARIABLES === */
:root {
  --dark:        #080F06;
  --dark-2:      #0D160A;
  --dark-3:      #121C0F;
  --dark-card:   #161F13;
  --dark-border: rgba(255, 255, 255, 0.08);

  --gold:        #D4A017;
  --gold-light:  #F0C040;
  --gold-dark:   #A07810;
  --gold-alpha:  rgba(212, 160, 23, 0.15);
  --gold-glow:   rgba(212, 160, 23, 0.25);

  --green:       #38A158;
  --green-light: #4DBE70;
  --green-alpha: rgba(56, 161, 88, 0.15);

  --white:       #FFFFFF;
  --gray-50:     #F9F9F7;
  --gray-100:    #F2F2EE;
  --gray-200:    #E5E5DF;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --gray-800:    #2D3748;

  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow:      0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 30px rgba(212, 160, 23, 0.3);

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

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

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }

/* === UTILITIES === */
.text-gold { color: var(--gold); }
.text-green { color: var(--green-light); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--gold-alpha);
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.section-tag.green-tag {
  background: var(--green-alpha);
  color: var(--green-light);
  border-color: rgba(58, 174, 80, 0.3);
}

.section-tag.gold-tag {
  background: var(--gold-alpha);
  color: var(--gold);
  border-color: rgba(212, 160, 23, 0.3);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Light section headers */
.section-header.on-light h2 { color: var(--gray-800); }
.section-header.on-light p  { color: var(--gray-600); }

/* Dark section headers */
.section-header h2 { color: var(--white); }
.section-header p  { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn:hover::after { background: rgba(255, 255, 255, 0.07); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0A0A08;
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
  font-size: 0.85rem;
}

.btn-outline-dark:hover {
  background: var(--gray-800);
  color: var(--white);
  border-color: var(--gray-800);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; }

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

.navbar.scrolled {
  background: rgba(8, 15, 6, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A08;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.logo-mark-sm {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-alpha);
}

.nav-cta-btn { margin-left: 12px; }

.mobile-cta { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  cursor: pointer;
  padding: 9px 10px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* ============================================================
   HERO — Split layout (left: content | right: visual)
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-2);
}

/* ── Background image ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.07;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

/* ── Dark gradient overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 15, 6, 0.92) 0%, rgba(8, 15, 6, 0.6) 55%, rgba(8, 15, 6, 0.75) 100%);
  z-index: 1;
}

/* ── Subtle grid pattern ── */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── Ambient glow spots ── */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.hero-glow-gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
  top: -100px;
  right: 5%;
}
.hero-glow-green {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 214, 104, 0.1) 0%, transparent 70%);
  bottom: 80px;
  right: 15%;
}

/* ── Main two-column container ── */
.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
  padding-bottom: 60px;
}

/* ── LEFT: Content ── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Eyebrow line + label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.7s ease both;
}
.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Headline */
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero-title-top {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.hero-title-highlight {
  color: var(--gold);
  font-style: italic;
}

/* Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}

/* Glass outline button */
.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* Trust signals strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  padding: 0 18px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item i {
  font-size: 0.85rem;
  color: var(--gold);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ── RIGHT: Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  animation: fadeIn 1s ease 0.5s both;
}

/* Concentric decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-outer {
  width: 380px;
  height: 380px;
  border-color: rgba(212, 160, 23, 0.15);
  animation: ringRotate 30s linear infinite;
}
.ring-mid {
  width: 300px;
  height: 300px;
  border-color: rgba(212, 160, 23, 0.25);
  animation: ringRotate 20s linear infinite reverse;
}
.ring-inner {
  width: 220px;
  height: 220px;
  border-color: rgba(212, 160, 23, 0.4);
  animation: ringRotate 14s linear infinite;
}

/* Logo centered inside rings */
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, rgba(8,15,6,0.6) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.15), inset 0 0 30px rgba(212, 160, 23, 0.05);
}
.hero-logo-wrap img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(212, 160, 23, 0.3));
}

/* Floating service tags */
.hero-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(8, 15, 6, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-tag i { font-size: 0.75rem; color: var(--gold); }

.tag-top    { top: 8%;  left: 50%; transform: translateX(-50%); animation: tagFloat 4s ease-in-out infinite; }
.tag-right  { right: 2%; top: 50%; transform: translateY(-50%); animation: tagFloat 4s ease-in-out 1s infinite; }
.tag-bottom { bottom: 8%; left: 50%; transform: translateX(-50%); animation: tagFloat 4s ease-in-out 2s infinite; }
.tag-left   { left: 2%; top: 50%; transform: translateY(-50%); animation: tagFloat 4s ease-in-out 0.5s infinite; }

/* ── Stats bar (bottom) ── */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(8, 15, 6, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stats-bar .container { padding-top: 0; padding-bottom: 0; }

.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}

.stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 8px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(212, 160, 23, 0.3), transparent);
  flex-shrink: 0;
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  animation: heroBounce 2.5s ease-in-out infinite;
  transition: var(--transition);
}
.hero-scroll:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-alpha);
}

/* ── Hero keyframes ── */
@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes tagFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
/* tag-right and tag-left float vertically */
.tag-right { animation-name: tagFloatVert; }
.tag-left  { animation-name: tagFloatVert; }
@keyframes tagFloatVert {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50%       { transform: translateY(-50%) translateX(-6px); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Hero responsive ── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .trust-item:first-child { padding-left: 18px; }
  .hero-visual { height: 340px; }
  .ring-outer { width: 300px; height: 300px; }
  .ring-mid   { width: 240px; height: 240px; }
  .ring-inner { width: 180px; height: 180px; }
  .hero-logo-wrap { width: 130px; height: 130px; }
  .hero-logo-wrap img { width: 105px; height: 105px; }
  .tag-top    { top: 4%; }
  .tag-bottom { bottom: 4%; }
}

@media (max-width: 600px) {
  .hero-visual { height: 280px; }
  .ring-outer { width: 240px; height: 240px; }
  .ring-mid   { width: 190px; height: 190px; }
  .ring-inner { width: 140px; height: 140px; }
  .hero-logo-wrap { width: 106px; height: 106px; }
  .hero-logo-wrap img { width: 85px; height: 85px; }
  .hero-stats { padding: 20px 0; }
  .stat { min-width: 100px; padding: 8px 16px; }
  .stat-number { font-size: 1.8rem; }
  .hero-tag { font-size: 0.65rem; padding: 6px 12px; }
  .trust-item { font-size: 0.72rem; padding: 0 10px; }
}

/* ============================================================
   BRAND STRIP
   ============================================================ */
.brand-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: scrollStrip 28s linear infinite;
  width: max-content;
}

.brand-strip-inner span {
  color: #0A0A08;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-strip-inner .dot {
  width: 5px;
  height: 5px;
  background: rgba(10, 10, 8, 0.4);
  border-radius: 50%;
  padding: 0;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0 80px;
  background: var(--gray-50);
}

.services .section-header h2 { color: var(--gray-800); }
.services .section-header p  { color: var(--gray-600); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-alpha), var(--green-alpha));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--green-light));
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  color: var(--gray-800);
  margin-bottom: 10px;
  font-size: 1.03rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Clickable service cards */
.service-card[data-service] {
  cursor: pointer;
}

.service-cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.service-card:hover .service-cta-hint {
  opacity: 1;
  transform: translateX(0);
}

/* Resources CTA */
.services-cta {
  margin-top: 56px;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.services-cta p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.resource-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

.how-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.how-it-works::before,
.how-it-works::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 160, 23, 0.4) 50%, transparent 100%);
}

.how-it-works::before { top: 0; }
.how-it-works::after  { bottom: 0; }

.how-container { position: relative; z-index: 1; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 190px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(212, 160, 23, 0.12);
  line-height: 1;
  margin-bottom: -10px;
  transition: var(--transition);
}

.step:hover .step-number {
  color: rgba(212, 160, 23, 0.25);
}

.step-icon {
  width: 68px;
  height: 68px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.step:hover .step-icon {
  background: linear-gradient(135deg, var(--gold), var(--green-light));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.step h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 160, 23, 0.3);
  font-size: 1.1rem;
  padding-top: 72px;
  flex-shrink: 0;
  transition: var(--transition);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  padding: 100px 0;
  background: var(--white);
}

.industries .section-header h2 { color: var(--gray-800); }
.industries .section-header p  { color: var(--gray-600); }

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

.industry-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0 28px 40px;
  border-radius: var(--radius-xl);
  background-color: var(--dark-card);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(212, 160, 23, 0.15);
  transition: var(--transition);
  cursor: default;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* Dark gradient overlay so text is always readable */
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 6, 0.95) 0%,
    rgba(8, 15, 6, 0.55) 50%,
    rgba(8, 15, 6, 0.2) 100%
  );
  border-radius: inherit;
  transition: var(--transition);
}

.industry-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(8, 15, 6, 0.88) 0%,
    rgba(8, 15, 6, 0.45) 55%,
    rgba(8, 15, 6, 0.1) 100%
  );
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  border-color: rgba(212, 160, 23, 0.4);
}

.industry-icon {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  transition: var(--transition);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.industry-card:hover .industry-icon { transform: scale(1.12); }

.industry-card h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.industry-card:hover h3 { color: var(--gold); }

.industry-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.855rem;
  line-height: 1.65;
  transition: var(--transition);
}

.industry-card:hover p { color: rgba(255, 255, 255, 0.85); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-featured {
  background: linear-gradient(
    145deg,
    rgba(212, 160, 23, 0.1) 0%,
    rgba(42, 123, 59, 0.06) 100%
  );
  border-color: rgba(212, 160, 23, 0.35);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A08;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-icon {
  width: 76px;
  height: 76px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A08;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.pricing-card h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.pricing-card > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-amount.free {
  color: var(--green-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.pricing-features li i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pricing-note i {
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-note a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}

.pricing-note a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ============================================================
   PRICING BRACKETS
   ============================================================ */
.pricing-brackets {
  padding: 100px 0;
  background: var(--gray-50);
}

.pricing-brackets .section-header h2 { color: var(--gray-800); }
.pricing-brackets .section-header p  { color: var(--gray-600); }

.brackets-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bracket-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 28px;
  transition: var(--transition);
}

.bracket-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}

.bracket-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-alpha), var(--green-alpha));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
}

.bracket-card:hover .bracket-icon {
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: var(--white);
}

.bracket-info {
  flex: 1;
  min-width: 0;
}

.bracket-info h3 {
  color: var(--gray-800);
  font-size: 1rem;
  margin-bottom: 4px;
}

.bracket-info p {
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.5;
}

.bracket-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.price-from {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1.1;
}

.brackets-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.brackets-note > i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brackets-note > div {
  flex: 1;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.brackets-note strong {
  color: var(--gray-800);
}

/* Conditional licence type field */
.licence-type-group {
  display: none;
  animation: fadeSlideUp 0.3s ease both;
}

.licence-type-group.visible {
  display: block;
}

/* ============================================================
   BRAND SHOWCASE
   ============================================================ */
.brand-showcase {
  padding: 100px 0;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.brand-showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.brand-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.04) 0%,
    rgba(42, 123, 59, 0.04) 100%
  );
}

.brand-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 15, 6, 0.7) 0%, rgba(8, 15, 6, 0.2) 100%);
}

.brand-showcase-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-showcase-text .section-tag {
  margin-bottom: 12px;
}

.brand-showcase-text h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.brand-showcase-text > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.brand-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(212, 160, 23, 0.3);
  background: rgba(212, 160, 23, 0.05);
}

.pillar > i {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar strong {
  color: var(--white);
  font-size: 0.95rem;
}

.pillar span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.brand-showcase-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-showcase-logo img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 160, 23, 0.15);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--dark-3);
}

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

.contact-info .section-tag {
  display: inline-flex;
  margin-bottom: 12px;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}

a.contact-item:hover {
  border-color: rgba(212, 160, 23, 0.35);
  background: rgba(212, 160, 23, 0.05);
  transform: translateX(4px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-alpha);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-icon.whatsapp-icon {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25D366;
}

a.contact-item:hover .contact-icon {
  background: var(--gold);
  color: #0A0A08;
  border-color: transparent;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-item strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.contact-item span {
  color: var(--white);
  font-size: 0.9rem;
}

.contact-social p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Social buttons */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.social-btn.tiktok:hover    { background: #000; border-color: #fff; color: #fff; }
.social-btn.whatsapp:hover  { background: #25D366; border-color: #25D366; color: #fff; }
.social-btn.wa-channel:hover { background: #25D366; border-color: #25D366; color: #fff; }
.social-btn.linktree:hover  { background: #39e09b; border-color: #39e09b; color: #000; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.form-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4A017' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1A2A17;
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040A03;
  padding: 80px 0 0;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.tagline-text {
  color: var(--gold) !important;
  font-size: 0.875rem !important;
  margin-bottom: 24px !important;
}

.footer-social { margin-top: 0; }

.footer-col h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a i {
  font-size: 0.65rem;
  color: rgba(212, 160, 23, 0.5);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-col a:hover i {
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.855rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-book-btn {
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #0A0A08;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--gold);
  color: #0A0A08;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollStrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-grid {
    gap: 48px;
  }

  .brand-showcase-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brand-showcase-logo {
    order: -1;
  }

  .brand-showcase-logo img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links,
  .nav-cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(8, 15, 6, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-links.open a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .mobile-cta {
    display: block;
    margin-top: 12px;
  }

  .mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 320px;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: -8px 0;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Brand showcase */
  .brand-showcase-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-pillars { text-align: left; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  /* Hero stats */
  .hero-stats {
    padding: 16px 0;
  }

  .stat {
    padding: 8px 16px;
  }

  .stat-divider {
    height: 36px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.35), transparent);
  }

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

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

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .resource-links {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
  }
}
