/* ============================================================
   OUTSTANDA MARKETING SITE — Global CSS
   Purple + Amber colorblind-safe palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --purple:    #3b0764;
  --purple-m:  #6b21a8;
  --purple-l:  #ede9fe;
  --amber:     #f59e0b;
  --amber-d:   #d97706;
  --amber-l:   #fef3c7;
  --teal:      #0d9488;
  --teal-l:    #ccfbf1;
  --white:     #ffffff;
  --slate:     #f8f7ff;
  --muted:     #6b6b7a;
  --border:    #e5e3f0;
  --text:      #1e1030;
  --radius:    12px;
  --radius-lg: 20px;
  --nav-h:     68px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; }

.display-xl {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.025em; line-height: 1.1;
}
.display-lg {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.02em; line-height: 1.15;
}
.display-md {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.3rem); letter-spacing: -0.015em;
}
.lead { font-size: clamp(0.9rem, 1.3vw, 1.05rem); color: var(--muted); line-height: 1.75; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-d); }

/* ── Layout ──────────────────────────────────────────────── */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); height: var(--nav-h);
}
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 40px; }
.nav-logo { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.2rem; letter-spacing: -0.02em; color: var(--purple); flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.btn-nav-ghost { font-size: 0.875rem; font-weight: 500; color: var(--muted); padding: 8px 16px; border-radius: 8px; transition: color 0.15s; }
.btn-nav-ghost:hover { color: var(--purple); }
.btn-nav-primary { font-size: 0.875rem; font-weight: 600; background: var(--purple); color: var(--white); padding: 9px 20px; border-radius: 8px; transition: background 0.15s, transform 0.1s; }
.btn-nav-primary:hover { background: var(--purple-m); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; padding: 16px 24px 20px; border-top: 1px solid var(--border); background: var(--white); gap: 2px; }
.nav-mobile a { padding: 10px 0; font-size: 1rem; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); }
.nav-mobile .mobile-cta { margin-top: 12px; background: var(--purple); color: var(--white); text-align: center; padding: 13px; border-radius: 10px; border: none; font-weight: 600; }
body.nav-open .nav-mobile { display: flex; }
body.nav-open .site-nav { height: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--purple); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; padding: 13px 26px; border-radius: var(--radius); border: none; cursor: pointer; transition: background 0.15s, transform 0.1s, box-shadow 0.15s; text-decoration: none; }
.btn-primary:hover { background: var(--purple-m); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,7,100,0.2); }
.btn-primary-lg { font-size: 1.05rem; padding: 15px 32px; border-radius: 14px; }
.btn-amber { background: var(--amber); color: var(--text); }
.btn-amber:hover { background: var(--amber-d); box-shadow: 0 6px 20px rgba(245,158,11,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--muted); font-size: 0.9rem; font-weight: 500; padding: 11px 18px; border-radius: var(--radius); border: 1px solid var(--border); cursor: pointer; transition: border-color 0.15s, color 0.15s; text-decoration: none; }
.btn-ghost:hover { border-color: var(--purple-m); color: var(--purple); }

/* ── Cards ───────────────────────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }

/* ── Sections ────────────────────────────────────────────── */
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 108px 0; }
.divider    { width: 40px; height: 3px; background: var(--amber); border-radius: 2px; margin: 14px 0 24px; }

/* ── Feature cards ───────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background: var(--slate); border-radius: var(--radius-lg); padding: 28px; }
.feature-card.dark { background: #200442; }
.feature-card.focus-highlight { background: var(--amber-l); border: 2px solid var(--amber); }

.feature-icon { width: 42px; height: 42px; background: var(--purple); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--white); }
.feature-icon.amber { background: var(--amber-d); }
.feature-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.feature-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.feature-card.dark h3 { color: var(--white); }
.feature-card.dark p  { color: rgba(255,255,255,0.5); }
.feature-card.focus-highlight h3 { color: #92400e; }
.feature-card.focus-highlight p  { color: #78350f; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--slate); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.testimonial-img { width: 100%; height: 200px; background: var(--purple-l); border-radius: var(--radius); overflow: hidden; object-fit: cover; display: block; }
.testimonial-img-placeholder { width: 100%; height: 200px; background: var(--purple-l); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--muted); }
.testimonial-card .author { font-size: 0.8rem; font-weight: 600; color: var(--muted); }

/* ── Domain badges ───────────────────────────────────────── */
.domain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.domain-badge { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.domain-badge .d-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--purple-l); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--purple); }
.domain-badge .d-icon svg { width: 18px; height: 18px; stroke-width: 2; }
.domain-badge h4 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
.domain-badge p  { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.step  { padding: 32px 24px; }
.step-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--purple-l); line-height: 1; margin-bottom: 12px; }
.step h3  { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.step p   { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-card { border-radius: var(--radius-lg); padding: 36px; }
.price-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 3rem; letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 0.875rem; color: var(--muted); margin-top: 4px; }
.price-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 11px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; }
.price-list li::before { content: '✓'; font-weight: 700; color: var(--teal); flex-shrink: 0; margin-top: 1px; }

/* ── Comparison ──────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.compare-table th { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; background: var(--slate); }
.compare-table .check { color: var(--teal); font-weight: 700; }
.compare-table .cross { color: #9ca3af; }
.compare-table .col-us { background: #fdf8ff; }
.compare-table th.col-us { background: var(--purple-l); color: var(--purple); }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: var(--purple); color: var(--white); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center; }
.cta-band .display-lg { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,0.6); }

/* ── Highlight ───────────────────────────────────────────── */
.highlight { background: linear-gradient(180deg, transparent 55%, #fde68a 55%); }

/* ── Announce bar ────────────────────────────────────────── */
.announce-bar { background: var(--purple); color: rgba(255,255,255,0.85); text-align: center; padding: 10px 24px; font-size: 0.82rem; font-weight: 500; }
.announce-bar a { color: var(--amber); font-weight: 700; }
.announce-bar strong { color: var(--white); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--purple); color: rgba(255,255,255,0.6); padding: 64px 0 0; margin-top: 88px; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 1.4fr 2fr; gap: 64px; }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.2rem; color: var(--white); display: block; margin-bottom: 12px; letter-spacing: -0.02em; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.85rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 24px; max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 60px 0; }
  .section-lg { padding: 72px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .domain-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
