/* /opt/thermalyze-landing/experience/css/style.css */

:root {
  --green: #00b050;
  --green-dark: #00863d;
  --green-soft: #e8f8ef;

  --orange: #f59e0b;
  --orange-dark: #d97706;
  --orange-soft: #fff3df;

  --blue: #123a63;
  --blue-dark: #0d2b4b;
  --blue-soft: #eaf4ff;

  --bg: #f6f8fb;
  --white: #ffffff;
  --card: #ffffff;

  --black: #123a63;
  --text: #123a63;
  --muted: #5c6b7a;
  --light: #f3f6f9;
  --border: #e6ecf2;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;

  --shadow-sm: 0 10px 30px rgba(18, 58, 99, 0.06);
  --shadow-md: 0 20px 60px rgba(18, 58, 99, 0.10);
  --shadow-lg: 0 30px 90px rgba(18, 58, 99, 0.16);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 86px;
}

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

img,
video {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 251, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 236, 242, 0.9);
}

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

.nav img {
  display: block;
  max-height: 44px;
  width: auto;
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.login-link:hover {
  color: var(--blue);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #00c35a);
  color: white;
  box-shadow: 0 18px 35px rgba(0, 176, 80, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #009c46, var(--green));
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 176, 80, 0.34);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--shadow-md);
}


/* SUBSCRIPTION */

.btn-subscribe {
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  color: white;
  box-shadow: 0 18px 35px rgba(245, 158, 11, 0.28);
}

.btn-subscribe:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(245, 158, 11, 0.34);
}

.subscription-section {
  padding-top: 34px;
}

.subscription-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 176, 80, 0.10), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(245, 158, 11, 0.12), transparent 32%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.subscription-copy > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subscription-copy h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.subscription-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.subscription-copy p strong {
  color: var(--blue);
}

.subscription-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.subscription-points span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.subscription-points span::before {
  content: "✓";
  margin-right: 7px;
  font-weight: 900;
}

.subscription-actions {
  padding: 26px;
  background: #fbfcfd;
  border: 1px solid var(--border);
  border-radius: 26px;
  text-align: center;
}

.subscription-price {
  margin-bottom: 18px;
  color: var(--orange-dark);
}

.subscription-price strong {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.5px;
}

.subscription-price span {
  font-weight: 900;
  color: var(--blue);
}

.btn-subscribe-large {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

.subscription-trial-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.subscription-trial-link:hover {
  color: var(--orange-dark);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 176, 80, 0.18), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -220px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-soft), var(--orange-soft));
  color: var(--green-dark);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.14);
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -2.8px;
  margin: 0 0 26px;
  color: var(--blue);
}

.hero-lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof span::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
  margin-right: 7px;
}

.hero-media {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 42px -14px 42px;
  height: 28px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.22);
  filter: blur(20px);
  z-index: -1;
}

.hero-app,
.hero-media img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.hero-media video {
  display: block;
  width: 100%;
  border-radius: 24px;
  background: #d1d5db;
}

/* TRUST BAR */

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
}

.trust-grid div {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.trust-grid div::before {
  content: "✓";
  color: var(--orange);
  margin-right: 8px;
}

/* GLOBAL SECTIONS */

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--white);
}

.section-dark {
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 158, 11, 0.20), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), #071827);
  color: var(--white);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading > span,
.demo-copy > span,
.report-copy > span,
.cta-box > span {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-dark .section-heading > span,
.section-dark .report-copy > span {
  color: #fcd34d;
}

.section-heading h2,
.demo-copy h2,
.report-copy h2,
.cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -1.4px;
  color: var(--blue);
}

.section-dark .report-copy h2 {
  color: white;
}

.section-heading p,
.demo-copy p,
.report-copy p,
.cta-box p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.section-dark .report-copy p {
  color: #dbe7f3;
}

/* BENEFITS */

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

.benefit-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 250px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

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

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: var(--blue);
}

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

/* MODULES */

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

.module-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(18, 58, 99, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(18, 58, 99, 0.14);
}

.module-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #d1d5db;
}

.module-card div {
  padding: 26px;
}

.module-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.module-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.module-card span {
  color: var(--green);
  font-weight: 900;
}

.module-card:hover span {
  color: var(--orange-dark);
}

/* DEMO */

.demo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.demo-copy {
  max-width: 520px;
}

.demo-copy .btn {
  margin-top: 26px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.step strong {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--orange));
  color: white;
  border-radius: 50%;
  font-size: 16px;
}

.step span {
  font-weight: 900;
  color: var(--blue);
}

/* REPORT */

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

.report-preview {
  display: block;
  perspective: 1000px;
}

.report-cover {
  min-height: 430px;
  border-radius: var(--radius-lg);
  padding: 38px;
  background:
    radial-gradient(circle at 24% 18%, rgba(245, 158, 11, 0.30), transparent 28%),
    linear-gradient(145deg, var(--green) 0%, var(--green-dark) 38%, var(--blue-dark) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateY(-8deg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease;
}

.report-preview:hover .report-cover {
  transform: rotateY(0deg) translateY(-4px);
}

.report-cover span {
  color: #fde68a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.report-cover strong {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.report-cover em {
  font-style: normal;
  font-weight: 900;
  color: #fef3c7;
}

.report-copy .btn {
  margin-top: 26px;
}

/* ROI */

.roi-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.roi-box label {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 20px;
}

.roi-box input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  margin-bottom: 32px;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.roi-results > div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(18, 58, 99, 0.08);
}

.roi-results > div::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
}

.roi-results > div::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0.75;
}

.roi-results strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.roi-results span {
  display: block;
  font-size: 15px;
  color: var(--muted);
  font-weight: 800;
}

.roi-highlight {
  margin-top: 28px;
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.24), transparent 32%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  text-align: center;
  box-shadow: 0 18px 45px rgba(18, 58, 99, 0.16);
}

.roi-highlight h3 {
  margin: 0 0 10px;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.8px;
}

.roi-highlight h3 span,
.roi-highlight p strong {
  color: #fcd34d;
}

.roi-highlight p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: #dbe7f3;
  font-size: 18px;
}

.roi-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.roi-summary div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 20px;
  padding: 18px 14px;
}

.roi-summary span {
  display: block;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.roi-summary strong {
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.micro {
  font-size: 13px;
  color: var(--muted);
}

.center {
  text-align: center;
}

/* COMPARISON */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison > div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.comparison > div:first-child::before,
.comparison > div:last-child::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
}

.comparison > div:first-child::before {
  background: var(--orange);
}

.comparison > div:last-child::before {
  background: var(--green);
}

.comparison h3 {
  margin: 0 0 18px;
  font-size: 26px;
  color: var(--blue);
}

.comparison ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}

.comparison li:last-child {
  border-bottom: 0;
}

.comparison li::before {
  content: "•";
  color: var(--orange);
  margin-right: 10px;
  font-weight: 900;
}

.comparison > div:last-child li::before {
  color: var(--green);
}

/* TESTIMONIALS */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 17px;
}

.testimonial strong {
  color: var(--orange-dark);
}

/* FAQ */

.faq-layout {
  max-width: 980px;
}

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

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 8px 22px rgba(18, 58, 99, 0.04);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--blue);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 900;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

/* CTA FORM */

.cta-box {
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.28), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(0, 176, 80, 0.22), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  color: white;
  border-radius: 42px;
  padding: 62px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  color: white;
}

.cta-box p {
  color: #dbe7f3;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.lead-form {
  margin: 34px auto 0;
  max-width: 680px;
  background: var(--white);
  color: var(--text);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 13px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 158, 11, 0.68);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.lead-form .btn {
  width: 100%;
}

/* STICKY CTA */

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  transform: translateX(-50%) translateY(130px);
  width: min(760px, calc(100% - 28px));
  background: rgba(13, 43, 75, 0.96);
  color: white;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 60px rgba(13, 43, 75, 0.28);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta span {
  font-weight: 900;
  font-size: 14px;
}

.sticky-cta span::before {
  content: "●";
  color: var(--orange);
  margin-right: 8px;
}

.sticky-cta .btn {
  padding: 12px 18px;
  min-height: 40px;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* FOOTER */

.footer {
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 158, 11, 0.14), transparent 30%),
    var(--blue-dark);
  color: white;
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 30px;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
}

.footer p,
.footer a {
  color: #cbd5e1;
  font-size: 14px;
}

.footer p {
  margin: 0;
  max-width: 280px;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fcd34d;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 158, 11, 0.16);
  margin-top: 34px;
  padding-top: 20px;
  color: #cbd5e1;
  font-size: 14px;
  text-align: center;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ACCESSIBILITY */

:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.35);
  outline-offset: 3px;
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

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

  .module-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .module-card img {
    height: 240px;
  }

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

@media (max-width: 920px) {
  .hero-grid,
  .demo-layout,
  .report-grid,
  .comparison,
  .footer-grid,
  .subscription-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-media {
    order: -1;
  }

  .report-cover {
    transform: none;
  }

  .demo-copy {
    max-width: none;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 104px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    height: 68px;
  }

  .nav img {
    max-height: 38px;
  }

  .nav-actions .login-link {
    display: none;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-actions .btn {
    width: auto;
    padding: 11px 12px;
    font-size: 12px;
  }

  .subscription-card {
    padding: 24px 18px;
  }

  .subscription-actions {
    padding: 20px 16px;
  }

  .hero h1 {
    letter-spacing: -1.6px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
  }

  .trust-grid,
  .benefit-grid,
  .roi-results,
  .roi-summary {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .demo-copy h2,
  .report-copy h2,
  .cta-box h2 {
    letter-spacing: -0.9px;
  }

  .module-card img {
    height: 180px;
  }

  .report-cover {
    min-height: 330px;
    padding: 28px;
  }

  .roi-box {
    padding: 24px;
  }

  .roi-results strong {
    font-size: 38px;
  }

  .roi-highlight {
    padding: 24px 18px;
  }

  .cta-box {
    padding: 44px 18px;
    border-radius: 30px;
  }

  .lead-form {
    padding: 18px;
  }

  .sticky-cta {
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    text-align: center;
  }

  .sticky-actions {
    width: 100%;
    flex-direction: column;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
