:root {
  --blue-dark: #1E3A8A;
  --blue: #3B82F6;
  --blue-accent: #0EA5E9;
  --white: #FFFFFF;
  --bg-light: #F1F5F9;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --line: rgba(30, 58, 138, 0.12);
  --line-strong: rgba(30, 58, 138, 0.2);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-large: 0 28px 64px rgba(15, 23, 42, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(59, 130, 246, 0.14), transparent 18%),
    linear-gradient(180deg, #F8FBFF 0%, var(--bg-light) 45%, #FAFCFF 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(59, 130, 246, 0.2);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  padding: 12px 16px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 999px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--blue-accent);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-heading,
.process-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-accent));
}

.section-tag-inverse {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.section-tag-inverse::before {
  background: var(--white);
}

.section-title,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-text,
.about-copy p,
.contact-copy p {
  margin: 0;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 28px rgba(59, 130, 246, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 24px 36px rgba(59, 130, 246, 0.28);
}

.btn-secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(59, 130, 246, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: rgba(59, 130, 246, 0.32);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 16px 28px rgba(10, 27, 80, 0.16);
}

.contact-submit-btn {
  min-height: 54px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 20px 32px rgba(59, 130, 246, 0.24);
}

.contact-submit-btn:hover {
  color: var(--white);
  background: linear-gradient(135deg, #18337b, #256fe6);
  box-shadow: 0 24px 38px rgba(59, 130, 246, 0.28);
}

.contact-submit-btn.is-loading,
.contact-submit-btn:disabled {
  cursor: progress;
  transform: none;
  opacity: 0.88;
  box-shadow: 0 14px 24px rgba(59, 130, 246, 0.18);
}

.contact-submit-btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btn-spin 0.75s linear infinite;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-dark), var(--blue-accent));
  box-shadow: var(--shadow-soft);
}

.brand-mark-image {
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--blue-accent));
  transition: transform 0.2s ease;
}

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

.site-nav a[aria-current="page"] {
  color: var(--text-dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding-top: 72px;
}

.hero-layout,
.split-layout,
.why-layout,
.contact-layout,
.footer-layout {
  display: grid;
  gap: 36px;
}

.hero-layout {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
}

.hero-copy,
.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-intro {
  margin: 0 0 28px;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn,
.contact-actions .btn,
.audit-actions .btn {
  min-width: clamp(190px, 24vw, 250px);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  padding: 12px 16px;
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.page-hero {
  padding-top: 60px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 36px;
  align-items: stretch;
}

.page-hero-copy h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-chip-row span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(59, 130, 246, 0.14);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.page-summary-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: clamp(360px, 42vw, 460px);
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(150deg, #0F172A 0%, var(--blue-dark) 52%, var(--blue-accent) 100%);
  box-shadow: var(--shadow-large);
}

.page-summary-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.page-summary-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.page-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-summary-grid-extended {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-summary-grid div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 104px;
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.page-summary-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.page-summary-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.profile-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.profile-summary-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.profile-summary-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
}

.profile-summary-item span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 620px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #0F172A 0%, var(--blue-dark) 48%, var(--blue-accent) 100%);
  box-shadow: var(--shadow-large);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.3;
}

.visual-glow-one {
  top: -50px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.26);
}

.visual-glow-two {
  bottom: 80px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.12);
}

.profile-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 42px rgba(4, 17, 45, 0.24);
}
.mini-tag,
.result-type {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-panel {
  position: relative;
  inset: auto;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 30px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-card-head {
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-card-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(4, 17, 45, 0.22);
}

.brand-card-image {
  width: 100%;
  height: 100%;
  padding: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
}

.brand-card-copy {
  min-width: 0;
  text-align: center;
}

.brand-card-label {
  display: inline-flex;
  justify-content: center;
  margin: 0 0 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-expertise {
  width: 100%;
  max-width: 520px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-expertise-title {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.brand-expertise-tags {
  display: grid;
  gap: 8px;
}

.brand-expertise-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-expertise-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.15;
  font-weight: 700;
}

.profile-panel h2,
.contact-card h3,
.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.profile-text {
  max-width: 540px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 620px;
}

.profile-metrics div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.metric-value {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.12;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  padding-bottom: 20px;
}

.who-section {
  padding-top: 56px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.audience-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.audience-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.audience-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.trust-strip-inner,
.service-card,
.feature-card,
.result-card,
.process-card,
.testimonial-card,
.faq-item,
.contact-card,
.about-visual-card,
.stat-band {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border-radius: 24px;
}

.trust-strip-inner p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-weight: 700;
}

.about-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.portrait-layout,
.booking-layout {
  display: grid;
  gap: 32px;
  align-items: stretch;
}

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

.booking-layout {
  grid-template-columns: 0.92fr 1.08fr;
}

.portrait-frame,
.booking-card,
.comparison-card,
.audit-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-large);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 18px 18px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.18), transparent 22%),
    linear-gradient(155deg, #DCEAFE 0%, var(--white) 48%, #C7DDFE 100%);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px 18px 0;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.portrait-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 28px 28px 0 0;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.03);
}

.portrait-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portrait-card .section-text + .section-text {
  margin-top: 16px;
}

.portrait-quote {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.portrait-quote strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.portrait-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.portrait-highlights div {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.portrait-highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.portrait-highlights span {
  color: var(--text-muted);
}

.booking-card,
.audit-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
}

.booking-card {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.9);
}

.booking-card h3,
.comparison-card h3,
.audit-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
}

.booking-card p,
.comparison-card p,
.audit-card p {
  margin: 0;
  color: var(--text-muted);
}

.contact-method-grid,
.timeline-grid,
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-method-card,
.timeline-card,
.pricing-preview-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-method-card:hover,
.timeline-card:hover,
.pricing-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.contact-method-card h3,
.timeline-card h3,
.pricing-preview-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.contact-method-card p,
.timeline-card p,
.pricing-preview-card p {
  margin: 0;
  color: var(--text-muted);
}

.timeline-card strong,
.pricing-preview-amount {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-family: "Sora", sans-serif;
}

.pricing-preview-amount {
  font-size: 1.9rem;
  line-height: 1;
}

.pricing-preview-card small {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 700;
}

.booking-steps {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.booking-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.booking-step strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.booking-step span {
  color: var(--text-muted);
}

.booking-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(30, 58, 138, 0.06);
  color: var(--text-muted);
}

.scheduler-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 32px;
  align-items: start;
}

.scheduler-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-large);
}

.scheduler-calendar-card {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.92);
}

.scheduler-form-card {
  background:
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.94);
}

.scheduler-month-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.scheduler-month-label,
.scheduler-slot-title {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.scheduler-month-label {
  flex: 1 1 auto;
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
}

.scheduler-slot-title {
  font-size: 1.2rem;
}

.calendar-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 16px;
  background: rgba(241, 245, 249, 0.88);
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.calendar-nav-button:hover {
  transform: translateY(-1px);
  background: var(--white);
  border-color: rgba(30, 58, 138, 0.28);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.calendar-day {
  min-height: 56px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.calendar-day:hover:not(.is-disabled) {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.calendar-day:focus-visible {
  outline: 3px solid var(--blue-accent);
  outline-offset: 2px;
}

.calendar-day-empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  background: rgba(241, 245, 249, 0.66);
}

.calendar-day.is-selected {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 30px rgba(59, 130, 246, 0.22);
}

.calendar-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(241, 245, 249, 0.84);
  color: var(--text-muted);
}

.scheduler-note {
  margin: 24px 0 0;
  color: var(--text-muted);
}

.booking-selected-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(241, 245, 249, 0.72);
}

.booking-selected-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.booking-selected-card span {
  color: var(--text-dark);
  font-weight: 600;
}

.slot-list-shell {
  margin: 26px 0 22px;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.slot-button {
  min-height: 50px;
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.slot-button:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.slot-button:focus-visible {
  outline: 3px solid var(--blue-accent);
  outline-offset: 2px;
}

.slot-button.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 30px rgba(59, 130, 246, 0.22);
}

.slot-empty {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(241, 245, 249, 0.84);
  color: var(--text-muted);
}

.booking-status {
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-status:empty {
  display: none;
}

.booking-status.is-error {
  color: #b91c1c;
}

.booking-status.is-success {
  color: #166534;
}

.booking-success-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: rgba(240, 249, 255, 0.9);
}

.booking-success-card p {
  margin: 0;
  color: var(--text-dark);
}

.booking-followup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 138, 0.16);
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
}

.booking-followup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-followup-link-secondary {
  background: rgba(255, 255, 255, 0.84);
}

.booking-followup-link-danger {
  background: #ffffff;
  border-color: rgba(185, 28, 28, 0.18);
  color: #b91c1c;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: start;
}

.ai-copy {
  padding: 6px 0;
}

.ai-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.ai-pillars div {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.ai-pillars strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.ai-pillars span {
  color: var(--text-muted);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stack-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.ai-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(14, 165, 233, 0.08));
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.ai-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.ai-card p {
  margin: 0;
  color: var(--text-muted);
}

.about-visual {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.18), transparent 22%),
    linear-gradient(155deg, #DCEAFE 0%, var(--white) 48%, #C7DDFE 100%);
  box-shadow: var(--shadow-large);
  display: flex;
  align-items: stretch;
}

.about-visual-card {
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: 34px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-tag {
  color: var(--blue-dark);
}

.about-visual-card h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.about-visual-card p {
  margin: 0;
  color: var(--text-muted);
  max-width: 34ch;
  font-size: 1rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
  padding: 22px;
  border-radius: 24px;
}

.stat-band strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.stat-band span {
  color: var(--text-muted);
}

.founder-note {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.founder-note strong {
  font-family: "Sora", sans-serif;
}

.founder-note p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.results-grid,
.testimonials-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.experience-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.experience-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.experience-card h3 {
  margin: 14px 0 10px;
  font-family: "Sora", sans-serif;
}

.experience-card p {
  margin: 0;
  color: var(--text-muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.proof-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.proof-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proof-card h3 {
  margin: 14px 0 10px;
  font-family: "Sora", sans-serif;
}

.proof-card p {
  margin: 0;
  color: var(--text-muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-detail-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.service-detail-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.service-detail-top h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.service-detail-top p {
  margin: 0;
  color: var(--text-muted);
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.service-chip-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-detail-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-accent);
}

.service-note-line {
  margin: 0;
  color: var(--text-muted);
}

.service-note-line strong {
  color: var(--text-dark);
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 700;
}

.service-detail-link::after {
  content: "->";
  transition: transform 0.2s ease;
}

.service-detail-link:hover::after {
  transform: translateX(4px);
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(14, 165, 233, 0.1));
  box-shadow: var(--shadow-soft);
}

.services-note p {
  margin: 0;
  color: var(--text-muted);
}

.services-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.comparison-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.comparison-card:hover,
.audit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.comparison-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
}

.comparison-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-accent);
}

.service-card,
.feature-card,
.result-card,
.process-card,
.testimonial-card,
.engagement-card,
.faq-item,
.contact-card {
  border-radius: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card,
.result-card,
.testimonial-card,
.engagement-card {
  padding: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.service-card h3,
.feature-card h3,
.result-card h3,
.process-card h3,
.testimonial-card span,
.faq-question span:first-child {
  font-family: "Sora", sans-serif;
}

.service-card p,
.feature-card p,
.result-card p,
.process-card p,
.testimonial-card p,
.faq-answer p,
.site-footer p {
  color: var(--text-muted);
}

.service-card p {
  margin: 0 0 18px;
  flex-grow: 1;
}

.testimonial-card p {
  margin: 0 0 18px;
  flex-grow: 1;
}

.service-icon,
.process-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.14), rgba(14, 165, 233, 0.22));
  color: var(--blue-dark);
  font-weight: 800;
}

.service-card a,
.result-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 700;
}

.service-card a {
  margin-top: auto;
}

.service-card a::after,
.result-card a::after {
  content: "->";
  transition: transform 0.2s ease;
}

.service-card a:hover::after,
.result-card a:hover::after {
  transform: translateX(4px);
}

.service-card:hover,
.feature-card:hover,
.result-card:hover,
.process-card:hover,
.testimonial-card:hover,
.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
}

.why-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.why-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  box-shadow: var(--shadow-large);
  position: sticky;
  top: 108px;
}

.why-panel h2 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.why-panel p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.why-list li {
  position: relative;
  padding-left: 22px;
}

.why-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BFDBFE;
}

.why-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.why-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.process-card {
  padding: 28px;
}

.result-number {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  color: var(--blue-dark);
}

.results-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.results-intro strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
}

.results-intro p {
  margin: 0;
  color: var(--text-muted);
}

.results-mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.results-mini-chips span,
.case-study-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-study-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
}

.case-study-head .result-type {
  margin-bottom: 0;
  line-height: 1.25;
}

.case-study-head .result-number {
  margin-bottom: 0;
  flex-shrink: 0;
  text-align: right;
  line-height: 1;
}

.case-study-card h3 {
  margin: 0 0 14px;
  min-height: 2.7em;
}

.case-study-body {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
  flex-grow: 1;
}

.case-line {
  display: flex;
  flex-direction: column;
}

.case-line span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-line p {
  margin: 0;
  flex-grow: 1;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  min-height: 48px;
  align-content: flex-start;
}

.case-study-card a {
  margin-top: auto;
  padding-top: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.testimonial-card strong {
  display: block;
  margin-top: auto;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}

.engagement-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.engagement-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.engagement-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.84rem;
}

.engagement-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
  flex-grow: 1;
}

.engagement-card > span:not(.engagement-price) {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--blue-dark);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(0deg);
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.contact-section {
  padding-top: 0;
}

.contact-layout {
  grid-template-columns: 1fr 0.94fr;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 58%, var(--blue-accent) 100%);
  box-shadow: var(--shadow-large);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-card {
  padding: 30px;
}

.contact-card p {
  margin: 0 0 24px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-points div {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.contact-points strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  color: var(--white);
}

.contact-points span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
}

.contact-form-card .btn-outline-light {
  color: var(--blue-dark);
  border-color: rgba(30, 58, 138, 0.18);
  background: rgba(241, 245, 249, 0.84);
}

.contact-form-card .btn-outline-light:hover {
  background: var(--white);
  border-color: rgba(30, 58, 138, 0.32);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 700;
  color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 16px;
  background: rgba(241, 245, 249, 0.8);
  padding: 14px 16px;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(14, 165, 233, 0.48);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  background: var(--white);
  outline: none;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  font-size: 0.94rem;
}

.form-status {
  color: var(--blue-dark);
  font-weight: 700;
}

.form-status.is-success {
  color: #166534;
  background: rgba(22, 101, 52, 0.08);
  border-left: 3px solid #166534;
  padding: 10px 14px;
  border-radius: 10px;
}

.form-status.is-error {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.07);
  border-left: 3px solid #b91c1c;
  padding: 10px 14px;
  border-radius: 10px;
}

.form-status:empty {
  display: none;
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 120;
  display: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 10px;
  width: min(calc(100% - 1.5rem), 520px);
  padding: 10px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 22px;
  background: rgba(248, 251, 255, 0.94);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.mobile-sticky-link {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 16px;
  font-weight: 800;
}

.mobile-sticky-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.mobile-sticky-secondary {
  background: rgba(241, 245, 249, 0.92);
  color: var(--blue-dark);
  border: 1px solid rgba(30, 58, 138, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.audit-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(14, 165, 233, 0.08));
}

.audit-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
}

.audit-card > * {
  position: relative;
  z-index: 1;
}

.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.audit-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.audit-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
}

.audit-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-accent);
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: grid;
  gap: 16px;
  width: min(100% - 32px, 440px);
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(16px);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--text-muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 46px;
}

.footer-language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-language-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.rtl-layout {
  direction: rtl;
}

.rtl-layout .header-shell,
.rtl-layout .brand,
.rtl-layout .site-nav,
.rtl-layout .footer-brand {
  direction: rtl;
}

.rtl-layout .nav-panel,
.rtl-layout .trust-strip-inner,
.rtl-layout .footer-layout,
.rtl-layout .legal-footer-inner {
  text-align: right;
}

.rtl-layout .site-nav a::after {
  right: 0;
  left: auto;
  transform-origin: right;
}

.rtl-layout .hero-copy,
.rtl-layout .page-hero-copy,
.rtl-layout .page-summary-card,
.rtl-layout .portrait-card,
.rtl-layout .contact-copy,
.rtl-layout .about-copy,
.rtl-layout .booking-card,
.rtl-layout .comparison-card,
.rtl-layout .audit-card,
.rtl-layout .service-card,
.rtl-layout .proof-card,
.rtl-layout .audience-card,
.rtl-layout .experience-card,
.rtl-layout .engagement-card,
.rtl-layout .ai-copy,
.rtl-layout .ai-card,
.rtl-layout .scheduler-card,
.rtl-layout .booking-selected-card,
.rtl-layout .booking-success-card {
  text-align: right;
  align-items: flex-end;
}

.rtl-layout .hero-actions,
.rtl-layout .contact-actions,
.rtl-layout .audit-actions,
.rtl-layout .page-chip-row,
.rtl-layout .stack-strip,
.rtl-layout .chip-row,
.rtl-layout .footer-language-links {
  justify-content: flex-end;
}

.rtl-layout .comparison-list li,
.rtl-layout .audit-list li,
.rtl-layout .service-detail-list li,
.rtl-layout .why-list li {
  padding-right: 18px;
  padding-left: 0;
}

.rtl-layout .comparison-list li::before,
.rtl-layout .audit-list li::before,
.rtl-layout .service-detail-list li::before,
.rtl-layout .why-list li::before {
  right: 0;
  left: auto;
}

.contact-mail,
.footer-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 138, 0.18);
  background: rgba(241, 245, 249, 0.84);
  color: var(--blue-dark);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-mail {
  margin-top: 14px;
  min-width: clamp(190px, 24vw, 250px);
}

.footer-email-link {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border-color: rgba(59, 130, 246, 0.18);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  width: 100%;
}

.contact-mail:hover,
.footer-email-link:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 58, 138, 0.32);
  background: var(--white);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

body.modal-open {
  overflow: hidden;
}

.contact-email-modal[hidden] {
  display: none;
}

.contact-email-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-email-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

.contact-email-modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(90vh, 880px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.09), transparent 50%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-large);
}

.contact-email-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.9);
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}

.contact-email-modal__close:hover {
  background: var(--white);
  border-color: rgba(30, 58, 138, 0.26);
}

.contact-email-modal__intro {
  margin: 8px 0 22px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Actions — full-width stacked, matching booking form */
.contact-email-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 6px;
}

.contact-email-modal__actions .contact-submit-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 12px;
  justify-content: center;
}

.contact-email-modal__cancel-link {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s;
}

.contact-email-modal__cancel-link:hover {
  color: var(--blue);
}

.contact-email-form .form-status {
  margin-top: 14px;
}

/* RTL */
.rtl-layout .contact-email-modal__close {
  right: auto;
  left: 16px;
}

@media (max-width: 640px) {
  .contact-email-modal {
    padding: 16px;
  }

  .contact-email-modal__dialog {
    padding: 24px 20px;
  }
}

.site-footer {
  padding: 32px 0 56px;
}

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

.footer-portrait {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  padding: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(145deg, var(--blue-dark), var(--blue-accent));
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.footer-brand-copy {
  min-width: 0;
}

.footer-layout {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
  padding-bottom: 24px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.25);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s, text-decoration-color 0.18s;
}

.footer-links a:hover {
  color: var(--text-dark);
  text-decoration-color: rgba(59, 130, 246, 0.6);
}

.footer-contact-title {
  color: var(--blue-dark);
}

.footer-consultation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 138, 0.18);
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.footer-consultation-link:hover {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(30, 58, 138, 0.32);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-large);
}

.legal-shell h1,
.legal-shell h2 {
  font-family: "Sora", sans-serif;
}

.legal-shell h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-shell h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-muted);
}

.legal-shell ul {
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  margin: 0 0 20px;
  color: var(--text-muted);
}

.legal-footer {
  padding: 0 0 56px;
}

.legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-visual,
  .service-card,
  .feature-card,
  .result-card,
  .process-card,
  .testimonial-card {
    animation: fade-up 0.8s ease both;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 0.08s;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 0.16s;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 0.24s;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .page-hero-layout,
  .about-layout,
  .portrait-layout,
  .booking-layout,
  .scheduler-layout,
  .ai-layout,
  .why-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .ai-grid,
  .services-grid,
  .service-detail-grid,
  .results-grid,
  .testimonials-grid,
  .process-grid,
  .engagement-grid,
  .audience-grid,
  .experience-grid,
  .proof-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line-strong);
    background: rgba(248, 251, 255, 0.96);
    box-shadow: var(--shadow-large);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  body.nav-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .rtl-layout .site-nav {
    align-items: flex-end;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .page-summary-card,
  .page-summary-grid div {
    min-height: auto;
  }

  .page-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .audit-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-grid,
  .services-grid,
  .service-detail-grid,
  .results-grid,
  .testimonials-grid,
  .process-grid,
  .engagement-grid,
  .contact-method-grid,
  .timeline-grid,
  .pricing-preview-grid,
  .why-grid,
  .profile-metrics,
  .stat-band,
  .ai-pillars,
  .form-grid,
  .audience-grid,
  .experience-grid,
  .proof-grid,
  .comparison-grid,
  .portrait-highlights,
  .booking-selected-card,
  .slot-list {
    grid-template-columns: 1fr;
  }

  .services-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip-inner {
    text-align: center;
    justify-content: center;
  }

  .page-chip-row {
    justify-content: center;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .audit-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: auto;
    padding: 20px;
  }

  .page-summary-card {
    padding: 24px;
  }

  .scheduler-card {
    padding: 24px;
  }

  .scheduler-month-bar {
    gap: 12px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 8px;
  }

  .calendar-day {
    min-height: 48px;
    border-radius: 14px;
  }

  .profile-panel {
    position: static;
  }

  .brand-card-head {
    flex-direction: column;
    align-items: center;
  }

  .brand-card-copy {
    text-align: center;
  }

  .contact-layout {
    padding: 24px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .rtl-layout .footer-brand {
    align-items: flex-end;
  }

  .footer-layout {
    gap: 24px;
  }

  .legal-footer-inner {
    justify-content: center;
  }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.has-mobile-cta {
    padding-bottom: 92px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    width: auto;
  }
}

/* ============================================================
   UI/UX ENHANCEMENTS
   ============================================================ */

/* 1. Font antialiasing — sharper text across all browsers */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 2. btn-primary — animated gradient shift on hover */
.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-accent) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition:
    background-position 0.45s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 24px 36px rgba(59, 130, 246, 0.3);
}

/* 3. Result numbers — gradient text */
.result-number {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.6rem;
}

/* 4. Engagement cards — highlight featured (middle) tier */
.engagement-grid {
  position: relative;
}

.engagement-grid .engagement-card:nth-child(2) {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 28px 56px rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
  overflow: visible;
}

.engagement-grid .engagement-card:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--blue-accent));
  z-index: -1;
  opacity: 0.22;
}

.engagement-grid .engagement-card:nth-child(2) .engagement-price {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-size: 0.88rem;
}

/* 5. Service icon / process number — subtle glow border */
.service-icon,
.process-number {
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* 6. Chip-row hover effect */
.chip-row span {
  cursor: default;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.chip-row span:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 58, 138, 0.18);
}

/* 7. Footer — gradient top + border */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.03) 100%);
}

/* 8. FAQ — increase max-height so long answers don't clip */
.faq-item.active .faq-answer {
  max-height: 480px;
}

/* 9. Form placeholder color */
.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

/* 10. Scroll-triggered card fade-in
       Cards start hidden; JS adds .is-visible via IntersectionObserver */
@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .result-card,
  .engagement-card,
  .feature-card,
  .audience-card,
  .experience-card,
  .proof-card,
  .ai-card,
  .comparison-card,
  .contact-method-card,
  .timeline-card,
  .pricing-preview-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .service-card.is-visible,
  .result-card.is-visible,
  .engagement-card.is-visible,
  .feature-card.is-visible,
  .audience-card.is-visible,
  .experience-card.is-visible,
  .proof-card.is-visible,
  .ai-card.is-visible,
  .comparison-card.is-visible,
  .contact-method-card.is-visible,
  .timeline-card.is-visible,
  .pricing-preview-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger siblings */
@media (prefers-reduced-motion: no-preference) {
  .service-card:nth-child(2), .result-card:nth-child(2), .engagement-card:nth-child(2),
  .feature-card:nth-child(2), .audience-card:nth-child(2), .ai-card:nth-child(2),
  .proof-card:nth-child(2), .experience-card:nth-child(2), .comparison-card:nth-child(2) {
    transition-delay: 0.08s;
  }
  .service-card:nth-child(3), .result-card:nth-child(3), .engagement-card:nth-child(3),
  .feature-card:nth-child(3), .audience-card:nth-child(3), .ai-card:nth-child(3),
  .proof-card:nth-child(3), .experience-card:nth-child(3) {
    transition-delay: 0.16s;
  }
  .service-card:nth-child(4), .feature-card:nth-child(4), .audience-card:nth-child(4),
  .ai-card:nth-child(4), .proof-card:nth-child(4), .experience-card:nth-child(4) {
    transition-delay: 0.24s;
  }
}

/* 11. Section-tag hover lift */
.section-tag {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.16);
}

/* 12. Brand copy + footer h2 — gradient text */
.brand-copy small {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-copy h2 {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 13. metric-value — increase font size for key proof numbers */
.metric-value {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

/* Ensure page-summary-grid strong (dark bg cards) stays white */
.page-summary-grid strong,
.profile-summary-item strong {
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

/* ============================================================
   CONTACT FORM REDESIGN — modern, polished
   ============================================================ */

/* Form card — elevated, clean, premium */
.contact-form-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.1),
    0 24px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  padding: 36px;
}

/* Top gradient accent stripe */
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-accent) 100%);
}

/* Remove card hover lift — it's a form, not a nav card */
.contact-form-card:hover {
  transform: none;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.1),
    0 24px 48px rgba(15, 23, 42, 0.06);
}

/* "Takes under 2 minutes" badge */
.form-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(59, 130, 246, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* Form card headings */
.contact-form-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 0 0 8px;
  color: var(--text-dark);
}

.contact-form-card > p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Labels — small, uppercase, tracked, blue */
.contact-form-card .form-field span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue);
}

/* Inputs — refined and clean */
.contact-form-card .form-field input,
.contact-form-card .form-field select,
.contact-form-card .form-field textarea {
  background: #f7f9ff;
  border: 1.5px solid rgba(30, 58, 138, 0.14);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-card .form-field input:hover,
.contact-form-card .form-field select:hover,
.contact-form-card .form-field textarea:hover {
  border-color: rgba(30, 58, 138, 0.28);
}

.contact-form-card .form-field input:focus,
.contact-form-card .form-field select:focus,
.contact-form-card .form-field textarea:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.13);
  outline: none;
}

/* Custom select — chevron via SVG data URI */
.contact-form-card .form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E3A8A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 15px;
  padding-right: 38px;
  cursor: pointer;
  background-color: #f7f9ff;
}

.contact-form-card .form-field select:hover {
  background-color: #f7f9ff;
}

.contact-form-card .form-field select:focus {
  background-color: #ffffff;
}

/* Textarea — taller, comfortable */
.contact-form-card .form-field textarea {
  min-height: 160px;
  line-height: 1.65;
  resize: vertical;
}

/* Actions wrapper — stacked column */
.contact-form-card .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

/* Submit — full width, primary gradient */
.contact-form-card .contact-submit-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 12px;
  justify-content: center;
}

/* "or" divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(30, 58, 138, 0.1);
}

/* WhatsApp button — green, with icon */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1.5px solid rgba(22, 163, 74, 0.24);
  color: #15803d;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-whatsapp:hover {
  background: #dcfce7;
  border-color: rgba(22, 163, 74, 0.4);
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.14);
  transform: translateY(-1px);
  color: #15803d;
  text-decoration: none;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* Status messages — styled alert pills */
.contact-form-card .form-status {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form-card .form-status.is-success {
  background: #f0fdf4;
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: #15803d;
}

.contact-form-card .form-status.is-error {
  background: #fef2f2;
  border: 1px solid rgba(185, 28, 28, 0.18);
  color: #b91c1c;
}

/* RTL support for form redesign */
.rtl-layout .contact-form-card .form-field select {
  background-position: left 13px center;
  padding-right: 15px;
  padding-left: 38px;
}

/* Mobile: full-width actions already column, ensure proper padding */
@media (max-width: 600px) {
  .contact-form-card {
    padding: 28px 20px;
  }
}

/* ============================================================
   CONTACT FORM MODAL
   ============================================================ */

/* Overlay — covers entire viewport */
.contact-form-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.contact-form-modal[hidden] {
  display: none;
}

/* Backdrop — dark, blurred */
.contact-form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 38, 0.74);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.contact-form-modal.is-open .contact-form-modal__backdrop {
  opacity: 1;
}

/* Panel — the white form container */
.contact-form-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  /* Smooth scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 58, 138, 0.18) transparent;
}

.contact-form-modal__panel::-webkit-scrollbar {
  width: 5px;
}

.contact-form-modal__panel::-webkit-scrollbar-track {
  background: transparent;
}

.contact-form-modal__panel::-webkit-scrollbar-thumb {
  background: rgba(30, 58, 138, 0.18);
  border-radius: 10px;
}

.contact-form-modal.is-open .contact-form-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Card inside panel inherits redesign styles */
.contact-form-modal__panel .contact-form-card {
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(8, 16, 38, 0.28);
}

/* Close button — top-right of panel */
.contact-form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  flex-shrink: 0;
}

.contact-form-modal__close:hover {
  background: #ffffff;
  color: var(--text-dark);
  border-color: rgba(30, 58, 138, 0.28);
  transform: scale(1.08);
}

/* ============================================================
   CONTACT TRIGGER CARD (replaces inline form)
   ============================================================ */

.contact-trigger-card {
  position: relative;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.contact-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(14, 165, 233, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.22);
  color: var(--blue);
  margin-bottom: 2px;
}

.contact-trigger-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-dark);
}

.contact-trigger-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 270px;
}

.contact-trigger-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-trigger-list li {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-trigger-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.open-contact-modal-btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .contact-form-modal__panel {
    max-height: 96vh;
    border-radius: 16px;
  }

  .contact-trigger-card {
    padding: 32px 24px;
  }
}

/* ============================================================
   FOOTER — third button (Services / AI-powered strategy)
   Targets plain <a> links inside the contact footer column only,
   matching the design of .footer-email-link / .footer-consultation-link
   ============================================================ */

div:has(.footer-contact-title) .footer-links a:not(.footer-email-link):not(.footer-consultation-link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(30, 58, 138, 0.18);
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  text-decoration: none;
}

div:has(.footer-contact-title) .footer-links a:not(.footer-email-link):not(.footer-consultation-link):hover {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(30, 58, 138, 0.32);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 280;
  width: min(calc(100% - 32px), 740px);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.11);
  border-radius: 18px;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 16px 40px rgba(15, 23, 42, 0.1);
  animation: cookieBannerSlideUp 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cookieBannerSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-banner__copy {
  flex: 1;
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.cookie-banner__copy p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__button {
  padding: 10px 18px;
  font-size: 0.84rem;
  border-radius: 10px;
  white-space: nowrap;
  min-height: unset;
}

/* RTL support */
.rtl-layout .cookie-banner {
  direction: rtl;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    bottom: 10px;
    border-radius: 16px;
  }

  .cookie-banner__actions {
    flex-direction: row;
  }

  .cookie-banner__button {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   Full Project A–Z Section
   ═══════════════════════════════════════════════════ */

.fullproject-section {
  position: relative;
  overflow: hidden;
}

.fullproject-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Pipeline strip */
.fullproject-pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 44px 0 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-large);
  overflow: hidden;
}

.fullproject-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  transition: background 0.22s;
}

.fullproject-step:last-child {
  border-right: none;
}

.fullproject-step:hover {
  background: rgba(241, 245, 249, 0.7);
}

.fullproject-step-num {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue-dark);
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.fullproject-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  flex-shrink: 0;
}

.fullproject-step h3 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.fullproject-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.fullproject-step-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Last step — highlighted */
.fullproject-step--launch {
  background: linear-gradient(160deg, rgba(30, 58, 138, 0.04) 0%, rgba(14, 165, 233, 0.06) 100%);
}

.fullproject-step--launch .fullproject-step-icon {
  background: linear-gradient(135deg, #0c285e, var(--blue-dark));
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.28);
}

/* 4-card grid */
.fullproject-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 1360px) {
  .fullproject-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fullproject-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.fullproject-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-accent));
  opacity: 0;
  transition: opacity 0.22s;
}

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

.fullproject-card:hover::before {
  opacity: 1;
}

.fullproject-card--alt {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
    var(--white);
  border-color: rgba(59, 130, 246, 0.16);
}

.fullproject-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fullproject-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullproject-card-header h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.fullproject-card > p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.fullproject-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  flex: 1;
}

.fullproject-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.fullproject-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.fullproject-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.18s, color 0.18s;
}

.fullproject-card-link:hover {
  color: var(--blue-dark);
  gap: 8px;
  text-decoration: none;
}

/* CTA bar */
.fullproject-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1d4ed8 55%, var(--blue-accent) 100%);
  box-shadow: 0 20px 48px rgba(30, 58, 138, 0.3);
}

.fullproject-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fullproject-cta-copy strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
}

.fullproject-cta-copy span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.fullproject-cta .btn {
  flex-shrink: 0;
  background: var(--white);
  color: var(--blue-dark);
  border-color: transparent;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.fullproject-cta .btn:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .fullproject-pipeline {
    flex-direction: column;
    border-radius: 24px;
  }

  .fullproject-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 20px 22px;
  }

  .fullproject-step:last-child {
    border-bottom: none;
  }

  .fullproject-step-num {
    font-size: 1.1rem;
    min-width: 36px;
  }

  .fullproject-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 18px;
  }

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

@media (max-width: 640px) {
  .fullproject-grid {
    grid-template-columns: 1fr;
  }

  .fullproject-pipeline {
    margin: 32px 0 36px;
  }
}

/* RTL support */
.rtl-layout .fullproject-step {
  border-right: none;
  border-left: 1px solid var(--line);
}

.rtl-layout .fullproject-step:last-child {
  border-left: none;
}
