/* ==========================================================================
   DIAL N SEARCH PRIVATE LIMITED — BRAND & HOMEPAGE DESIGN SYSTEM
   Visual Direction: Light, airy, warm paper background, soft coral + charcoal accents.
   Typography: Bricolage Grotesque (Display) + Plus Jakarta Sans (Body)
   ========================================================================== */

:root {
  /* Colors */
  --bg-paper: #FAF8F5;
  --bg-paper-alt: #F4F0EA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFBF9;
  
  --coral-primary: #EE5D52;
  --coral-hover: #D9493E;
  --coral-light: #FFF5F4;
  --coral-border: #FCD5D2;
  
  --blue-primary: #1E40AF;
  --blue-dark: #172554;
  --blue-soft: #EFF6FF;
  
  --text-main: #18181B;
  --text-muted: #52525B;
  --text-tertiary: #71717A;
  
  --border-color: #E6E1DA;
  --border-light: #F0EDE8;
  
  /* Typography */
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(24, 24, 27, 0.04);
  --shadow-hover: 0 20px 40px rgba(238, 93, 82, 0.08);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-paper);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography Utility */
.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-primary);
  background: var(--coral-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 1) STICKY WHITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Design: Red D in blue circular mark + Wordmark */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: calc(44px * 1.08); /* 8% taller */
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.logo-mark img {
  width: 44px;
  height: calc(44px * 1.08);
  object-fit: fill;
  display: block;
}

.footer-brand .logo-mark {
  width: 40px;
  height: calc(40px * 1.08);
}

.footer-brand .logo-mark img {
  width: 40px;
  height: calc(40px * 1.08);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--coral-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-cta-primary {
  background: var(--coral-primary);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(238, 93, 82, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(238, 93, 82, 0.35);
}

.btn-cta-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-cta-secondary:hover {
  background: var(--bg-paper-alt);
  border-color: var(--text-main);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  padding: 8px;
}

/* 2) HERO SECTION */
.hero-section {
  padding: 56px 0 0 0;
  position: relative;
}

.hero-content-wrapper {
  max-width: 900px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.hero-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.hero-brand-tag .brand-dot {
  width: 10px;
  height: 10px;
  background: var(--coral-primary);
  border-radius: 50%;
}

.hero-brand-tag .brand-name-hero {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-main);
  text-transform: uppercase;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px auto;
  font-weight: 500;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Hero Full Bleed Media */
.hero-media-wrapper {
  width: 100%;
  margin-top: 32px;
}

.hero-image-fullbleed {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* Hero — image as full background */
.hero-section.hero-as-bg {
  position: relative;
  isolation: isolate;
  min-height: 0;
  height: clamp(560px, 68vh, 700px);
  max-height: 700px;
  padding: 40px 0 56px;
  display: flex;
  align-items: flex-start;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-section.hero-as-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Stronger dark in center/text band; lighter on left/right edges */
  background:
    radial-gradient(ellipse 58% 52% at 50% 28%, rgba(28, 25, 23, 0.58) 0%, rgba(28, 25, 23, 0.32) 42%, transparent 70%),
    linear-gradient(90deg, rgba(28, 25, 23, 0.06) 0%, transparent 22%, transparent 78%, rgba(28, 25, 23, 0.06) 100%),
    linear-gradient(180deg, rgba(28, 25, 23, 0.22) 0%, rgba(28, 25, 23, 0.1) 38%, rgba(28, 25, 23, 0.26) 100%);
}

.hero-as-bg-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 28px;
}

.hero-section.hero-as-bg .hero-content-wrapper {
  margin-bottom: 0;
  max-width: 860px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-section.hero-as-bg .hero-headline {
  color: #ffffff;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem); /* ~56px desktop — slightly lighter visual weight */
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero-section.hero-as-bg .hero-subline {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section.hero-as-bg .btn-cta-secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
}

/* SECTION GLOBAL LAYOUT */
.site-section {
  padding: 96px 0;
}

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

.section-header.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 3) FOR BRANDS — 4 STEPS */
.brands-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-paper);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: var(--coral-border);
  box-shadow: var(--shadow-hover);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--coral-primary);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 4) PROMOTION FORMATS */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.format-card:hover {
  border-color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.format-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-light);
  color: var(--coral-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.format-info .format-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.format-info .format-line {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Formats → Categories gap */
.formats-section {
  padding-bottom: 40px;
}

.categories-section {
  padding-top: 40px;
}

.categories-section .section-header {
  margin-bottom: 32px;
}

/* 5) TOP CATEGORIES */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-tile {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.category-tile:hover .category-img,
.category-tile:hover picture img {
  transform: scale(1.06);
}

.category-tile:hover .category-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.85) 100%);
}

.category-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.category-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

/* 6) FOR CREATORS */
#for-creators.site-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.categories-section.site-section {
  padding-bottom: 40px;
}

.platforms-section.site-section {
  padding-top: 40px;
}

.creators-section {
  background: var(--blue-dark);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.creators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.creators-content .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.creators-content .section-title {
  color: #FFFFFF;
}

.creators-content .section-desc {
  color: #D1D5DB;
  margin-bottom: 32px;
}

.creator-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.creators-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.creators-visual-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-height: 380px;
  width: 100%;
  object-fit: cover;
}

.creators-visual .btn-cta-primary {
  width: 100%;
  max-width: 280px;
}

.creator-feature-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-md);
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.45;
}

/* 7) PLATFORMS */
.platforms-section {
  text-align: center;
  padding-bottom: 48px;
}

.platforms-section .seo-split,
.platforms-section .seo-prose,
.platforms-section .services-grid,
.platforms-section .service-card {
  text-align: left;
}

.seo-prose ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-prose li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: left;
}

.seo-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-primary, #E11D48);
}

.platforms-section .past-group {
  margin-bottom: 0;
}

.platforms-section .soft-note {
  margin-top: 16px;
  margin-bottom: 0;
}

.platform-group {
  margin-bottom: 40px;
}

.platform-group-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.group-subnote {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-tertiary);
}

.platform-group-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 20px auto;
}

.past-group {
  background: rgba(244, 240, 234, 0.5);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-color);
}

.platforms-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.platform-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-fast);
}

.platform-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.platform-chip.closed {
  opacity: 0.75;
  background: #FFFFFF;
  border-color: #E4E4E7;
}

.chip-status {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.chip-status.active {
  background: #DCFCE7;
  color: #166534;
}

.chip-status.past {
  background: #F4F4F5;
  color: #71717A;
  border: 1px solid #E4E4E7;
}

.soft-note {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 24px;
}

/* 8) PARTNER WITH US */
#partner.site-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.partner-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.partner-info {
  max-width: 650px;
}

/* 9) SPLIT CONTACT STRIP */
.contact-strip-section {
  padding-top: 40px;
}

.contact-strip-section .section-header {
  margin-bottom: 28px;
}

.split-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-contact-grid.contact-three {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  background: var(--bg-card);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--coral-border);
  box-shadow: var(--shadow-card);
}

.contact-card.brand-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDFD 100%);
}

.contact-card.creator-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F5 100%);
}

.contact-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.975rem;
}

/* 10) FOOTER */
.site-footer {
  background: #111827;
  color: #9CA3AF;
  padding: 80px 0 32px 0;
  border-top: 1px solid #1F2937;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand .logo-title {
  color: #FFFFFF;
}

.footer-brand .logo-subtitle {
  color: #6B7280;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  color: #9CA3AF;
}

.footer-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #9CA3AF;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 18px;
  align-items: flex-start;
  color: #D1D5DB;
  line-height: 1.5;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  line-height: 1.4;
}

.footer-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9CA3AF;
}

.footer-contact-item a {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--coral-primary, #E11D48);
}

.footer-corp-link {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #9CA3AF;
}

.footer-corp-link a {
  color: #D1D5DB;
  font-weight: 600;
}

.footer-corp-link a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1F2937;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6B7280;
}

/* MODAL / ENQUIRY DRAWER — compact sheet + steps */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-card);
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 0;
  position: relative;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(24px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: min(92dvh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-backdrop.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg-paper-alt, #f4f4f5);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-tertiary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.modal-head {
  padding: 20px 20px 12px;
  padding-right: 48px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text-main);
}

.modal-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.4;
}

.step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-dot {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-paper-alt, #f4f4f5);
  white-space: nowrap;
}

.step-dot.is-active {
  color: #fff;
  background: var(--coral-primary);
}

.step-dot.is-done {
  color: var(--coral-primary);
  background: rgba(238, 93, 82, 0.12);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  min-width: 12px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.modal-body {
  padding: 14px 20px 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
}

.step-caption {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.form-step[hidden] {
  display: none !important;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.modal-sheet .form-group {
  margin-bottom: 12px;
}

.modal-sheet .form-input,
.modal-sheet .form-select,
.modal-sheet .form-textarea {
  padding: 11px 12px;
  font-size: 0.9375rem;
}

.modal-sheet .form-textarea {
  min-height: 72px;
  resize: vertical;
}

.modal-foot {
  flex-shrink: 0;
  padding: 10px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-color);
  background: #fff;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-actions .btn-cta-primary,
.modal-actions .btn-cta-secondary {
  flex: 1;
  justify-content: center;
  min-height: 46px;
}

.modal-actions .is-hidden,
.modal-actions [hidden],
.btn-step-back.is-hidden,
.btn-step-next.is-hidden,
.btn-step-submit.is-hidden,
.btn-step-back[hidden],
.btn-step-next[hidden],
.btn-step-submit[hidden] {
  display: none !important;
}

.modal-req-mini {
  margin: 8px 0 0;
  text-align: center;
}

.modal-foot .form-status {
  margin: 0 0 8px;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .modal-backdrop {
    align-items: center;
    padding: 24px;
  }

  .modal-box {
    border-radius: var(--radius-xl);
    max-height: min(88vh, 640px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }

  .modal-head {
    padding: 22px 24px 14px;
    padding-right: 52px;
  }

  .modal-body {
    padding: 16px 24px 10px;
  }

  .modal-foot {
    padding: 12px 24px 18px;
  }

  .form-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-label .req {
  color: var(--coral-primary);
  font-weight: 800;
  margin-left: 2px;
}

.form-label .opt {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.form-req-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: -8px 0 16px;
}

.form-req-note .req {
  color: var(--coral-primary);
  font-weight: 800;
}

.field-hint {
  margin: 5px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.field-error {
  margin: 5px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b91c1c;
  line-height: 1.35;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #dc2626;
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-group.has-error .field-hint {
  display: none;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--bg-paper);
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--coral-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(238, 93, 82, 0.12);
}

/* Animations */
.fade-rise {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* RESPONSIVE MEDIA QUERIES (Mobile-First & Tablet Adjustments) */
@media (max-width: 1024px) {
  .site-section {
    padding: 64px 0;
  }

  #for-creators.site-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .categories-section.site-section {
    padding-bottom: 28px;
  }

  .platforms-section.site-section {
    padding-top: 28px;
  }

  .hero-headline {
    font-size: 2.75rem;
  }
  
  .steps-grid, .formats-grid, .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .creators-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .site-section {
    padding: 52px 0;
  }

  #for-creators.site-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .categories-section.site-section {
    padding-bottom: 20px;
  }

  .platforms-section.site-section {
    padding-top: 20px;
  }

  .header-inner {
    height: 70px;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

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

  .nav-link {
    padding: 10px 0;
    font-size: 1.05rem;
    border-bottom: 1px dashed var(--border-light);
    width: 100%;
  }

  .mobile-toggle {
    display: block;
  }

  .btn-cta-primary {
    padding: 10px 18px;
    font-size: 0.875rem;
  }

  .hero-section {
    padding: 32px 0 0 0;
  }

  .hero-section.hero-as-bg {
    height: clamp(480px, 62vh, 620px);
    max-height: 620px;
    padding: 28px 0 40px;
    background-position: center 28%;
  }

  .hero-as-bg-inner {
    padding-top: 12px;
  }

  .hero-brand-tag {
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-brand-tag .brand-name-hero {
    font-size: 0.75rem;
  }

  .hero-headline {
    font-size: 2.15rem;
    margin-bottom: 16px;
  }

  .hero-subline {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas button, .hero-ctas a {
    width: 100%;
    justify-content: center;
  }

  .hero-image-fullbleed {
    max-height: 360px;
    border-radius: var(--radius-lg);
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-desc {
    font-size: 0.975rem;
  }

  .steps-grid, .formats-grid, .categories-grid, .split-contact-grid,
  .split-contact-grid.contact-three {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .category-tile {
    height: 240px;
  }

  .partner-section {
    flex-direction: column;
    padding: 36px 24px;
    text-align: center;
  }

  .creators-section {
    padding: 36px 20px;
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .btn-cta-primary, .btn-cta-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .platform-chip {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

/* Inner / legal pages */
.page-hero-simple {
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, #FFF8F7 0%, #FBF8F4 100%);
}

.page-hero-simple h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero-simple p {
  color: var(--text-muted);
  max-width: 40rem;
}

.breadcrumb-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.breadcrumb-simple a:hover {
  color: var(--text-main);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 64px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 28px 0 10px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--text-main);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 14px;
  list-style: disc;
}

.legal-content a {
  color: var(--coral-primary, #E11D48);
  font-weight: 600;
}

.legal-content a.btn-cta-primary {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
}

.legal-content a.btn-cta-primary:hover {
  color: #FFFFFF;
}

.legal-content a.btn-cta-secondary {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  background: #FFFFFF;
}

.legal-content a.btn-cta-secondary:hover {
  color: var(--text-main);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status.ok {
  color: #15803d;
}

.form-status.err {
  color: #b91c1c;
}

.btn-cta-primary:disabled,
.btn-cta-secondary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Corporate + What We Do */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--coral-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.service-card a {
  color: var(--coral-primary);
  font-weight: 600;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.corp-table-wrap {
  max-width: none;
  margin: 0;
}

.corp-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.corp-table th,
.corp-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  font-size: 0.975rem;
  line-height: 1.55;
}

.corp-table th {
  width: 34%;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-card);
}

.corp-table td {
  color: var(--text-muted);
}

.corp-table tr:last-child th,
.corp-table tr:last-child td {
  border-bottom: none;
}

.corp-table a {
  color: var(--coral-primary);
  font-weight: 600;
}

.corp-map-link {
  margin-top: 14px;
  font-size: 0.95rem;
}

.corp-map-link a {
  color: var(--coral-primary);
  font-weight: 600;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 24px auto 0;
}

.cert-card {
  margin: 0;
}

.cert-placeholder {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

.cert-placeholder span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.cert-placeholder small {
  font-size: 0.8rem;
}

.cert-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: block;
}

.cert-card figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-three {
  grid-template-columns: repeat(3, 1fr);
}

.partner-card {
  background: var(--bg-paper);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.partner-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .services-grid,
  .cert-grid,
  .contact-three,
  .split-contact-grid.contact-three {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .corp-table th {
    width: 40%;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card h3 {
    font-size: 1.35rem;
  }
}

/* SEO marketing pages (brands / creators / live) */
.seo-hero {
  padding: 40px 0 0;
  position: relative;
}

.seo-hero .breadcrumb-simple {
  justify-content: center;
  margin-bottom: 20px;
}

.seo-hero .hero-content-wrapper {
  margin-bottom: 36px;
}

.seo-hero .hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.seo-hero .hero-subline {
  max-width: 780px;
}

.seo-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.seo-split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.seo-split.reverse .seo-split-media {
  order: -1;
}

.seo-split-media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.seo-split-media picture,
.hero-media-wrapper picture,
.category-tile picture,
.creators-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.seo-split-media picture img,
.hero-media-wrapper picture img {
  width: 100%;
  height: auto;
  display: block;
}

.category-tile picture {
  position: absolute;
  inset: 0;
}

.category-tile picture img,
.category-tile .category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-prose .section-label {
  margin-bottom: 12px;
}

.seo-prose .section-title {
  margin-bottom: 20px;
}

.seo-prose p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.seo-prose p strong {
  color: var(--text-main);
  font-weight: 600;
}

.seo-prose a:not(.btn-cta-primary):not(.btn-cta-secondary) {
  color: var(--coral-primary, #E11D48);
  font-weight: 600;
}

.seo-bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.seo-bullet {
  background: var(--bg-paper);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: var(--transition-smooth);
}

.seo-bullet:hover {
  border-color: var(--coral-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.seo-bullet h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.seo-bullet p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.seo-longform {
  max-width: 820px;
  margin: 0 auto;
}

.seo-longform h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 16px;
}

.seo-longform h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 28px 0 10px;
}

.seo-longform p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.seo-longform ul,
.seo-longform ol {
  padding-left: 1.35rem;
  margin: 0 0 20px;
  color: var(--text-muted);
}

.seo-longform li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.seo-longform a:not(.btn-cta-primary):not(.btn-cta-secondary) {
  color: var(--coral-primary, #E11D48);
  font-weight: 600;
}

.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.seo-faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.seo-faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 8px;
}

.seo-faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.seo-cta-band {
  background: linear-gradient(135deg, #FFF5F3 0%, #FBF8F4 50%, #FFF0EB 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.seo-cta-band .section-title {
  margin-bottom: 12px;
}

.seo-cta-band .section-desc {
  max-width: 640px;
  margin: 0 auto 28px;
}

.seo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.contact-form-layout .contact-form-panel {
  margin: 0;
}

.contact-form-layout .contact-form {
  max-width: none;
  width: 100%;
}

.contact-form-media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  min-height: 420px;
  background: var(--bg-paper-alt);
  position: relative;
}

.contact-form-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.contact-form-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.seo-alt-bg {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

@media (max-width: 900px) {
  .seo-split,
  .seo-split.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .seo-split.reverse .seo-split-media {
    order: 0;
  }

  .seo-bullet-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-media {
    min-height: 280px;
    max-height: 360px;
    order: -1;
  }
}

@media (max-width: 640px) {
  .seo-hero {
    padding-top: 28px;
  }

  .seo-hero .hero-subline {
    font-size: 1.05rem;
  }
}

