/* ===== SitesReady — "Blueprint to Launch" Redesign ===== */

/* --- Custom Properties --- */
:root {
  --black: #0a0f1a;
  --black-light: #111827;
  --charcoal: #1a2332;
  --slate: #2d3a4a;
  --steel: #64748b;
  --silver: #94a3b8;
  --cream: #f5f0e8;
  --cream-light: #faf8f4;
  --white: #ffffff;
  --green: #00ff88;
  --green-dim: #00cc6a;
  --green-dark: #00994f;
  --green-glow: rgba(0, 255, 136, 0.15);
  --green-glow-strong: rgba(0, 255, 136, 0.3);
  --amber: #f59e0b;
  --red: #ef4444;
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-w: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--black);
}

p { color: var(--steel); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

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

.nav.is-scrolled {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo span { color: var(--green); }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  transition: all 0.25s var(--ease-out-expo);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.btn-primary:hover {
  background: #00e67a;
  box-shadow: 0 0 30px rgba(0,255,136,0.35);
  transform: translateY(-1px);
  color: var(--black);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-1px);
  color: var(--black);
}

.btn-ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.15);
}

.btn-outline:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: var(--green-glow);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
}

/* Grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}

/* Green glow orb */
.hero::after {
  content: '';
  position: absolute;
  width: min(50vw, 600px);
  height: min(50vw, 600px);
  border-radius: 50%;
  top: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(0,255,136,0.08), transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: 999px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
  position: relative;
}

.hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trade pills */
.hero-trades {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-trades span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.hero-trades span:hover {
  color: var(--green);
  border-color: rgba(0,255,136,0.2);
  background: rgba(0,255,136,0.05);
}

/* --- Browser mockup --- */
.hero-visual {
  position: relative;
  z-index: 2;
}

.browser-mockup {
  background: var(--charcoal);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s var(--ease-out-expo);
}

.browser-mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-url strong {
  color: var(--green);
  font-weight: 600;
}

.browser-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  min-height: 260px;
  position: relative;
}

/* Simulated site content inside browser */
.sim-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sim-site-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.sim-site-nav {
  display: flex;
  gap: 0.75rem;
}

.sim-site-nav span {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
}

.sim-site-hero-text {
  margin-bottom: 1.25rem;
}

.sim-site-hero-text .sim-line {
  height: 10px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 8px;
}

.sim-site-hero-text .sim-line:nth-child(1) { width: 85%; height: 14px; background: rgba(255,255,255,0.18); }
.sim-site-hero-text .sim-line:nth-child(2) { width: 60%; height: 14px; background: rgba(255,255,255,0.14); }
.sim-site-hero-text .sim-line:nth-child(3) { width: 90%; }
.sim-site-hero-text .sim-line:nth-child(4) { width: 70%; }

.sim-site-cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 1.25rem;
}

.sim-site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.sim-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 0.75rem;
}

.sim-card-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0,255,136,0.15);
  margin-bottom: 0.5rem;
}

.sim-card .sim-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 4px;
}

.sim-card .sim-line:first-of-type { width: 70%; height: 6px; background: rgba(255,255,255,0.12); }
.sim-card .sim-line:last-child { width: 90%; }

/* Floating build status badge */
.build-status {
  position: absolute;
  bottom: -16px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float-badge 4s ease-in-out infinite;
}

.build-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ===== "How It Works" Section ===== */
#how-it-works {
  background: var(--cream-light);
  position: relative;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-title { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.step {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  transition: background 0.3s ease;
}

.step:hover {
  background: var(--cream-light);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.06);
}

.step h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.6rem;
  color: var(--black);
}

.step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Benefits ===== */
.benefits {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.benefits .section-label { color: var(--green); }

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

.benefits .section-subtitle {
  color: rgba(255,255,255,0.45);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: var(--black-light);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.04);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.15);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1;
}

.benefit-card h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}

/* ===== Trust Section ===== */
.trust {
  background: var(--cream-light);
  position: relative;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: rgba(0,255,136,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.trust-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.trust-item p {
  font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--black);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,255,136,0.06), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.45);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== Page Header (subpages) ===== */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: clamp(7rem, 14vh, 9rem) 0 clamp(3rem, 6vh, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

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

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.6rem;
}

.page-header p {
  color: rgba(255,255,255,0.45);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Pricing Cards ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.pricing-card.featured {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 1px var(--green-dark), 0 12px 32px rgba(0,204,106,0.1);
}

.pricing-card .badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}

.pricing-card .price-sub {
  font-size: 0.85rem;
  color: var(--steel);
  margin-top: 0.15rem;
  margin-bottom: 1.25rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.88rem;
  color: var(--charcoal);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '\2713';
  color: var(--green-dark);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.pricing-card ul li:last-child { border-bottom: none; }

.pricing-card .btn { width: 100%; }

/* ===== FAQ ===== */
.faq {
  background: var(--cream-light);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 1.15rem 1.25rem;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(0,0,0,0.12);
}

.faq-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(0,204,106,0.12);
}

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

.support-form-wrapper {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
}

.form-success h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-info-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease;
}

.contact-info-item:hover {
  border-color: rgba(0,0,0,0.12);
}

.contact-info-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
  color: var(--charcoal);
}

.contact-info-item p {
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--green-dark);
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--black);
}

.contact-about {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-about h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.contact-about p + p {
  margin-top: 0.75rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  padding: 3.5rem 0 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

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

.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.85rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.45rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===== Scroll Reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    will-change: opacity, transform;
  }

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .browser-mockup {
    transform: none;
    max-width: 560px;
  }

  .browser-mockup:hover {
    transform: none;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: var(--gutter);
    right: var(--gutter);
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.15rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    width: 100%;
    display: block;
  }

  .steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

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

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

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

  .sim-site-cards .sim-card:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  :root { --gutter: 1rem; }

  .hero {
    padding: clamp(5.5rem, 14vh, 7rem) 0 clamp(3rem, 6vh, 4rem);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trades {
    gap: 0.3rem;
  }

  .browser-mockup {
    border-radius: 8px;
  }

  .browser-chrome {
    padding: 8px 12px;
  }

  .browser-body {
    padding: 1rem;
  }

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

  .build-status {
    left: 12px;
    font-size: 0.65rem;
    padding: 0.45rem 0.75rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1.25rem;
  }

  .steps { border-radius: 8px; }
  .benefits-grid { border-radius: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Utilities --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
