/*
 * AI Discovery Workshop — Custom Styles
 * Prefixed with .aiw- to avoid conflicts with SEOCrawler theme
 */

/* Hide SEOCrawler theme's default page title bar on this template */
body.page-template-template-ai-workshop .seocrawler-page-title-wrap,
body.page-template-template-ai-workshop .seocrawler-header-transparent-substitute {
  display: none !important;
}

:root {
  --aiw-navy-deep: #051b28;
  --aiw-navy: #072432;
  --aiw-navy-mid: #0e3347;
  --aiw-navy-light: #11374a;
  --aiw-teal: #0d7f92;
  --aiw-teal-light: #14a3b8;
  --aiw-cyan: #2ee1ff;
  --aiw-cyan-soft: #7aeeff;
  --aiw-cyan-glow: rgba(46, 225, 255, 0.15);
  --aiw-orange: #ffb433;
  --aiw-orange-hover: #ffc45c;
  --aiw-mint: #dcfcfc;
  --aiw-ice: #f4fdfe;
  --aiw-ice-warm: #f8fffe;
  --aiw-slate: #8fa8b7;
  --aiw-body-text: #2a4a5a;
  --aiw-body-light: #5a7a8a;
  --aiw-white: #ffffff;
  --aiw-font-body: 'DM Sans', -apple-system, sans-serif;
  --aiw-font-mono: 'JetBrains Mono', monospace;
  --aiw-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --aiw-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET for our sections only ── */
[class^="aiw-"] *, [class^="aiw-"] *::before, [class^="aiw-"] *::after {
  box-sizing: border-box;
}
[class^="aiw-"] {
  font-family: var(--aiw-font-body);
  color: var(--aiw-body-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED ── */
.aiw-section-eyebrow {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--aiw-teal);
  margin-bottom: 1rem;
  font-family: var(--aiw-font-mono);
}

@keyframes aiwFadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aiwPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes aiwNodeFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.8; }
  80% { opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.2); }
}
@keyframes aiwFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aiwCalSpin { to { transform: rotate(360deg); } }

/* ── HERO ── */
.aiw-hero {
  position: relative; padding: 8rem 2rem 4rem;
  background: var(--aiw-navy-deep);
  overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: center;
}
.aiw-hero::before {
  content: '';
  position: absolute; top: -30%; right: -10%; width: 70%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(46, 225, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.aiw-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 225, 255, 0.2), transparent);
}
.aiw-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(46, 225, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 225, 255, 1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black, transparent);
  pointer-events: none;
}
.aiw-hero-nodes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.aiw-node {
  position: absolute; width: 4px; height: 4px;
  background: var(--aiw-cyan); border-radius: 50%;
  opacity: 0; animation: aiwNodeFloat 8s infinite;
}
.aiw-node::after {
  content: ''; position: absolute;
  width: 40px; height: 40px; top: -18px; left: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,225,255,0.15), transparent 70%);
}
.aiw-node:nth-child(1) { top: 20%; right: 15%; animation-delay: 0s; }
.aiw-node:nth-child(2) { top: 60%; right: 25%; animation-delay: 2s; }
.aiw-node:nth-child(3) { top: 35%; right: 35%; animation-delay: 4s; }
.aiw-node:nth-child(4) { top: 75%; right: 10%; animation-delay: 1s; }
.aiw-node:nth-child(5) { top: 15%; right: 40%; animation-delay: 3s; }
.aiw-node:nth-child(6) { top: 50%; right: 5%; animation-delay: 5s; }

.aiw-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.aiw-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(46, 225, 255, 0.08);
  border: 1px solid rgba(46, 225, 255, 0.15);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 600; color: var(--aiw-cyan);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  animation: aiwFadeSlideUp 0.8s var(--aiw-ease-out) 0.1s both;
}
.aiw-badge-dot {
  width: 6px; height: 6px; background: var(--aiw-cyan); border-radius: 50%;
  animation: aiwPulse 2s infinite;
}
.aiw-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.03em;
  color: var(--aiw-white);
  margin-bottom: 1.5rem;
  animation: aiwFadeSlideUp 0.8s var(--aiw-ease-out) 0.2s both;
}
.aiw-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--aiw-cyan), var(--aiw-teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.aiw-hero-sub {
  font-size: 1.15rem; color: var(--aiw-slate); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.5rem;
  animation: aiwFadeSlideUp 0.8s var(--aiw-ease-out) 0.35s both;
}
.aiw-hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: aiwFadeSlideUp 0.8s var(--aiw-ease-out) 0.5s both;
}

.aiw-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--aiw-orange); color: var(--aiw-navy-deep);
  padding: 0.9rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s var(--aiw-ease-out);
  border: none; cursor: pointer; font-family: var(--aiw-font-body);
  box-shadow: 0 4px 20px rgba(255, 180, 51, 0.25);
}
.aiw-btn-primary:hover {
  background: var(--aiw-orange-hover); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 180, 51, 0.35);
}
.aiw-btn-primary svg { transition: transform 0.2s; }
.aiw-btn-primary:hover svg { transform: translateX(3px); }

.aiw-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--aiw-white);
  padding: 0.9rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s var(--aiw-ease-out);
}
.aiw-btn-ghost:hover {
  border-color: rgba(46, 225, 255, 0.3);
  background: rgba(46, 225, 255, 0.05);
}

.aiw-hero-visual {
  position: relative;
  animation: aiwFadeSlideUp 0.8s var(--aiw-ease-out) 0.6s both;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.aiw-visual-card {
  background: rgba(14, 51, 71, 0.6);
  border: 1px solid rgba(46, 225, 255, 0.1);
  border-radius: 16px 16px 16px 4px; padding: 1.35rem 1.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  border-left: 3px solid rgba(46, 225, 255, 0.25);
  transition: transform 0.35s var(--aiw-ease-out), box-shadow 0.35s var(--aiw-ease-out);
}
.aiw-visual-card:nth-child(1) {
  margin-left: 0; transform: rotate(-0.5deg);
}
.aiw-visual-card:nth-child(2) {
  margin-left: 2.5rem; transform: rotate(0.3deg);
  border-radius: 16px 16px 4px 16px;
  border-left: none; border-right: 3px solid rgba(46, 225, 255, 0.25);
}
.aiw-visual-card:nth-child(3) {
  margin-left: 5rem; transform: rotate(-0.4deg);
}
.aiw-visual-card:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 225, 255, 0.08);
}
.aiw-visual-card + .aiw-visual-card { margin-top: 0; }
.aiw-card-label {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--aiw-cyan); margin-bottom: 0.6rem;
  opacity: 0.7;
}
.aiw-card-question {
  color: var(--aiw-mint); font-size: 0.95rem; font-weight: 500;
  line-height: 1.5; font-style: italic; opacity: 0.9;
}
.aiw-card-question::before { content: '\201C'; color: var(--aiw-cyan); font-size: 1.2rem; margin-right: 0.1em; opacity: 0.6; }
.aiw-card-question::after { content: '\201D'; color: var(--aiw-cyan); font-size: 1.2rem; margin-left: 0.05em; opacity: 0.6; }

/* ── PROBLEM SECTION ── */
.aiw-problem {
  padding: 4rem 2rem;
  background: var(--aiw-ice);
  position: relative;
}
.aiw-problem::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--aiw-cyan), var(--aiw-teal), var(--aiw-orange));
}
.aiw-problem-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.aiw-problem h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--aiw-navy); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.aiw-problem-text {
  font-size: 1.1rem; color: var(--aiw-body-light); line-height: 1.75;
  margin-bottom: 2rem;
}
.aiw-pain-points {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  text-align: left; max-width: 640px; margin: 0 auto;
}
.aiw-pain-point {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--aiw-white); border-radius: 12px; padding: 1.25rem 1.5rem;
  border: 1px solid rgba(13, 127, 146, 0.08);
  transition: all 0.3s var(--aiw-ease-out);
}
.aiw-pain-point:hover {
  border-color: rgba(13, 127, 146, 0.15);
  box-shadow: 0 4px 20px rgba(13, 127, 146, 0.06);
  transform: translateX(4px);
}
.aiw-pain-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--aiw-cyan-glow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--aiw-teal); font-size: 1.5rem;
}
.aiw-pain-point p {
  color: var(--aiw-navy-mid); font-size: 0.95rem; font-weight: 500;
  line-height: 1.5;
}
.aiw-pain-point p em {
  font-style: italic; color: var(--aiw-teal); font-weight: 600;
}

/* ── WORKSHOP TRACKS ── */
.aiw-tracks {
  padding: 4.5rem 2rem;
  background: var(--aiw-white);
}
.aiw-tracks-inner { max-width: 1280px; margin: 0 auto; }
.aiw-tracks-header {
  text-align: center; margin-bottom: 2.5rem;
}
.aiw-tracks-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--aiw-navy); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 1rem;
}
.aiw-tracks-header p {
  font-size: 1.1rem; color: var(--aiw-body-light); max-width: 600px; margin: 0 auto;
}
.aiw-track-tabs {
  display: flex; gap: 0; justify-content: center; margin-bottom: 3rem;
  background: var(--aiw-navy-deep); border-radius: 14px; padding: 5px;
  max-width: 520px; margin-left: auto; margin-right: auto; margin-bottom: 3rem;
  border: 1px solid rgba(46, 225, 255, 0.15);
  box-shadow: 0 2px 16px rgba(7, 25, 43, 0.12);
}
.aiw-track-tab {
  flex: 1; padding: 0.9rem 1.5rem;
  background: transparent; border: none; border-radius: 10px;
  font-family: var(--aiw-font-body); font-size: 0.95rem; font-weight: 600;
  color: rgba(220, 252, 252, 0.5); cursor: pointer;
  transition: all 0.3s var(--aiw-ease-out);
  position: relative;
}
.aiw-track-tab:hover:not(.active) {
  color: rgba(220, 252, 252, 0.8);
  background: rgba(46, 225, 255, 0.06);
}
.aiw-track-tab.active {
  background: linear-gradient(135deg, var(--aiw-teal), var(--aiw-cyan));
  color: var(--aiw-white);
  box-shadow: 0 4px 16px rgba(46, 225, 255, 0.25);
}
.aiw-track-content { display: none; }
.aiw-track-content.active { display: block; animation: aiwFadeIn 0.4s var(--aiw-ease-out); }

.aiw-track-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.aiw-track-info-card {
  background: linear-gradient(135deg, var(--aiw-navy-deep), var(--aiw-navy-mid));
  border-radius: 20px; padding: 2.5rem;
  color: var(--aiw-white); position: relative; overflow: hidden;
}
.aiw-track-info-card::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(46, 225, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.aiw-track-number {
  font-family: var(--aiw-font-mono); font-size: 0.72rem; font-weight: 600;
  color: var(--aiw-cyan); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.aiw-track-info-card h3 {
  font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 0.5rem; line-height: 1.25;
}
.aiw-track-audience {
  font-size: 0.85rem; color: var(--aiw-slate); margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.aiw-track-description {
  font-size: 0.95rem; color: rgba(220, 252, 252, 0.8);
  line-height: 1.7; position: relative; z-index: 1;
}
.aiw-track-topics {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.aiw-topic {
  background: var(--aiw-ice); border-radius: 14px; padding: 1.5rem 1.75rem;
  border: 1px solid rgba(13, 127, 146, 0.06);
  transition: all 0.3s var(--aiw-ease-out);
}
.aiw-topic:hover {
  border-color: rgba(13, 127, 146, 0.12);
  box-shadow: 0 4px 16px rgba(13, 127, 146, 0.05);
}
.aiw-topic-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.aiw-topic-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.aiw-topic-icon.strategy { background: rgba(255, 180, 51, 0.12); color: var(--aiw-orange); }
.aiw-topic-icon.tech { background: rgba(46, 225, 255, 0.12); color: var(--aiw-teal); }
.aiw-topic h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--aiw-navy);
  letter-spacing: -0.01em;
}
.aiw-topic p {
  font-size: 0.88rem; color: var(--aiw-body-light); line-height: 1.65;
  margin-left: calc(32px + 0.75rem);
}
.aiw-track-deliverable {
  margin-top: 1.75rem; padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1);
}
.aiw-deliverable-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--aiw-cyan); margin-bottom: 0.5rem;
  font-family: var(--aiw-font-mono);
}
.aiw-track-deliverable p {
  font-size: 0.9rem; color: rgba(220, 252, 252, 0.85); line-height: 1.6; font-weight: 500;
}

/* ── PROCESS ── */
.aiw-process {
  padding: 4.5rem 2rem;
  background: var(--aiw-navy-deep);
  position: relative; overflow: hidden;
}
.aiw-process::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(46,225,255,0.15), transparent);
}
.aiw-process-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.aiw-process-header {
  text-align: center; margin-bottom: 2.5rem;
}
.aiw-process-header .aiw-section-eyebrow { color: var(--aiw-cyan); }
.aiw-process-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--aiw-white); letter-spacing: -0.02em;
  line-height: 1.2;
}
.aiw-process-steps { display: flex; flex-direction: column; gap: 0; }
.aiw-step {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2.5rem;
  align-items: center; padding: 1.25rem 0;
}
.aiw-step:nth-child(odd) .aiw-step-content { grid-column: 1; text-align: right; }
.aiw-step:nth-child(odd) .aiw-step-marker { grid-column: 2; }
.aiw-step:nth-child(odd) .aiw-step-spacer { grid-column: 3; }
.aiw-step:nth-child(even) .aiw-step-spacer { grid-column: 1; }
.aiw-step:nth-child(even) .aiw-step-marker { grid-column: 2; }
.aiw-step:nth-child(even) .aiw-step-content { grid-column: 3; }
.aiw-step-marker {
  width: 56px; height: 56px;
  background: var(--aiw-navy-mid); border: 2px solid rgba(46, 225, 255, 0.2);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--aiw-font-mono); font-size: 0.85rem; font-weight: 700;
  color: var(--aiw-cyan); position: relative;
  transition: all 0.3s var(--aiw-ease-out);
}
.aiw-step:hover .aiw-step-marker {
  border-color: var(--aiw-cyan);
  box-shadow: 0 0 30px rgba(46, 225, 255, 0.15);
  transform: scale(1.05);
}
.aiw-step-content h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--aiw-white);
  margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.aiw-step-content p {
  font-size: 0.9rem; color: var(--aiw-slate); line-height: 1.65;
}

/* ── WHY INTRANEL ── */
.aiw-why {
  padding: 4.5rem 2rem;
  background: var(--aiw-ice);
}
.aiw-why-inner { max-width: 1100px; margin: 0 auto; }
.aiw-why-header { text-align: center; margin-bottom: 2.5rem; }
.aiw-why-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--aiw-navy); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 1rem;
}
.aiw-why-header p {
  font-size: 1.1rem; color: var(--aiw-body-light); max-width: 600px; margin: 0 auto;
}
.aiw-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.aiw-why-card {
  background: var(--aiw-white); border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(13, 127, 146, 0.06);
  transition: all 0.35s var(--aiw-ease-out);
  position: relative; overflow: hidden;
}
.aiw-why-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--aiw-cyan), var(--aiw-teal));
  opacity: 0; transition: opacity 0.3s;
}
.aiw-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 127, 146, 0.08);
}
.aiw-why-card:hover::after { opacity: 1; }
.aiw-why-icon {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem;
  background: var(--aiw-cyan-glow); color: var(--aiw-teal);
}
.aiw-why-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--aiw-navy);
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.aiw-why-card p {
  font-size: 0.88rem; color: var(--aiw-body-light); line-height: 1.65;
}

/* ── WHO ── */
.aiw-who {
  padding: 3.5rem 2rem;
  background: var(--aiw-white);
}
.aiw-who-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.aiw-who h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--aiw-navy); letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.aiw-who-tags {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}
.aiw-who-tag {
  background: var(--aiw-ice); border: 1px solid rgba(13, 127, 146, 0.08);
  border-radius: 100px; padding: 0.65rem 1.4rem;
  font-size: 0.88rem; color: var(--aiw-navy-mid); font-weight: 500;
  transition: all 0.25s var(--aiw-ease-out);
}
.aiw-who-tag:hover {
  background: var(--aiw-cyan-glow);
  border-color: rgba(46, 225, 255, 0.2);
  color: var(--aiw-teal);
}

/* ── BOOKING ── */
.aiw-booking {
  padding: 5rem 2rem;
  background: var(--aiw-ice-warm);
  position: relative;
}
.aiw-booking-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem;
  align-items: start;
}
.aiw-booking-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--aiw-navy); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 1rem;
}
.aiw-booking-info > p {
  font-size: 1.05rem; color: var(--aiw-body-light); line-height: 1.7;
  margin-bottom: 2rem;
}
.aiw-booking-features {
  display: flex; flex-direction: column; gap: 1rem;
}
.aiw-booking-feature {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.aiw-booking-feature-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: rgba(46, 225, 255, 0.1); color: var(--aiw-teal);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; font-size: 0.75rem;
}
.aiw-booking-feature p {
  font-size: 0.92rem; color: var(--aiw-body-text); line-height: 1.55;
}
.aiw-booking-feature strong { color: var(--aiw-navy); }

/* ── Calendar Widget ── */
.aiw-calendar-widget {
  background: var(--aiw-white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(7, 36, 50, 0.08), 0 1px 3px rgba(7, 36, 50, 0.04);
  overflow: hidden;
  border: 1px solid rgba(13, 127, 146, 0.06);
}
.aiw-cal-header {
  padding: 0.85rem 1.35rem;
  background: linear-gradient(135deg, var(--aiw-navy-deep), var(--aiw-navy-mid));
  color: var(--aiw-white);
  display: flex; justify-content: space-between; align-items: center;
}
.aiw-cal-title h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--aiw-white);
}
.aiw-cal-title p { font-size: 0.72rem; color: var(--aiw-slate); margin-top: 0.15rem; }
.aiw-cal-duration {
  background: rgba(46, 225, 255, 0.1);
  border: 1px solid rgba(46, 225, 255, 0.2);
  border-radius: 8px; padding: 0.35rem 0.75rem;
  font-size: 0.75rem; font-weight: 600; color: var(--aiw-cyan);
  font-family: var(--aiw-font-mono);
}
.aiw-cal-body { padding: 0.8rem 1.35rem; }
.aiw-cal-month-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.5rem;
}
.aiw-cal-month {
  font-size: 0.9rem; font-weight: 700; color: var(--aiw-navy);
}
.aiw-cal-nav-btns { display: flex; gap: 0.25rem; }
.aiw-cal-nav-btn {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--aiw-ice); border: 1px solid rgba(13, 127, 146, 0.06);
  color: var(--aiw-teal); cursor: pointer; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.aiw-cal-nav-btn:hover {
  background: var(--aiw-cyan-glow); border-color: rgba(46, 225, 255, 0.2);
}
.aiw-cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: 0.2rem;
}
.aiw-cal-weekday {
  font-size: 0.62rem; font-weight: 700; color: var(--aiw-body-light);
  text-transform: uppercase; letter-spacing: 0.05em; padding: 0.15rem 0;
}
.aiw-cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.aiw-cal-day {
  height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500; border-radius: 5px;
  color: var(--aiw-body-text); cursor: default; transition: all 0.2s;
  position: relative;
}
.aiw-cal-day.other-month { color: #c8d8e0; }
.aiw-cal-day.available {
  cursor: pointer; font-weight: 600; color: var(--aiw-navy);
  background: rgba(46, 225, 255, 0.06);
}
.aiw-cal-day.available:hover {
  background: var(--aiw-cyan); color: var(--aiw-navy-deep);
  transform: scale(1.08);
  box-shadow: 0 2px 10px rgba(46, 225, 255, 0.3);
}
.aiw-cal-day.available::after {
  content: ''; position: absolute; bottom: 3px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--aiw-teal); opacity: 0.6;
}
.aiw-cal-day.selected {
  background: var(--aiw-teal); color: var(--aiw-white); font-weight: 700;
}
.aiw-cal-day.today {
  border: 2px solid var(--aiw-orange);
}
.aiw-cal-times {
  padding: 0.6rem 1.25rem;
  border-top: 1px solid rgba(13, 127, 146, 0.06);
}
.aiw-cal-times-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--aiw-teal); margin-bottom: 0.5rem;
  font-family: var(--aiw-font-mono);
}
.aiw-time-slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.aiw-time-slot {
  padding: 0.5rem 0.25rem; border-radius: 8px; font-size: 0.78rem;
  font-weight: 600; cursor: pointer; border: 1px solid rgba(13, 127, 146, 0.12);
  color: var(--aiw-teal); background: var(--aiw-white);
  transition: all 0.2s var(--aiw-ease-out);
  font-family: var(--aiw-font-mono);
  text-align: center;
}
.aiw-time-slot:hover {
  background: var(--aiw-cyan-glow); border-color: var(--aiw-cyan);
}
.aiw-time-slot.selected {
  background: var(--aiw-teal); color: var(--aiw-white); border-color: var(--aiw-teal);
}
.aiw-cal-footer {
  padding: 0.6rem 1.25rem;
  border-top: 1px solid rgba(13, 127, 146, 0.06);
}
.aiw-cal-book-btn {
  width: 100%; padding: 0.85rem;
  background: var(--aiw-orange); color: var(--aiw-navy-deep);
  border: none; border-radius: 10px; font-size: 0.92rem;
  font-weight: 700; cursor: pointer;
  font-family: var(--aiw-font-body);
  transition: all 0.3s var(--aiw-ease-out);
  box-shadow: 0 4px 16px rgba(255, 180, 51, 0.2);
}
.aiw-cal-book-btn:hover {
  background: var(--aiw-orange-hover); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 180, 51, 0.3);
}
.aiw-cal-timezone {
  text-align: center; margin-top: 0.75rem;
  font-size: 0.72rem; color: var(--aiw-body-light);
  font-family: var(--aiw-font-mono);
}
.aiw-cal-contact { padding: 1.25rem 2rem 0; border-top: 1px solid rgba(13, 127, 146, 0.08); }
.aiw-cal-contact-fields { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.aiw-cal-input {
  width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid #dde4e8;
  border-radius: 8px; font-size: 0.85rem; font-family: var(--aiw-font-body);
  color: var(--aiw-navy-deep); background: var(--aiw-white);
  transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box;
}
.aiw-cal-input:focus {
  outline: none; border-color: var(--aiw-teal);
  box-shadow: 0 0 0 3px rgba(13, 127, 146, 0.1);
}
.aiw-cal-input::placeholder { color: #a0aeb8; }
.aiw-cal-input.error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1); }
.aiw-cal-loading {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.5rem 0; font-size: 0.8rem; color: var(--aiw-teal);
  font-family: var(--aiw-font-mono);
}
.aiw-cal-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(13, 127, 146, 0.2);
  border-top-color: var(--aiw-teal); border-radius: 50%;
  animation: aiwCalSpin 0.7s linear infinite;
}
.aiw-cal-error-msg {
  text-align: center; padding: 1rem; font-size: 0.8rem; color: #e74c3c;
  font-style: italic;
}

/* ── TESTIMONIALS ── */
.aiw-testimonials {
  padding: 5rem 2rem;
  background: var(--aiw-ice);
  position: relative; overflow: hidden;
}
.aiw-testimonials-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 1;
  text-align: center;
}
.aiw-testimonials h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--aiw-navy); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 3rem;
}
.aiw-testimonial-carousel {
  position: relative;
}
.aiw-testimonial-track {
  display: flex; overflow: hidden;
}
.aiw-testimonial-card {
  min-width: 100%; padding: 0 1rem;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}
.aiw-testimonial-card.active {
  display: flex; flex-direction: column; opacity: 1; transform: translateX(0);
}
.aiw-testimonial-quote {
  position: relative; padding: 2.5rem 3rem;
  background: var(--aiw-white);
  border: 1px solid rgba(13, 127, 146, 0.08);
  border-radius: 20px;
  margin-bottom: 2rem;
  min-height: 220px;
  display: flex; align-items: center;
  box-shadow: 0 4px 24px rgba(7, 25, 43, 0.06);
}
.aiw-testimonial-quote::before {
  content: '\201C';
  position: absolute; top: -0.15rem; left: 1.5rem;
  font-size: 5rem; line-height: 1;
  color: var(--aiw-teal); opacity: 0.15;
  font-family: Georgia, serif;
}
.aiw-testimonial-quote p {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--aiw-body-light);
  font-style: italic; text-align: left;
  position: relative; z-index: 1;
}
.aiw-testimonial-author {
  display: flex; align-items: center; gap: 1.25rem;
  justify-content: center;
}
.aiw-testimonial-author img {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(13, 127, 146, 0.15);
  object-fit: cover;
}
.aiw-testimonial-author strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--aiw-navy); margin-bottom: 0.15rem;
}
.aiw-testimonial-author span {
  font-size: 0.82rem; color: var(--aiw-teal);
  font-family: var(--aiw-font-mono); font-weight: 500;
}
.aiw-testimonial-author div { text-align: left; }
.aiw-testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-top: 2.5rem;
}
.aiw-testimonial-dots {
  display: flex; gap: 0.5rem;
}
.aiw-testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(7, 25, 43, 0.12);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.aiw-testimonial-dot.active {
  background: var(--aiw-teal); width: 24px; border-radius: 4px;
}
.aiw-testimonial-navs { display: flex; gap: 0.5rem; }
.aiw-testimonial-nav {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--aiw-white);
  border: 1px solid rgba(13, 127, 146, 0.12);
  color: var(--aiw-navy-mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(7, 25, 43, 0.06);
}
.aiw-testimonial-nav:hover {
  background: var(--aiw-white);
  border-color: var(--aiw-teal);
  color: var(--aiw-teal);
}

/* ── TRUST ── */
.aiw-trust {
  padding: 3rem 2rem;
  background: var(--aiw-white);
  border-top: 1px solid rgba(13, 127, 146, 0.06);
}
.aiw-trust-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.aiw-trust p {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--aiw-slate); margin-bottom: 2rem;
}
.aiw-trust-logos {
  display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: center;
  align-items: center;
}
.aiw-trust-logo-img {
  height: 35px; width: auto; opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.aiw-trust-logo-img:hover {
  opacity: 1; filter: grayscale(0%);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .aiw-hero-inner { grid-template-columns: 1fr; }
  .aiw-hero-visual { display: none; }
  .aiw-track-layout { grid-template-columns: 1fr; }
  .aiw-why-grid { grid-template-columns: 1fr; }
  .aiw-booking-inner { grid-template-columns: 1fr; }
  .aiw-step { grid-template-columns: auto 1fr !important; gap: 1.25rem; }
  .aiw-step .aiw-step-spacer { display: none; }
  .aiw-step .aiw-step-content { grid-column: 2 !important; grid-row: 1 !important; text-align: left !important; }
  .aiw-step .aiw-step-marker { grid-column: 1 !important; grid-row: 1 !important; }
}
@media (max-width: 600px) {
  .aiw-hero { padding: 8rem 1.25rem 4rem; min-height: auto; }
  .aiw-hero h1 { font-size: 2rem; }
  .aiw-hero-actions { flex-direction: column; }
}
