/* ===== BASE & RESET ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background: var(--background);
}

/* GPU Acceleration */
.export-wrapper,
.screen-shell,
.dark-panel,
.trust-strip-shell,
.form-shell-premium,
.analysis-card,
.case-card,
.nav-shell {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Optimize paint areas */
.screen-shell,
.dark-panel,
.trust-strip-shell,
.form-shell-premium {
  contain: layout style paint;
}

.export-wrapper {
  margin: 0;
  width: 100%;
  min-height: 812px;
  position: relative;
  font-family: var(--font-family-body);
  background-color: var(--background);
  background-attachment: fixed;
}

.screen-shell {
  min-height: 812px;
  background: var(--background);
  position: relative;
}

/* Static gradient overlay */
.screen-shell::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 12% 8%, rgba(158, 220, 255, 0.26) 0%, transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(23, 184, 176, 0.22) 0%, transparent 32%);
  z-index: 0;
}

.screen-shell > * {
  position: relative;
  z-index: 1;
}

/* ===== CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  /*padding: 0 32px;*/
}

/* ===== TYPOGRAPHY & LABELS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  background: rgba(158, 220, 255, 0.36);
  color: var(--accent-foreground);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(241, 244, 246, 0.7);
  color: var(--secondary-foreground);
  margin-bottom: 16px;
}

.label-info {
  background: rgba(158, 220, 255, 0.36);
  color: var(--accent-foreground);
}

.label-problem {
  background: rgba(255, 233, 231, 0.7);
  color: var(--destructive-foreground);
}

.label-solution {
  background: rgba(23, 184, 176, 0.16);
  color: #17b8b0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 16px 34px rgba(23, 184, 176, 0.28);
}

.btn-secondary {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-subtle {
  background: rgba(241, 244, 246, 0.78);
  color: var(--secondary-foreground);
  border: 1px solid rgba(232, 234, 237, 0.82);
}

.icon-wrap {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

/* ===== NAVIGATION ===== */
.topbar {
  padding: 24px 0 12px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--foreground);
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(23, 184, 176, 0.92) 0%, rgba(158, 220, 255, 0.36) 100%);
  box-shadow: 0 10px 24px rgba(23, 184, 176, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 12px;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 82px 0 56px;
  text-align: center;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ===== MAIN PAGE CARDS ===== */
.cards-section {
  padding: 18px 0 56px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.case-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.1);
}

.case-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.case-shot {
  min-height: 228px;
  border-radius: 16px;
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #18202e 0%, #121a27 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-shot.after {
  background: linear-gradient(180deg, #192434 0%, #101826 100%);
  border: 1px solid rgba(23, 184, 176, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 0 6px rgba(23, 184, 176, 0.08);
}

.shot-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.before-label {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd9af;
}

.after-label {
  background: rgba(23, 184, 176, 0.16);
  color: #b8fff5;
}

.screen-mock {
  flex: 1;
  margin-top: 16px;
  border-radius: 12px;
  background: #0f1723;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.case-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 750;
}

.case-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.65;
}

.result-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(230, 248, 242, 0.34);
  color: var(--success-foreground);
  font-size: 14px;
  font-weight: 700;
  margin: 18px 0;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 234, 237, 0.84);
  flex-wrap: wrap;
}

.mini-meta {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ===== DETAILS PAGE SECTIONS ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 32px 0 48px;
}

.overview-card,
.summary-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.05);
}

.overview-card h3,
.summary-card h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 750;
}

.overview-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 234, 237, 0.84);
  font-size: 14px;
}

.meta-row span {
  color: var(--muted-foreground);
  font-weight: 500;
}

.meta-row strong {
  color: var(--foreground);
  text-align: right;
  max-width: 60%;
  font-weight: 700;
}

.summary-card p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 15px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 48px 0;
}

.analysis-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 38px rgba(16, 24, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.analysis-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.08);
}

.analysis-visual {
  background: linear-gradient(180deg, #18202e 0%, #121a27 100%);
  padding: 22px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.analysis-visual.after {
  background: linear-gradient(180deg, #192434 0%, #101826 100%);
  border-bottom: 1px solid rgba(23, 184, 176, 0.32);
}

.analysis-body {
  padding: 24px;
}

.analysis-body h3 {
  margin: 12px 0 20px;
  font-size: 22px;
  font-weight: 750;
}

.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.analysis-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.analysis-item strong {
  color: var(--foreground);
}

/* ===== DARK PANELS & IMPACT CARDS ===== */
.dark-panel {
  background: linear-gradient(180deg, #121b29 0%, #0f1723 100%);
  color: white;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(16, 24, 40, 0.14);
  position: relative;
  overflow: hidden;
}

.dark-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  background: radial-gradient(circle, rgba(23, 184, 176, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.impact-card-premium {
  padding: 48px 44px;
  margin: 48px 0;
}

.impact-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.impact-head h3 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 16px;
  font-weight: 800;
}

.impact-head p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.premium-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.premium-impact-metric {
  text-align: center;
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: rgba(23, 184, 176, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8fff5;
}

.premium-impact-metric strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
}

.premium-impact-metric span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.premium-impact-metric small {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.impact-summary-copy {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-summary-copy strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.impact-summary-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* ===== TRUST STRIP (COMMON) ===== */
.trust-strip-premium {
  padding: 26px 0 30px;
}

.trust-strip-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 244, 246, 0.78) 100%);
  border: 1px solid rgba(232, 234, 237, 0.82);
  box-shadow: 0 22px 50px rgba(16, 24, 40, 0.07);
  position: relative;
  overflow: hidden;
}

.trust-strip-shell::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(158, 220, 255, 0.36) 0%, transparent 68%);
  pointer-events: none;
}

.trust-strip-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.trust-strip-intro h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.trust-strip-intro p {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.trust-grid-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  min-height: 100%;
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 100%);
  border: 1px solid rgba(232, 234, 237, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.trust-card-featured {
  background: linear-gradient(180deg, #121b29 0%, #0f1723 100%);
  border-color: rgba(23, 184, 176, 0.24);
  box-shadow: 0 22px 44px rgba(16, 24, 40, 0.14);
}

.trust-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 244, 246, 0.7);
  color: var(--primary);
}

.trust-card-featured .trust-icon-wrap {
  background: rgba(23, 184, 176, 0.14);
  color: #b8fff5;
}

.trust-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.trust-card-featured .trust-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.trust-card strong {
  display: block;
  margin: 0;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 800;
  color: var(--foreground);
}

.trust-card-featured strong {
  color: white;
}

.trust-card span {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-foreground);
  font-weight: 600;
}

.trust-card-featured span {
  color: rgba(255, 255, 255, 0.72);
}

/* ===== CTA SECTIONS ===== */
.mid-cta-section,
.critical-cta {
  padding: 34px 0 22px;
}

.mid-cta-box,
.critical-cta-box {
  padding: 68px 40px;
  text-align: center;
}

.mid-cta-box h2,
.critical-cta-box h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: white;
}

.mid-cta-box p,
.critical-cta-box p {
  position: relative;
  z-index: 1;
  margin: 0 auto 28px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FORM SECTION (COMMON) ===== */
.form-section-bottom {
  padding: 22px 0 38px;
}

.form-shell-premium {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 244, 246, 0.84) 52%, rgba(158, 220, 255, 0.12) 100%);
  box-shadow: 0 26px 60px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  border: 1px solid var(--border);
}

.form-shell-premium::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(158, 220, 255, 0.42) 0%, transparent 68%);
  pointer-events: none;
}

.form-copy-premium {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.form-copy-premium h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 560px;
}

.form-copy-premium p {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.form-highlight-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 100%);
  border: 1px solid rgba(232, 234, 237, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.form-highlight-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 184, 176, 0.12);
  color: var(--primary);
  flex: 0 0 48px;
  box-shadow: 0 12px 28px rgba(23, 184, 176, 0.14);
}

.form-highlight-copy strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 6px;
}

.form-highlight-copy span {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.form-trust-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-chip-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 234, 237, 0.78);
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-foreground);
  white-space: nowrap;
}

.contact-card-premium {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #111a28 0%, #0c1521 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 56px rgba(16, 24, 40, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 184, 176, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.contact-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 8px;
  white-space: nowrap;
}

.contact-card-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  color: white;
}

.contact-card-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 184, 176, 0.12);
  border: 1px solid rgba(23, 184, 176, 0.22);
  font-size: 12px;
  font-weight: 700;
  color: #b8fff5;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.input-sim {
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
}

.textarea-sim {
  min-height: 124px;
  align-items: flex-start;
  line-height: 1.6;
}

.form-actions-premium {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.contact-secondary-cta {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-note-premium {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

/* ===== FOOTER (COMMON) ===== */
.case-footer {
  padding: 10px 0 88px;
}

.case-footer-card {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.05);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-positioning {
  margin: 0 0 12px;
  max-width: 320px;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.65;
}

.footer-focus-line {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(241, 244, 246, 0.82);
  color: var(--secondary-foreground);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-links-block,
.footer-services-block,
.footer-action-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-block h4,
.footer-services-block h4,
.footer-action-block h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.footer-links-block a,
.footer-services-block div,
.footer-email {
  text-decoration: none;
  color: var(--foreground);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-links-block a:hover,
.footer-email:hover {
  color: var(--primary);
}

.footer-email {
  color: var(--muted-foreground);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 0;
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 600;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== RESPONSIVE DESIGN (COMMON) ===== */
@media (max-width: 1100px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 64px 0 44px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .cards-grid,
  .overview-grid,
  .before-after-grid,
  .trust-strip-shell,
  .form-shell-premium,
  .case-footer-card,
  .premium-impact-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    padding: 16px 0 10px;
  }
  .nav-shell {
    border-radius: 24px;
    padding: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .brand {
    width: 100%;
    justify-content: center;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }
  .hero p,
  .trust-strip-intro p,
  .mid-cta-box p,
  .critical-cta-box p,
  .form-copy-premium p,
  .impact-head p {
    font-size: 16px;
    line-height: 1.65;
  }
  .trust-strip-intro h2,
  .mid-cta-box h2,
  .critical-cta-box h2,
  .form-copy-premium h2,
  .impact-head h3 {
    font-size: 36px;
  }
  .form-shell-premium,
  .mid-cta-box,
  .critical-cta-box,
  .case-footer-card,
  .impact-card-premium {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-card-head,
  .card-bottom,
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .premium-impact-grid {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 48px 0 34px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .btn {
    width: 100%;
  }
  .mid-cta-box,
  .critical-cta-box {
    padding: 44px 18px;
  }
  .mid-cta-box .cta-actions,
  .critical-cta-box .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .case-card,
  .overview-card,
  .summary-card,
  .analysis-card,
  .trust-strip-shell,
  .form-shell-premium,
  .contact-card-premium,
  .case-footer-card,
  .impact-card-premium {
    padding: 18px;
  }
  .contact-card-pill {
    align-self: flex-start;
  }
  .brand-text,
  .brand-tagline,
  .brand-name {
    min-width: 0;
  }
  .premium-impact-metric strong {
    font-size: 28px;
  }
}

/* ===== CSS VARIABLES ===== */
:root {
  --background: #f7f8f8;
  --foreground: #101828;
  --border: #e8eaed;
  --input: #ffffff;
  --primary: #17b8b0;
  --primary-foreground: #ffffff;
  --secondary: #f1f4f6;
  --secondary-foreground: #24323d;
  --muted: #eef2f4;
  --muted-foreground: #667085;
  --success: #e6f8f2;
  --success-foreground: #0f8a5f;
  --accent: #9edcff;
  --accent-foreground: #0b3551;
  --destructive: #ffe9e7;
  --destructive-foreground: #8a1c12;
  --warning: #fff3e2;
  --warning-foreground: #8a5a12;
  --card: #ffffff;
  --card-foreground: #0f1723;
  --sidebar: #f4f7f8;
  --sidebar-foreground: #20303a;
  --sidebar-primary: #17b8b0;
  --sidebar-primary-foreground: #ffffff;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font-family-body: Inter;
}