:root {
  --black: #000000;
  --night: #07030f;
  --night-soft: #10051f;
  --purple: #16054e;
  --purple-bright: #38129a;
  --purple-ink: #241055;
  --white: #ffffff;
  --paper: #f8f7fb;
  --muted: #6f6780;
  --muted-on-dark: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(22, 5, 78, 0.14);
  --alert: #ff315f;
  --gold: #ffd43b;
  --green: #25d366;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --soft-shadow: 0 18px 48px rgba(22, 5, 78, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--night);
  background-size: 48px 48px;
  font-family: "Ruda", Arial, sans-serif;
}

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

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

p,
li {
  font-size: 1.06rem;
  line-height: 1.68;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 4px solid var(--purple-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand,
.brand-surface {
  display: inline-flex;
  align-items: center;
}

.brand-surface {
  width: min(330px, 50%);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  background: var(--white);
}

.brand img,
.brand-surface img {
  width: 100%;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-secondary,
.hero-cta {
  color: var(--white);
  background: var(--green);
  border-color: rgba(37, 211, 102, 0.42);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--white);
  background: #1fbd5b;
  border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: var(--radius);
  background: currentColor;
}

.eyebrow-dark {
  color: var(--purple-bright);
}

.section > .container > .section-heading .eyebrow-dark {
  color: var(--gold);
}

.hero-section {
  position: relative;
  padding: 5rem 0 4.4rem;
  background:
    linear-gradient(115deg, rgba(7, 3, 15, 0.98) 0%, rgba(22, 5, 78, 0.94) 48%, rgba(56, 18, 154, 0.82) 100%),
    url("assets/marketing-dashboard.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.42;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: var(--gold);
}

.hero-orb {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 880px);
  gap: 1.8rem;
  align-items: center;
}

.hero-copy h1 {
  max-width: 100%;
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.hero-title-intro,
.hero-title-focus {
  display: block;
}

.hero-title-intro {
  margin-bottom: 0.45rem;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
}

.hero-title-focus {
  font-size: 4.55rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-title-focus span {
  display: block;
}

.hero-title-focus span:first-child {
  white-space: nowrap;
}

.hero-lead {
  position: relative;
  max-width: 58ch;
  margin: 1.5rem 0 0;
  padding: 1.1rem 0 1.1rem 1.35rem;
  border-left: 5px solid var(--gold);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.22);
}

.hero-lead::before {
  content: none;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0 1.7rem;
}

.hero-pillars span,
.logic-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-align: center;
}

.hero-pillars span:nth-child(2) {
  border-color: rgba(255, 212, 59, 0.5);
}

.hero-pillars span:nth-child(3) {
  border-color: rgba(37, 211, 102, 0.45);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.cta-caption {
  max-width: 52ch;
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-frame {
  position: relative;
  width: min(100%, 460px);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: var(--shadow);
}

.hero-frame::before,
.portrait-frame::before {
  content: "RUIZ MIDIAS";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--night);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: contrast(1.08) saturate(0.92);
}

.floating-card {
  position: absolute;
  right: -0.85rem;
  bottom: 1.2rem;
  width: min(310px, 88%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(22, 5, 78, 0.94);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 1rem;
  text-transform: uppercase;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.section {
  position: relative;
  padding: 5.4rem 0;
}

.section-light {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 5, 31, 0.96), rgba(7, 3, 15, 0.98)),
    var(--night);
}

.section-soft {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 5, 78, 0.96), rgba(7, 3, 15, 0.94)),
    url("assets/marketing-dashboard.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(56, 18, 154, 0.94), rgba(22, 5, 78, 0.96)),
    url("assets/business-analytics-laptop.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2.35rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--white);
  font-size: 3.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted-on-dark);
}

.faq-section .section-heading h2 {
  max-width: 740px;
  font-size: 2.25rem;
  line-height: 1.2;
  text-transform: none;
}

.problem-section .section-heading h2,
.logic-section .section-heading h2 {
  text-transform: none;
}

.problem-section .section-heading h2 {
  max-width: 720px;
  font-size: 2.25rem;
  line-height: 1.22;
  font-weight: 800;
}

.logic-section .section-heading h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 2.35rem;
  line-height: 1.18;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.stacked-cards,
.pillar-detail-grid,
.three-column-grid,
.proof-grid,
.info-grid,
.decision-grid {
  display: grid;
  gap: 1.15rem;
}

.stacked-cards {
  align-content: start;
}

.three-column-grid,
.pillar-detail-grid,
.proof-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-grid {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: stretch;
}

.content-card,
.pillar-card,
.detail-card,
.proof-card,
.info-panel,
.decision-card,
.logic-panel,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--soft-shadow);
}

.content-card,
.detail-card,
.proof-card,
.info-panel,
.decision-card,
.logic-panel,
.timeline-item,
.pillar-card {
  padding: 1.55rem;
}

.content-card {
  border-left: 5px solid var(--purple-bright);
}

.content-card .check-list + p {
  margin-top: 1.35rem;
}

.highlight-card {
  border-color: rgba(255, 49, 95, 0.36);
  border-left-color: var(--alert);
  background: rgba(255, 49, 95, 0.12);
}

.highlight-card p {
  margin: 0;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 900;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  background: rgba(0, 0, 0, 0.22);
}

.pillar-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border: 12px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.pillar-card h3 {
  margin: 1rem 0 0.75rem;
  color: var(--white);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: var(--muted-on-dark);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
}

.detail-card,
.proof-card,
.info-panel,
.decision-card,
.timeline-item {
  background: var(--paper);
  color: var(--purple);
  border-color: var(--line-dark);
}

.detail-card h3,
.timeline-item h3 {
  margin-bottom: 0.8rem;
  color: var(--purple);
  font-size: 1.38rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card p,
.timeline-item p,
.proof-card p,
.decision-card p,
.info-panel p,
.content-card p {
  margin: 0;
}

.detail-card p,
.timeline-item p,
.proof-card p,
.decision-card p,
.info-panel p {
  color: var(--muted);
}

.content-card p {
  color: var(--muted-on-dark);
}

.section-cta {
  margin-top: 2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  counter-reset: timeline-step;
}

.timeline::before {
  content: none;
}

.timeline-item {
  border-top: 5px solid var(--purple-bright);
  counter-increment: timeline-step;
}

.timeline-item h3 {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.timeline-item h3::before {
  content: counter(timeline-step) "\00BA";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.15rem;
  padding: 0 0.45rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--purple-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logic-panel {
  margin-top: 1.7rem;
  background: rgba(0, 0, 0, 0.26);
}

.logic-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.logic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.logic-tags span {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.placeholder {
  border-style: dashed;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--purple-bright);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.portrait-frame {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  border-radius: var(--radius);
}

.portrait-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--white);
}

.portrait-placeholder img {
  width: min(220px, 55%);
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.portrait-placeholder strong {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.portrait-placeholder span,
.about-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.check-list,
.cross-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  min-height: 2rem;
  padding-left: 3rem;
  color: inherit;
  --bullet-bg: rgba(56, 18, 154, 0.13);
  --bullet-color: var(--purple-bright);
  --bullet-ring: rgba(56, 18, 154, 0.13);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}

.check-list li + li,
.cross-list li + li {
  margin-top: 0.9rem;
}

.check-list li::before,
.cross-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: var(--bullet-bg);
  box-shadow: inset 0 0 0 1px var(--bullet-ring);
}

.check-list li::after,
.cross-list li::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.55rem;
  width: 1rem;
  height: 1rem;
  background: var(--bullet-color);
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.content-card .check-list li {
  color: var(--white);
  --bullet-bg: rgba(255, 255, 255, 0.1);
  --bullet-color: var(--gold);
  --bullet-ring: rgba(255, 255, 255, 0.12);
}

.neutral-list li::before {
  background: rgba(56, 18, 154, 0.13);
  box-shadow: inset 0 0 0 1px rgba(56, 18, 154, 0.13);
}

.contrast-panel {
  color: var(--white);
  background: var(--purple);
  border-color: rgba(255, 255, 255, 0.12);
}

.contrast-panel .eyebrow,
.contrast-panel .cross-list li,
.contrast-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.contrast-panel .cross-list li {
  --bullet-bg: rgba(255, 255, 255, 0.12);
  --bullet-color: var(--gold);
  --bullet-ring: rgba(255, 255, 255, 0.08);
}

.icon-calendar {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.icon-megaphone {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 11-5v12L3 13v-2Z'/%3E%3Cpath d='M14 8c2 1 3.25 2.5 4 4'/%3E%3Cpath d='M6 13v5a2 2 0 0 0 2 2h1'/%3E%3C/svg%3E");
}

.icon-eye {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.icon-briefcase {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M3 12h18'/%3E%3C/svg%3E");
}

.icon-smartphone {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
}

.icon-pen {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='m16.5 3.5 4 4L8 20l-5 1 1-5 12.5-12.5Z'/%3E%3C/svg%3E");
}

.icon-trending {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 17 6-6 4 4 8-8'/%3E%3Cpath d='M14 7h7v7'/%3E%3C/svg%3E");
}

.icon-sprout {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20v-8'/%3E%3Cpath d='M12 12C8.5 12 6 9.5 6 6c3.5 0 6 2.5 6 6Z'/%3E%3Cpath d='M12 12c3.5 0 6-2.5 6-6-3.5 0-6 2.5-6 6Z'/%3E%3C/svg%3E");
}

.icon-bolt {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6l1-8Z'/%3E%3C/svg%3E");
}

.icon-sliders {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 18h16'/%3E%3Ccircle cx='9' cy='6' r='2'/%3E%3Ccircle cx='15' cy='12' r='2'/%3E%3Ccircle cx='11' cy='18' r='2'/%3E%3C/svg%3E");
}

.icon-pin {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.5 6-11a6 6 0 1 0-12 0c0 5.5 6 11 6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.icon-wrench {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 6.5a4 4 0 0 0-5 5L4 17l3 3 5.5-5.5a4 4 0 0 0 5-5l-2 2-3-3 2-2Z'/%3E%3C/svg%3E");
}

.icon-compass {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m15.5 8.5-2.5 7-7 2.5 2.5-7 7-2.5Z'/%3E%3C/svg%3E");
}

.decision-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--purple);
  font-size: 1.15rem;
  font-weight: 900;
}

.decision-card.wide {
  border-top: 5px solid var(--gold);
}

.final-cta-panel {
  margin-top: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(22, 5, 78, 0.94), rgba(0, 0, 0, 0.86)),
    url("assets/business-analytics-laptop.jpg");
  background-size: cover;
  background-position: center center;
  box-shadow: var(--shadow);
}

.final-cta-panel h2 {
  max-width: 860px;
  margin: 0 auto 1.25rem;
  color: var(--white);
  font-size: 2.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--soft-shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 1.25rem;
  margin: 0;
  color: var(--muted-on-dark);
}

.site-footer {
  padding: 3.5rem 0 2rem;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.footer-contact {
  display: grid;
  gap: 0.85rem;
}

.footer-contact a {
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-contact p,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact .privacy-note {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .about-grid,
  .footer-grid,
  .decision-grid,
  .three-column-grid,
  .pillar-detail-grid,
  .proof-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-surface {
    width: 100%;
    justify-content: center;
  }

  .brand-surface img {
    max-width: 300px;
  }

  .nav-cta,
  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-section {
    padding: 3rem 0 3.4rem;
    background-position: center center;
  }

  .section-soft {
    background-attachment: scroll;
  }

  .hero-grid {
    gap: 1.7rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-title-intro {
    font-size: 1.18rem;
    white-space: nowrap;
  }

  .hero-title-focus {
    font-size: 2.34rem;
  }

  .hero-lead {
    padding: 1rem;
    border-left-width: 4px;
    font-size: 1.04rem;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: block;
  }

  .hero-frame {
    width: 100%;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .final-cta-panel h2 {
    font-size: 2.05rem;
  }

  .final-cta-panel h2,
  .faq-section .section-heading h2 {
    font-size: 1.45rem;
    line-height: 1.24;
  }

  .problem-section .section-heading h2,
  .logic-section .section-heading h2 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .content-card,
  .detail-card,
  .proof-card,
  .info-panel,
  .decision-card,
  .logic-panel,
  .timeline-item,
  .pillar-card,
  .final-cta-panel {
    padding: 1.2rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-title-intro {
    font-size: 1.04rem;
  }

  .hero-title-focus {
    font-size: 2.2rem;
  }

  .section-heading h2,
  .final-cta-panel h2 {
    font-size: 1.78rem;
  }

  .final-cta-panel h2,
  .faq-section .section-heading h2 {
    font-size: 1.32rem;
  }

  .problem-section .section-heading h2,
  .logic-section .section-heading h2 {
    font-size: 1.48rem;
  }

  p,
  li {
    font-size: 1rem;
  }
}
