/* ============================================
   DOMAIN SALE — STYLE SHEET
   Palette: Black + Gold + White (Refined)

   Design philosophy:
   - Generous whitespace over visual noise
   - Restrained gold accents — less is more
   - Subtle hover transitions, no flashy effects
   - Elegant typographic hierarchy
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces */
  --black:        #090909;
  --dark:         #111111;
  --dark-card:    #161616;
  --gray-900:     #1c1c1c;
  --gray-800:     #242424;
  --gray-600:     #4a4a4a;
  --gray-400:     #8a8a8a;
  --gray-300:     #a8a8a8;
  --gray-200:     #cccccc;
  --white:        #f0ece4;

  /* Gold — warm, muted, jewelry-like */
  --gold:         #c8a961;
  --gold-light:   #dbc17a;
  --gold-dark:    #a68d3f;
  --gold-muted:   rgba(200, 169, 97, .12);

  /* Typography */
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing & Shape */
  --radius:       10px;
  --radius-sm:    6px;

  /* Motion — unhurried, considered */
  --ease:         cubic-bezier(.25, .1, .25, 1);
  --transition:   .4s var(--ease);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--black);
  background-size: 28px 28px;
  color: var(--gray-300);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 40px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 97, .2);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 97, .4);
  padding: 14px 36px;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 97, .08);
  color: var(--gold-light);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}

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


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 9, 9, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 28px 100px;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    radial-gradient(ellipse at 50% 20%, rgba(200, 169, 97, .06) 0%, transparent 55%),
    var(--black);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Decorative line replacing text tagline */
.hero-accent {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: .5;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 4.8rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--gray-400);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Text link with arrow — understated secondary CTA */
.hero-link {
  color: var(--gray-400);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.hero-link:hover {
  color: var(--white);
}

.hero-link span {
  transition: transform var(--transition);
  font-size: .9rem;
}

.hero-link:hover span {
  transform: translateX(4px);
}


/* ============================================
   TRUST STATS
   ============================================ */
.stats-bar {
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark-card);
  background-size: 28px 28px, 100% 100%;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 4px 0;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.stat-label {
  font-size: .85rem;
  font-weight: 400;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}


/* ============================================
   DOMAINS
   ============================================ */
.domains {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 28px 28px, 100% 100%;
}

/* Toolbar */
.domains-toolbar {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.search-box input::placeholder {
  color: var(--gray-600);
  font-weight: 300;
}

.search-box input:focus {
  border-color: rgba(200, 169, 97, .3);
}

.no-results {
  display: none;
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  padding: 48px 0;
}

.no-results.show {
  display: block;
}

/* Grid */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Domain card */
.domain-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

/* Gold top-line that appears on hover */
.domain-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .5s var(--ease);
}

.domain-card:hover {
  transform: translateY(-3px);
  border-color: var(--gray-600);
}

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

.domain-tld {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 14px;
}

.domain-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 10px;
  word-break: break-word;
  letter-spacing: -.01em;
}

.domain-desc {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.7;
  flex: 1;
}

.domain-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--gray-800);
}

.domain-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .3px;
}


/* ============================================
   RECENTLY SOLD
   ============================================ */
.recently-sold {
  padding: 100px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 28px 28px, 100% 100%;
  border-top: 1px solid var(--gray-800);
}

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

.sold-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}

.sold-card:hover {
  border-color: var(--gray-600);
}

.sold-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(200, 169, 97, .15);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--black);
  background-size: 28px 28px, 100% 100%;
}

.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: border-color var(--transition);
}

.step-card:hover {
  border-color: rgba(200, 169, 97, .2);
}

/* Number as the visual anchor — large, muted gold */
.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.step-desc {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--gray-800);
}


/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 28px 28px, 100% 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--transition);
}

.feature-card:hover {
  border-color: rgba(200, 169, 97, .2);
}

/* Thin gold accent line replacing emoji icons */
.feature-accent {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  opacity: .5;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.75;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--black);
  background-size: 28px 28px, 100% 100%;
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .6s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 8px;
}

.testimonial-inner {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 48px 44px;
  text-align: center;
}

/* Large decorative quote mark — editorial style */
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  line-height: .6;
  color: var(--gold);
  opacity: .2;
  margin-bottom: 20px;
  user-select: none;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--gray-200);
  line-height: 1.85;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .3px;
}

.testimonial-role {
  font-size: .92rem;
  font-weight: 300;
  color: var(--gray-400);
}

/* Testimonial nav */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-800);
  background: transparent;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-btn:hover {
  border-color: rgba(200, 169, 97, .4);
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-800);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--gold);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 28px 28px, 100% 100%;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(200, 169, 97, .25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  background: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  gap: 20px;
}

.faq-question:hover {
  color: var(--gold);
}

/* CSS chevron replacing "+" character */
.faq-toggle {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
  opacity: .5;
}

.faq-item.open .faq-toggle {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.8;
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-card) 100%);
  background-size: 28px 28px, 100% 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 97, .05) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.cta-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-400);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--black);
  background-size: 28px 28px, 100% 100%;
}

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

.contact-form-wrapper { width: 100%; }

.typeform-iframe {
  width: 100%;
  height: 480px;
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  background: var(--dark-card);
}

.form-note {
  font-size: .95rem;
  font-weight: 300;
  color: var(--gray-600);
  margin-top: 16px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  transition: border-color var(--transition);
}

.contact-card:hover {
  border-color: rgba(200, 169, 97, .2);
}

/* Gold accent replacing emoji icons */
.contact-accent {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
  opacity: .4;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.contact-email:hover {
  color: var(--gold-light);
}

.contact-card p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.7;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--gray-800);
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark-card);
  background-size: 28px 28px, 100% 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-800);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.01em;
}

.footer-tagline {
  font-size: .95rem;
  font-weight: 300;
  color: var(--gray-400);
  margin-top: 10px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav a {
  font-size: .95rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: color var(--transition);
}

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

.footer-contact a {
  font-size: .95rem;
  font-weight: 400;
  color: var(--gold);
  opacity: .8;
  transition: opacity var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
}

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

.footer-copy {
  font-size: .88rem;
  font-weight: 300;
  color: var(--gray-600);
  letter-spacing: .3px;
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  color: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}


/* ============================================
   STRATEGIC DIGITAL SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background:
    radial-gradient(circle, rgba(200, 169, 97, .4) 1.5px, transparent 1.5px),
    var(--dark);
  background-size: 28px 28px, 100% 100%;
  border-top: 1px solid var(--gray-800);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--transition);
}

.service-card:hover {
  border-color: rgba(200, 169, 97, .25);
}

.service-accent {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  opacity: .4;
  transition: opacity var(--transition), width var(--transition);
}

.service-card:hover .service-accent {
  opacity: .7;
  width: 32px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.service-desc {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.75;
  font-weight: 300;
}

.services-cta {
  text-align: center;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 260px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 90px 32px 40px;
    gap: 24px;
    border-left: 1px solid var(--gray-800);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

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

  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Layout adjustments */
  .contact-body,
  .domains-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 1px;
    height: 28px;
  }

  .step-connector::after {
    width: 1px;
    height: 100%;
  }

  .step-card {
    max-width: 100%;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav ul {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .domain-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .domain-card {
    padding: 28px 24px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .testimonial-inner {
    padding: 32px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
  }
}
