/* B2 Digital Marketing - Main Styles */
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-muted: #334155;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --transition: 0.2s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-dur: 0.6s;
  --anim-reveal-offset: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding 0.25s ease;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo a {
  color: inherit;
}

.logo a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--gray-200);
  font-weight: 500;
}

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

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-creative {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0c1222 100%);
  opacity: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
}

.hero-highlight {
  color: var(--accent);
  position: relative;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--gray-200);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-200);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.hero-stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
}

.hero-stat {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.hero-stat strong {
  color: var(--white);
  font-weight: 600;
}

.hero .container {
  max-width: 800px;
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray-200);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.services-grid-five {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card-creative {
  position: relative;
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card-creative:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.service-card .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Values / pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pillars-creative {
  gap: 1.75rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}

.pillar-card .pillar-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.08) 100%);
}

.pillar h3 {
  margin-bottom: 0.5rem;
}

.pillar p {
  color: var(--gray-500);
  margin: 0;
}

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius);
}

.cta-creative {
  position: relative;
  padding: 4.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.4);
}

.cta-creative::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-block p {
  color: var(--gray-200);
  margin-bottom: 1.5rem;
}

/* Page header (for inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3rem 0;
}

.page-header h1 {
  color: var(--white);
  margin: 0;
}

.page-header p {
  color: var(--gray-200);
  margin: 0.5rem 0 0;
}

/* About page – hero */
.about-page-hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #0c1222 100%);
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.about-hero-lead {
  color: var(--gray-200);
  font-size: 1.1rem;
  margin: 0.75rem 0 0;
  line-height: 1.5;
}

/* About page – mission card */
.about-mission {
  padding-top: 3.5rem;
}

.about-mission-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .about-mission-card {
    flex-direction: column;
    padding: 1.75rem;
  }
}

.about-mission-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.06) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.about-mission-text h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.about-mission-text p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.65;
}

/* About page – service pills */
.about-services-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.about-pill {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-pill:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.06);
  transform: translateY(-2px);
}

.about-what-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-500);
  line-height: 1.65;
}

/* About page – CTA wrap */
.about-cta-wrap {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.about-cta-wrap h2 {
  margin-bottom: 0.5rem;
}

.about-cta-wrap p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* Contact page */
.contact-page-hero {
  padding: 4rem 0;
}

.contact-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.contact-form-title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-owner-card {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.03) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-owner-card .footer-label {
  margin-bottom: 0.5rem;
}

.contact-owner-name {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.contact-owner-item {
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.contact-owner-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-owner-item a:hover {
  text-decoration: underline;
}

.contact-owner-wa a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-info-card {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.contact-info-card p {
  margin: 0.25rem 0;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 500;
}

.contact-info-note {
  margin-top: 0.75rem !important;
  font-size: 0.875rem !important;
  color: var(--gray-400) !important;
}

.contact-quick-links {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-quick-links .footer-label {
  margin-bottom: 0.75rem;
}

.contact-quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-quick-links li {
  margin-bottom: 0.5rem;
}

.contact-quick-links a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-quick-links a:hover {
  color: var(--accent);
}

/* Legal pages (Privacy & Cookie) – compact hero, no extra gap */
section.page-header.legal-page-hero {
  padding: 1.5rem 0 0.5rem !important;
  margin-bottom: 0;
  min-height: 0;
}

.legal-wrap {
  margin-top: 0;
  padding: 0.5rem 0 4rem;
  background: var(--gray-100);
}

.legal-content-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.75rem 3rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  section.page-header.legal-page-hero {
    padding: 1.25rem 0 0.5rem !important;
  }
  .legal-wrap {
    padding: 0.5rem 0 3rem;
  }
}

@media (max-width: 640px) {
  .legal-content-card {
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
  }
  .legal-section {
    padding: 1.25rem 1rem;
  }
  .legal-section h2 {
    font-size: 1rem;
    flex-wrap: wrap;
  }
  .legal-num {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

.legal-intro-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--navy-muted);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.legal-intro a {
  color: var(--accent);
  font-weight: 600;
}

.legal-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-intro-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.legal-intro-links a:hover {
  background: rgba(249, 115, 22, 0.18);
  color: var(--accent-hover);
}

.legal-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.25rem;
  background: var(--gray-100);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  padding-left: 0;
  border-left: none;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.legal-section p {
  color: var(--navy-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
  color: var(--navy-muted);
  line-height: 1.65;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--accent);
  font-weight: 600;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Content area */
.content-area {
  padding: 3rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.content-area h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-area p,
.content-area li {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.content-area ul {
  padding-left: 1.5rem;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.contact-info {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.25rem 0;
  color: var(--gray-500);
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy);
  color: var(--gray-200);
  padding: 0 0 2rem;
  margin-top: 4rem;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(249, 115, 22, 0.4) 100%);
  margin-bottom: 2.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.footer-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-cta:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--gray-300);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-copy {
  margin: 0;
}

.footer-domain {
  margin: 0;
  color: var(--gray-400);
  font-weight: 500;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Legal pages */
.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

/* ========== Smart animations ========== */
@media (prefers-reduced-motion: reduce) {
  .anim-reveal,
  .hero-entrance *,
  .site-header { transition: none !important; }
  .hero-entrance .hero-tag,
  .hero-entrance .hero-lead,
  .hero-entrance h1,
  .hero-entrance .hero-buttons,
  .hero-stats.hero-entrance .hero-stats-inner { opacity: 1; transform: none; }
}

/* Scroll-triggered reveal */
.anim-reveal {
  opacity: 0;
  transform: translateY(var(--anim-reveal-offset, 28px));
  transition: opacity var(--anim-dur) var(--ease-out), transform var(--anim-dur) var(--ease-out);
}

.anim-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when parent gets .in-view */
.anim-reveal-stagger > *.anim-reveal:nth-child(1) { transition-delay: 0.05s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(2) { transition-delay: 0.12s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(3) { transition-delay: 0.19s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(4) { transition-delay: 0.26s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(5) { transition-delay: 0.33s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(6) { transition-delay: 0.4s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(7) { transition-delay: 0.47s; }
.anim-reveal-stagger > *.anim-reveal:nth-child(8) { transition-delay: 0.54s; }

/* Hero entrance (on load) */
.hero-entrance .hero-tag,
.hero-entrance h1,
.hero-entrance .hero-lead,
.hero-entrance .hero-buttons {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.hero-entrance .hero-tag       { transition-delay: 0.1s; }
.hero-entrance h1              { transition-delay: 0.2s; }
.hero-entrance .hero-lead      { transition-delay: 0.35s; }
.hero-entrance .hero-buttons   { transition-delay: 0.5s; }

.hero-entrance.hero-loaded .hero-tag,
.hero-entrance.hero-loaded h1,
.hero-entrance.hero-loaded .hero-lead,
.hero-entrance.hero-loaded .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.hero-stats.hero-entrance .hero-stats-inner {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out) 0.6s, transform 0.5s var(--ease-out) 0.6s;
}

.hero-stats.hero-entrance.hero-loaded .hero-stats-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Header: subtle shrink on scroll */
.site-header {
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.header-scrolled .header-inner {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.site-header.header-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Button hover polish */
.btn {
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }

  .nav-menu.is-open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }
}
