/* ============================================
   Rikas Media — design tokens
   ============================================ */
:root{
  --bg: #060309;
  --bg-alt: #0b0710;
  --surface: #150f20;
  --surface-2: #1c1429;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  /* Official Rikas Media brand palette */
  --deep-purple: #332675;  /* Strong & Trust */
  --purple: #6142f6;       /* Violet — Digital & Innovation (primary accent) */
  --purple-deep: #332675;  /* Deep Purple — Strong & Trust */
  --magenta: #ff0c9c;      /* Magenta — Creative & Passion */
  --pink: #ff889e;         /* Soft Pink — Feminine & Human Connection */
  --orange: #ee5c2b;       /* Orange — Energy & Optimism */
  --blue: var(--orange);   /* legacy alias kept so nothing else breaks */

  /* Gradient Meaning: Magenta -> Orange = "Creative Energy" */
  --gradient-brand: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  /* Gradient Meaning: Violet -> Magenta -> Orange = "Connected Creativity" */
  --gradient-text: linear-gradient(90deg, var(--purple) 0%, var(--magenta) 50%, var(--orange) 100%);
  --gradient-stat: linear-gradient(90deg, var(--magenta) 0%, var(--orange) 100%);
  --gradient-radial: radial-gradient(circle at 50% 50%, rgba(97,66,246,0.35) 0%, rgba(255,12,156,0.14) 45%, transparent 70%);

  --text: #f7f5fb;
  --text-muted: #ada6c2;
  --text-faint: #6f6787;

  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1760px;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; }

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

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

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

:focus-visible{
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ambient background glow + faint grid texture */
.bg-glow{
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 1000px 600px at 78% -8%, rgba(255,12,156,0.22), transparent 60%),
    radial-gradient(ellipse 800px 550px at 8% 20%, rgba(51,38,117,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 60%, rgba(238,92,43,0.10), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 64px),
    var(--bg);
}

/* ============================================
   Header
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,7,20,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.brand{ display: flex; align-items: center; gap: 12px; }

.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-name{ font-family: var(--font-display); font-weight: 700; font-size: 16.5px; }
.brand-tagline{ font-size: 11px; color: var(--text-faint); letter-spacing: 0.02em; }

.main-nav ul{
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

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

.main-nav a.active{ color: var(--text); }
.main-nav a.active::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.header-meta{ display: flex; align-items: center; gap: 18px; }

.hq-badge{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-faint);
  white-space: nowrap;
}
.hq-badge svg{ flex-shrink: 0; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span{
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,12,156,0.25), 0 10px 34px -10px rgba(255,12,156,0.75);
}
.btn-primary:hover{ box-shadow: 0 0 0 1px rgba(255,12,156,0.35), 0 14px 40px -8px rgba(97,66,246,0.75); }

.btn-outline{
  background: transparent;
  color: var(--text);
  border-color: rgba(97,66,246,0.55);
}
.btn-outline:hover{ background: rgba(97,66,246,0.08); border-color: var(--purple); }

.btn-small{ padding: 10px 20px; font-size: 13px; }

.btn-block{ width: 100%; justify-content: center; }

/* ============================================
   Eyebrow / section headers
   ============================================ */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(97,66,246,0.12);
  border: 1px solid rgba(97,66,246,0.35);
  color: #c4b5fd;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before{
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2{ font-size: clamp(28px, 4vw, 40px); }
.section-head p{ color: var(--text-muted); font-size: 16px; margin-top: 14px; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.text-gradient{
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section{ padding: 96px 0; }

/* ============================================
   Hero (shared pattern across pages)
   ============================================ */
.hero{
  padding: 76px 0 60px;
  position: relative;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-center{
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1{
  font-size: clamp(28px, 3.4vw, 58px);
  margin-bottom: 20px;
}

.hero-lede{
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-center .hero-lede{ margin-left: auto; margin-right: auto; }

.hero-cta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.hero-center .hero-cta{ justify-content: center; }

.hero-stats{
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-center .hero-stats{ justify-content: center; }

.hero-stat .num{
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-stat);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat .label{ font-size: 13px; color: var(--text-faint); margin-top: 2px; }

/* orbit / signature graphic */
.orbit{
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.orbit-ring{
  position: absolute;
  inset: 0;
  border: 1px solid rgba(97,66,246,0.35);
  border-radius: 50%;
}
.orbit-ring.r2{ inset: 15%; border-color: rgba(255,136,158,0.28); }
.orbit-ring.r3{ inset: 32%; border-color: rgba(56,189,248,0.3); background: var(--gradient-radial); }
.orbit-dot{
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 18px 2px currentColor;
}
.orbit-dot.purple{ color: var(--purple); background: var(--purple); top: 12%; left: 20%; }
.orbit-dot.pink{ color: var(--pink); background: var(--pink); top: 65%; left: 8%; }
.orbit-dot.blue{ color: var(--blue); background: var(--blue); top: 30%; right: 10%; }
.orbit-dot.blue2{ color: var(--blue); background: var(--blue); bottom: 10%; right: 25%; }
.orbit-dot.pink2{ color: var(--pink); background: var(--pink); bottom: 30%; left: 42%; }

.orbit-badge{
  position: absolute;
  background: rgba(23,18,37,0.9);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.orbit-badge.top{ top: -6px; right: 6%; color: var(--pink); }
.orbit-badge.bottom{ bottom: -6px; left: 4%; color: var(--purple); }

@media (prefers-reduced-motion: no-preference){
  .orbit-ring{ animation: spin 40s linear infinite; }
  .orbit-ring.r2{ animation: spin 30s linear infinite reverse; }
  .orbit-dot{ animation: pulse 3s ease-in-out infinite; }
}
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes pulse{ 0%,100%{ opacity: 1; transform: scale(1); } 50%{ opacity: 0.6; transform: scale(0.85); } }

/* ============================================
   Trusted partner strip
   ============================================ */
.partner-strip{
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-strip .eyebrow-label{
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 26px;
}
.partner-strip-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-pill{
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================
   Cards
   ============================================ */
.card-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(97,66,246,0.4);
  background: var(--surface-2);
}

.card-icon{
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
  background: rgba(97,66,246,0.14);
}
.card-icon.pink{ background: rgba(255,136,158,0.14); }
.card-icon.blue{ background: rgba(56,189,248,0.14); }
.card-icon.amber{ background: rgba(251,191,36,0.14); }
.card-icon.green{ background: rgba(74,222,128,0.14); }

.card h3{ font-size: 18px; margin-bottom: 10px; }
.card p{ color: var(--text-muted); font-size: 14.5px; }

.card-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pink);
  transition: gap 0.2s ease;
}
.card-link:hover{ gap: 10px; }

/* value/badge strip (services page) */
.value-strip{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 60px 0;
}
.value-item{ display: flex; align-items: center; gap: 12px; }
.value-item .dot{
  width: 34px; height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  font-size: 15px;
}
.value-item .title{ font-size: 13.5px; font-weight: 600; }
.value-item .sub{ font-size: 12px; color: var(--text-faint); }

/* ============================================
   CTA band
   ============================================ */
.cta-band{
  background: linear-gradient(135deg, rgba(51,38,117,0.35), rgba(255,136,158,0.25));
  border: 1px solid rgba(97,66,246,0.35);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}
.cta-band h2{ font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 14px; }
.cta-band p{ color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; }
.cta-band .hero-cta{ justify-content: center; margin-bottom: 0; }

/* ============================================
   Partners page — logo cards & tech pills
   ============================================ */
.logo-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}
.logo-card .logo-icon{
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--gradient-radial), var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 1px solid var(--border);
}
.logo-card .logo-name{ font-weight: 600; margin-bottom: 8px; }
.badge-pill{
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(97,66,246,0.15);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tech-label{
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 56px 0 26px;
}
.tech-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.tech-pill{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.program-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.program-card .card-icon{ background: rgba(56,189,248,0.14); }
.program-card ul{ margin: 20px 0 28px; }
.program-card li{
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text-muted);
  padding: 6px 0;
}
.program-card li::before{
  content: '';
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}

/* ============================================
   Resources — article cards
   ============================================ */
.article-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.article-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-meta{
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; color: var(--text-faint);
}
.tag-pill{
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tag-Guide{ background: rgba(97,66,246,0.18); color: #c4b5fd; }
.tag-Case-Study{ background: rgba(255,12,156,0.18); color: #ff8fc9; }
.tag-Report{ background: rgba(51,38,117,0.35); color: #b8adf0; }
.tag-Webinar{ background: rgba(238,92,43,0.18); color: #ffb08a; }

.article-card h3{ font-size: 19px; }

/* ============================================
   About — leadership
   ============================================ */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
}
.avatar{
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.team-card h3{ font-size: 16px; margin-bottom: 4px; }
.team-card .role{ font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

/* platform feature grid (services page, no icon-in-circle emphasis) */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
}
.feature-card .card-icon{ margin-bottom: 16px; }
.feature-card h3{ font-size: 16.5px; margin-bottom: 8px; }
.feature-card p{ font-size: 14px; color: var(--text-muted); }

/* ============================================
   Footer
   ============================================ */
.site-footer{
  border-top: 1px solid var(--border);
  padding-top: 72px;
  margin-top: 60px;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-desc{ color: var(--text-muted); font-size: 14px; margin: 18px 0 22px; max-width: 320px; }
.footer-socials{ display: flex; gap: 14px; }
.footer-socials a{
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover{ border-color: var(--purple); color: var(--text); }

.footer-col h4{ font-size: 14px; margin-bottom: 18px; }
.footer-col li{ margin-bottom: 12px; }
.footer-col a{ font-size: 14px; color: var(--text-muted); transition: color 0.2s ease; }
.footer-col a:hover{ color: var(--text); }

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-legal{ display: flex; gap: 22px; }
.footer-legal a:hover{ color: var(--text-muted); }

/* ============================================
   Contact page
   ============================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  gap: 18px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field{ display: flex; flex-direction: column; gap: 8px; }
.form-field label{ font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-field input,
.form-field textarea,
.form-field select{
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{ border-color: var(--purple); }
.contact-info-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* ============================================
   Booking page (Book a Strategy Call)
   ============================================ */
.booking-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.booking-panel{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.booking-panel h2{ font-size: 18px; margin-bottom: 22px; }
.privacy-note{
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 4px;
  line-height: 1.5;
}

.calendar-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-head h3{ font-size: 17px; }
.calendar-nav{ display: flex; gap: 8px; }
.calendar-nav button{
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
  background: var(--bg-alt);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.calendar-nav button:hover{ border-color: var(--purple); background: rgba(97,66,246,0.12); }

.calendar-weekdays{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: 8px;
}
.calendar-days{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day{
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.calendar-day.empty{ visibility: hidden; cursor: default; }
.calendar-day.past{ color: var(--text-faint); opacity: 0.4; cursor: not-allowed; }
.calendar-day.today{ border-color: rgba(97,66,246,0.55); font-weight: 700; }
.calendar-day:not(.past):not(.empty):hover{ background: rgba(97,66,246,0.16); }
.calendar-day.selected{ background: var(--gradient-brand); color: #fff; font-weight: 700; }

.time-slots{ margin-top: 22px; }
.time-slots-label{ font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
.time-slot-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slot{
  padding: 10px 8px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.time-slot:hover{ border-color: var(--purple); }
.time-slot.selected{ background: var(--gradient-brand); border-color: transparent; color: #fff; font-weight: 700; }

.booking-cta{
  margin-top: 22px;
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 14.5px;
  font-family: inherit;
  cursor: not-allowed;
  background: rgba(97,66,246,0.16);
  color: var(--text-faint);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.booking-cta.ready{
  cursor: pointer;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,12,156,0.25), 0 10px 34px -10px rgba(255,12,156,0.75);
}
.booking-cta.ready:hover{ transform: translateY(-2px); }

.booking-info-cards{ margin-top: 28px; }
.booking-confirm{ text-align: center; }

@media (max-width: 860px){
  .booking-grid{ grid-template-columns: 1fr; }
}
.form-success{
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.4);
  color: #86efac;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14.5px;
}
.form-error{
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.4);
  color: #fca5a5;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14.5px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .value-strip{ grid-template-columns: repeat(2, 1fr); }
  .tech-grid{ grid-template-columns: repeat(3, 1fr); }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .article-grid{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display: flex; }
  .main-nav ul{
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav ul.open{ max-height: 400px; }
  .main-nav ul li{ width: 100%; }
  .main-nav ul li a{ display: block; padding: 16px 24px; width: 100%; }
  .header-meta .hq-badge{ display: none; }
  .card-grid{ grid-template-columns: 1fr; }
  .value-strip{ grid-template-columns: 1fr; }
  .tech-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; gap: 12px; text-align: center; }
  .form-row{ grid-template-columns: 1fr; }
}
