/*
Theme Name: OliSykes Domain Sale
Theme URI: https://gonamed.co.uk
Author: GO&PARTNERS UK LIMITED
Author URI: https://gonamed.co.uk
Description: Premium domain marketplace theme for olisykes.com - A Go Named property
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: olisykes
Tags: domain-sale, premium, dark, one-page, glassmorphism
*/

/* ============================================================
   TABLE OF CONTENTS
   1.  Custom Properties & Tokens
   2.  Reset & Base
   3.  Global Utilities & Animations
   4.  Grain Texture Overlay
   5.  Scrollbar & Selection Styling
   6.  Focus & Accessibility
   7.  Page Transition
   8.  Navigation / Sticky Header
   9.  Hero Section
   10. Floating Particles
   11. Buttons & CTAs
   12. Sections & Layout
   13. Feature / Value Cards
   14. Domain Stats / Counters
   15. Purchase Form & Steps
   16. Checkout / Payment Tabs
   17. Trust Badges
   18. Domain CTA Banners
   19. Page Content & Typography
   20. Thank You / Success Page
   21. Toast Notifications
   22. Footer
   23. Page Listing / Sitemap
   24. Loading States
   25. Responsive
   ============================================================ */

/* =============================================================
   1. CUSTOM PROPERTIES & TOKENS
   ============================================================= */
:root {
  /* --- Backgrounds --- */
  --bg-primary: #06060b;
  --bg-secondary: #0d0d16;
  --bg-card: #13132a;
  --bg-card-hover: #1b1b3a;
  --bg-glass: rgba(19, 19, 42, 0.55);
  --bg-glass-border: rgba(212, 168, 67, 0.12);

  /* --- Gold Palette --- */
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-dark: #a07820;
  --gold-glow: rgba(212, 168, 67, 0.35);
  --gold-subtle: rgba(212, 168, 67, 0.08);

  /* --- Accent --- */
  --accent2: #8b5cf6;
  --accent2-glow: rgba(139, 92, 246, 0.3);

  /* --- Text --- */
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #6a6a80;

  /* --- Borders & Shadows --- */
  --border: #1e1e36;
  --border-hover: rgba(212, 168, 67, 0.35);
  --success: #22c55e;
  --error: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 50px rgba(212, 168, 67, 0.18);
  --shadow-gold-lg: 0 0 80px rgba(212, 168, 67, 0.25);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.15);

  /* --- Typography --- */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* --- Animation Tokens --- */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.35s var(--ease-out-expo);
  --transition-fast: all 0.2s var(--ease-out-expo);
  --transition-slow: all 0.6s var(--ease-out-expo);
  --anim-shimmer-speed: 3s;
  --anim-pulse-speed: 2.5s;
  --anim-float-speed: 6s;
  --anim-particle-speed: 18s;
  --anim-gradient-border: 4s;
  --anim-typewriter-blink: 0.75s;
  --anim-reveal-duration: 0.7s;
  --anim-page-fade: 0.4s;
  --anim-progress-bar: 0.5s;
  --anim-ripple: 0.6s;
  --anim-toast-slide: 0.45s;
  --anim-confetti: 1.5s;
  --anim-counter: 2s;

  /* --- Glassmorphism --- */
  --glass-blur: blur(24px);
  --glass-blur-heavy: blur(40px);
  --glass-saturate: saturate(1.8);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* =============================================================
   3. GLOBAL UTILITIES & ANIMATIONS
   ============================================================= */

/* --- Shimmer text (gold gradient sweep) --- */
.shimmer-text,
.text-shimmer {
  background: linear-gradient(
    110deg,
    var(--gold-dark) 0%,
    var(--gold) 20%,
    var(--gold-light) 40%,
    #fff8e7 50%,
    var(--gold-light) 60%,
    var(--gold) 80%,
    var(--gold-dark) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSweep var(--anim-shimmer-speed) ease-in-out infinite;
}

@keyframes shimmerSweep {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* --- Pulse glow on CTAs --- */
.pulse-glow {
  animation: pulseGlow var(--anim-pulse-speed) ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2), 0 0 60px rgba(212, 168, 67, 0.05);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.45), 0 0 90px rgba(212, 168, 67, 0.12);
  }
}

/* --- Smooth reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--anim-reveal-duration) var(--ease-out-expo),
              transform var(--anim-reveal-duration) var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--anim-reveal-duration) var(--ease-out-expo),
              transform var(--anim-reveal-duration) var(--ease-out-expo);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--anim-reveal-duration) var(--ease-out-expo),
              transform var(--anim-reveal-duration) var(--ease-out-expo);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--anim-reveal-duration) var(--ease-out-expo),
              transform var(--anim-reveal-duration) var(--ease-out-expo);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Stagger delays for children --- */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* --- Fade In keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- Gradient border rotation keyframe --- */
@keyframes gradientBorderSpin {
  0%   { --gradient-angle: 0deg; }
  100% { --gradient-angle: 360deg; }
}
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* --- Typewriter cursor blink --- */
@keyframes typewriterBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* --- Float / Bob --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* --- Spin --- */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Ripple --- */
@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(4); opacity: 0; }
}

/* =============================================================
   4. GRAIN TEXTURE OVERLAY
   ============================================================= */
.grain::after,
body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* =============================================================
   5. SCROLLBAR & SELECTION STYLING
   ============================================================= */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-primary);
}

::selection {
  background: rgba(212, 168, 67, 0.35);
  color: #fff;
}
::-moz-selection {
  background: rgba(212, 168, 67, 0.35);
  color: #fff;
}

/* =============================================================
   6. FOCUS & ACCESSIBILITY
   ============================================================= */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only,
.seo-hidden-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================
   7. PAGE TRANSITION FADE
   ============================================================= */
.page-transition {
  animation: pageFadeIn var(--anim-page-fade) var(--ease-out-expo) both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   8. NAVIGATION / STICKY HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 11, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 30, 54, 0.5);
  padding: 0 2rem;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(6, 6, 11, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(212, 168, 67, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}
.site-logo .logo-go { color: var(--gold); }
.site-logo .logo-dot { color: var(--accent2); }
.site-logo img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.main-nav a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s var(--ease-out-expo);
  border-radius: 2px;
}
.main-nav a:hover { color: var(--text-primary); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #06060b !important;
  padding: 11px 26px !important;
  border-radius: 10px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
  overflow: hidden;
}
.nav-cta::after { display: none !important; }
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #06060b !important;
}

/* Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* =============================================================
   9. HERO SECTION
   ============================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 2rem 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 60%, rgba(212, 168, 67, 0.03) 0%, transparent 40%),
    var(--bg-primary);
}

/* Animated grid/dot pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212, 168, 67, 0.08) 1px, transparent 0);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 72%);
  animation: heroGridPulse 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes heroGridPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Radial glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  animation: heroOrbFloat var(--anim-float-speed) ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes heroOrbFloat {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.9; transform: translate(-50%, -52%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s var(--ease-out-expo);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot var(--anim-pulse-speed) infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%  { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(212, 168, 67, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(212, 168, 67, 0); }
}

/* Domain title with typewriter cursor */
.hero-domain {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}
.hero-domain .domain-name {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark), var(--gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSweep var(--anim-shimmer-speed) ease-in-out infinite;
}
.hero-domain .domain-ext {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.55em;
}
/* Typewriter cursor */
.hero-domain .typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: baseline;
  animation: typewriterBlink var(--anim-typewriter-blink) step-end infinite;
  border-radius: 2px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

/* =============================================================
   10. FLOATING PARTICLES
   ============================================================= */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--anim-particle-speed) linear infinite;
}
.particle:nth-child(1)  { left: 10%; animation-delay: 0s;    animation-duration: 16s; }
.particle:nth-child(2)  { left: 20%; animation-delay: 2s;    animation-duration: 20s; }
.particle:nth-child(3)  { left: 35%; animation-delay: 4s;    animation-duration: 14s; }
.particle:nth-child(4)  { left: 50%; animation-delay: 1s;    animation-duration: 22s; }
.particle:nth-child(5)  { left: 65%; animation-delay: 3s;    animation-duration: 18s; }
.particle:nth-child(6)  { left: 75%; animation-delay: 5s;    animation-duration: 15s; }
.particle:nth-child(7)  { left: 85%; animation-delay: 0.5s;  animation-duration: 21s; }
.particle:nth-child(8)  { left: 92%; animation-delay: 3.5s;  animation-duration: 17s; }
.particle:nth-child(9)  { left: 5%;  animation-delay: 6s;    animation-duration: 19s; }
.particle:nth-child(10) { left: 45%; animation-delay: 7s;    animation-duration: 23s; }
.particle:nth-child(11) { left: 55%; animation-delay: 1.5s;  animation-duration: 16s; }
.particle:nth-child(12) { left: 30%; animation-delay: 4.5s;  animation-duration: 20s; }

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { opacity: 0.3; }
  90%  { opacity: 0; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* =============================================================
   11. BUTTONS & CTAs
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

/* Ripple container */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple var(--anim-ripple) ease-out forwards;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #06060b;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.45), 0 0 80px rgba(212, 168, 67, 0.15);
  color: #06060b;
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.1);
}

.btn-lg {
  padding: 20px 44px;
  font-size: 1.1rem;
  border-radius: 14px;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #06060b;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* =============================================================
   12. SECTIONS & LAYOUT
   ============================================================= */
.section {
  padding: 120px 2rem;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================================
   13. FEATURE / VALUE CARDS (Glassmorphism)
   ============================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Gradient border animation on hover */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: conic-gradient(
    from var(--gradient-angle, 0deg),
    transparent 0%,
    var(--gold) 10%,
    var(--accent2) 30%,
    transparent 50%,
    var(--gold-light) 70%,
    transparent 90%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientBorderSpin var(--anim-gradient-border) linear infinite;
}

/* Top accent bar */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 168, 67, 0.08);
  background: rgba(19, 19, 42, 0.7);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(139, 92, 246, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.25), rgba(139, 92, 246, 0.15));
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.15);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================================
   14. DOMAIN STATS / ANIMATED COUNTERS
   ============================================================= */
.domain-showcase {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.domain-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2.5rem;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated counter */
.stat-number[data-count] {
  transition: all var(--anim-counter) var(--ease-out-expo);
}
.stat-number .counter-suffix {
  -webkit-text-fill-color: var(--gold-light);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =============================================================
   15. PURCHASE FORM & STEP PROGRESS
   ============================================================= */
.purchase-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.purchase-container {
  max-width: 720px;
  margin: 0 auto;
}

/* Progress bar (animated) */
.form-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 160px;
}
.progress-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  font-size: 0.85rem;
  transition: var(--transition);
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}
.progress-step .step-label {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.progress-step.active .step-num {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}
.progress-step.active .step-label {
  color: var(--gold);
}
.progress-step.completed .step-num {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}
.progress-step.completed .step-label {
  color: var(--success);
}

/* Connecting progress bar line */
.progress-bar-track {
  position: absolute;
  top: 20px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  z-index: 1;
}
.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width var(--anim-progress-bar) var(--ease-out-expo);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.4);
  width: 0%;
}
.progress-bar-fill.step-1 { width: 0%; }
.progress-bar-fill.step-2 { width: 50%; }
.progress-bar-fill.step-3 { width: 100%; }

/* Form steps */
.form-step {
  display: none;
  animation: fadeInUp 0.45s var(--ease-out-expo);
}
.form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 1.8rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(19, 19, 42, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1), 0 0 20px rgba(212, 168, 67, 0.08);
}

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

.form-group .form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Radio options */
.radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.radio-option {
  flex: 1;
  padding: 16px;
  background: rgba(19, 19, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}
.radio-option:hover {
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(212, 168, 67, 0.05);
}
.radio-option.selected {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.form-actions .btn {
  flex: 1;
}

/* =============================================================
   16. CHECKOUT / PAYMENT TABS
   ============================================================= */
.payment-tabs {
  display: flex;
  background: rgba(19, 19, 42, 0.5);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 2rem;
  position: relative;
  border: 1px solid var(--border);
}
.payment-tab {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: calc(var(--radius) - 4px);
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}
.payment-tab:hover { color: var(--text-secondary); }
.payment-tab.active {
  color: var(--gold);
}

/* Sliding indicator */
.payment-tabs .tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: calc(var(--radius) - 4px);
  transition: transform 0.35s var(--ease-out-expo);
  z-index: 1;
}
.payment-tabs .tab-indicator.pos-1 { transform: translateX(0); }
.payment-tabs .tab-indicator.pos-2 { transform: translateX(100%); }

.payment-content {
  animation: fadeIn 0.3s ease;
}

/* Bank detail cards */
.bank-card {
  background: rgba(19, 19, 42, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bank-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--accent2));
  border-radius: 4px 0 0 4px;
}
.bank-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bank-card .bank-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.bank-card .bank-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(30, 30, 54, 0.5);
  font-size: 0.9rem;
}
.bank-card .bank-detail:last-child { border-bottom: none; }
.bank-card .bank-detail .label { color: var(--text-muted); }
.bank-card .bank-detail .value {
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-heading);
}

/* =============================================================
   17. TRUST BADGES
   ============================================================= */
.trust-section {
  background: var(--bg-primary);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.trust-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: conic-gradient(
    from var(--gradient-angle, 0deg),
    transparent 25%,
    var(--gold) 50%,
    transparent 75%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientBorderSpin var(--anim-gradient-border) linear infinite;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: var(--shadow-gold);
}
.trust-card:hover::before { opacity: 1; }

.trust-card .trust-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
  transition: var(--transition);
}
.trust-card:hover .trust-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(212, 168, 67, 0.3));
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.trust-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* =============================================================
   18. DOMAIN CTA BANNERS
   ============================================================= */
.domain-cta-banner {
  background: linear-gradient(135deg, rgba(19, 19, 42, 0.8), rgba(212, 168, 67, 0.06));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated gradient border */
.domain-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: conic-gradient(
    from var(--gradient-angle, 0deg),
    transparent 0%,
    var(--gold) 15%,
    var(--accent2) 35%,
    transparent 50%,
    var(--gold-light) 65%,
    var(--accent2) 85%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientBorderSpin var(--anim-gradient-border) linear infinite;
}

/* Pulsing glow shadow */
.domain-cta-banner::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.1), 0 0 80px rgba(212, 168, 67, 0.05);
  animation: bannerGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bannerGlow {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.domain-cta-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}
.domain-cta-banner .cta-domain {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0.5rem 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSweep var(--anim-shimmer-speed) ease-in-out infinite;
}
.domain-cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.domain-cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* =============================================================
   19. PAGE CONTENT & TYPOGRAPHY
   ============================================================= */
.page-hero {
  padding: 150px 2rem 70px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.06) 0%, transparent 55%),
    var(--bg-primary);
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: var(--text-secondary); }
.page-hero .breadcrumb a:hover { color: var(--gold); }

.page-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 70px 2rem 120px;
}

.page-content h2 {
  font-size: 1.9rem;
  margin: 3rem 0 1.2rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content h3 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.8rem;
}

.page-content p {
  margin-bottom: 1.4rem;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.85;
}

.page-content ul,
.page-content ol {
  margin: 1.2rem 0 1.8rem 1.5rem;
  color: var(--text-secondary);
}
.page-content li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.page-content li::marker {
  color: var(--gold);
}

.page-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.05), rgba(139, 92, 246, 0.02));
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
  position: relative;
}
.page-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.2rem;
  left: 1rem;
  font-size: 4rem;
  color: rgba(212, 168, 67, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.page-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 168, 67, 0.3);
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}
.page-content a:hover {
  text-decoration-color: var(--gold);
  color: var(--gold-light);
}

.page-content strong {
  color: var(--text-primary);
  font-weight: 700;
}

.page-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}

/* =============================================================
   20. THANK YOU / SUCCESS PAGE
   ============================================================= */
.thank-you-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 2rem;
  position: relative;
  overflow: hidden;
}

.thank-you-icon {
  font-size: 5.5rem;
  margin-bottom: 2rem;
  animation: successBounce 0.8s var(--ease-spring) both;
}
@keyframes successBounce {
  0%   { opacity: 0; transform: scale(0.3) rotate(-10deg); }
  60%  { transform: scale(1.15) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.thank-you-wrap h1 {
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s var(--ease-out-expo) 0.3s both;
}
.thank-you-wrap p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.6s var(--ease-out-expo) 0.5s both;
}
.thank-you-wrap .btn {
  animation: fadeInUp 0.6s var(--ease-out-expo) 0.7s both;
}

/* Confetti/success particles */
.confetti-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -20px;
  animation: confettiFall var(--anim-confetti) ease-in-out forwards;
  opacity: 0;
}
.confetti-piece:nth-child(odd)  { border-radius: 50%; }
.confetti-piece:nth-child(even) { border-radius: 2px; }

.confetti-piece:nth-child(1)  { left: 10%; animation-delay: 0s;    background: var(--gold); }
.confetti-piece:nth-child(2)  { left: 20%; animation-delay: 0.1s;  background: var(--accent2); width: 8px; height: 8px; }
.confetti-piece:nth-child(3)  { left: 30%; animation-delay: 0.2s;  background: var(--gold-light); }
.confetti-piece:nth-child(4)  { left: 40%; animation-delay: 0.15s; background: var(--success); width: 6px; height: 6px; }
.confetti-piece:nth-child(5)  { left: 50%; animation-delay: 0.05s; background: var(--gold); }
.confetti-piece:nth-child(6)  { left: 60%; animation-delay: 0.25s; background: var(--accent2); width: 12px; height: 12px; }
.confetti-piece:nth-child(7)  { left: 70%; animation-delay: 0.1s;  background: var(--gold-light); }
.confetti-piece:nth-child(8)  { left: 80%; animation-delay: 0.3s;  background: var(--gold-dark); width: 7px; height: 7px; }
.confetti-piece:nth-child(9)  { left: 15%; animation-delay: 0.2s;  background: var(--success); }
.confetti-piece:nth-child(10) { left: 85%; animation-delay: 0.05s; background: var(--gold); width: 9px; height: 9px; }
.confetti-piece:nth-child(11) { left: 45%; animation-delay: 0.35s; background: var(--accent2); }
.confetti-piece:nth-child(12) { left: 55%; animation-delay: 0.12s; background: var(--gold-light); width: 11px; height: 11px; }

@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  25%  { transform: translateY(25vh) rotate(180deg) scale(0.9); opacity: 0.9; }
  50%  { transform: translateY(50vh) rotate(360deg) scale(0.8); opacity: 0.7; }
  100% { transform: translateY(100vh) rotate(720deg) scale(0.3); opacity: 0; }
}

/* Success checkmark ring */
.success-ring {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--success);
  position: relative;
  margin-bottom: 2rem;
  animation: ringExpand 0.6s var(--ease-spring) both;
}
.success-ring::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--success);
  animation: fadeIn 0.3s ease 0.4s both;
}
@keyframes ringExpand {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* =============================================================
   21. TOAST NOTIFICATIONS
   ============================================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateX(calc(100% + 3rem));
  opacity: 0;
  transition: transform var(--anim-toast-slide) var(--ease-out-expo),
              opacity var(--anim-toast-slide) var(--ease-out-expo);
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
}
.toast.hiding {
  transform: translateX(calc(100% + 3rem));
  opacity: 0;
}

.toast .toast-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.toast .toast-message {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.1);
}
.toast.success .toast-icon { color: var(--success); }

.toast.error {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.1);
}
.toast.error .toast-icon { color: var(--error); }

.toast.info {
  border-color: rgba(212, 168, 67, 0.3);
}
.toast.info .toast-icon { color: var(--gold); }

/* =============================================================
   22. FOOTER
   ============================================================= */
.site-footer {
  background: var(--bg-secondary);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--accent2), var(--gold-dark), transparent) 1;
  padding: 80px 2rem 35px;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: block;
}
.footer-brand .footer-logo .logo-go { color: var(--gold); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================================
   23. PAGE LISTING / SITEMAP
   ============================================================= */
.pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}
.page-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.page-card:hover::before { opacity: 1; }
.page-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.page-card h3 a { color: var(--text-primary); transition: var(--transition-fast); }
.page-card h3 a:hover { color: var(--gold); }
.page-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================================
   24. LOADING STATES
   ============================================================= */
.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    rgba(212, 168, 67, 0.05) 50%,
    var(--bg-card) 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================================
   25. RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  /* Hamburger */
  .mobile-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 11, 0.97);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out-expo);
    z-index: 999;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    font-size: 1.3rem;
    font-weight: 600;
  }

  /* Layout */
  .section { padding: 80px 1.5rem; }
  .section-header { margin-bottom: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-domain { letter-spacing: -1px; }
  .hero { padding: 110px 1.5rem 80px; }

  /* Purchase form */
  .form-progress { gap: 0.5rem; flex-wrap: wrap; }
  .progress-step .step-label { font-size: 0.7rem; }
  .radio-group { flex-direction: column; }

  /* Stats */
  .stat-item::after { display: none; }
  .stat-number { font-size: 2.2rem; }

  /* Domain CTA */
  .domain-cta-banner { padding: 2.5rem 1.5rem; }
  .domain-cta-banner .cta-domain { font-size: 1.6rem; }

  /* Cards */
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }

  /* Toast */
  .toast {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-domain { font-size: clamp(2.2rem, 10vw, 3rem); letter-spacing: -0.5px; }
  .hero-tagline { font-size: 1rem; }
  .btn-lg { padding: 16px 32px; font-size: 1rem; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .feature-card { padding: 2rem; }
  .page-content { padding: 40px 1.2rem 80px; }
  .page-hero { padding: 120px 1.2rem 50px; }
}

/* =============================================================
   PRINT STYLES
   ============================================================= */
@media print {
  body { background: #fff; color: #000; }
  .site-header, .site-footer, .particles, .confetti-container,
  .grain::after, body::after { display: none !important; }
  .hero { min-height: auto; padding: 2rem; }
  .section { padding: 2rem; }
  a { color: #000; text-decoration: underline; }
}
