:root {
  --ink: #11100e;
  --paper: #f6f2eb;
  --gold: #c59a4b;
  --gold-light: #e8c980;
  --gold-dark: #9e752b;
  --muted: #6f6a61;
  --line: #ded8cd;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

/* Nav Header */
.nav {
  max-width: 1240px;
  height: 86px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(197, 154, 75, 0.4);
}

.brand-name {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 14px;
  color: #4c4842;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700 !important;
  color: var(--ink) !important;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(197, 154, 75, 0.12);
  border: 1px solid rgba(197, 154, 75, 0.25);
  font-size: 13px !important;
}

.phone-icon {
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  padding: 16px 24px;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 154, 75, 0.35);
}

.button b {
  font-size: 18px;
  line-height: 1;
}

.button-small {
  padding: 10px 18px;
  font-size: 13px;
}

.whatsapp-btn {
  background: #1e7e34 !important;
  gap: 8px;
}

.whatsapp-btn:hover {
  background: #155724 !important;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3) !important;
}

.wa-icon-mini, .wa-icon {
  flex-shrink: 0;
}

.button-whatsapp {
  background: #128C7E !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.button-whatsapp:hover {
  background: #0d6e63 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.4);
}

.button-whatsapp-solid {
  background: #25D366 !important;
  color: #0b3419 !important;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.button-whatsapp-solid:hover {
  background: #1eb857 !important;
  color: #fff !important;
}

.button-dark-contrast {
  background: #11100e !important;
  color: #f7f3ec !important;
}

.button-dark-contrast:hover {
  background: #2b2823 !important;
}

.button-outline {
  background: transparent !important;
  color: #11100e !important;
  border: 2px solid #11100e;
}

.button-outline:hover {
  background: #11100e !important;
  color: #f7f3ec !important;
}

.nav-toggle {
  display: none;
}

.section {
  max-width: 1240px;
  margin: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Hero Section */
.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--gold-dark);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -2px;
}

h1 {
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1.05;
  margin: 15px 0 25px;
  max-width: 620px;
}

em {
  font-style: italic;
  color: var(--gold-dark);
}

.lead {
  line-height: 1.75;
  color: var(--muted);
  max-width: 485px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 34px 0 44px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.text-link:hover {
  background: rgba(197, 154, 75, 0.15);
  color: var(--gold-dark);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-proof p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-proof strong {
  color: var(--ink);
}

.avatars {
  display: flex;
}

.avatars span, .avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -8px;
  color: #fff;
  background: #876b4b;
  font-size: 9px;
  font-weight: 700;
}

.avatars span:first-child {
  margin: 0;
  background: #bd8d5a;
}

.avatars span:nth-child(2) {
  background: #404d51;
}

.avatars span:nth-child(3) {
  background: #866b78;
}

.avatars span:last-child {
  background: var(--ink);
}

/* Phone Mockup */
.hero-visual {
  height: 548px;
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: 285px;
  height: 550px;
  padding: 19px 18px 17px;
  background: #141312;
  color: #f9f8f5;
  border-radius: 39px;
  border: 8px solid #2d2a25;
  box-shadow: 0 28px 60px rgba(27, 23, 17, 0.5);
  overflow: hidden;
}

.phone:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid #4a453b;
  pointer-events: none;
}

.phone-notch {
  width: 88px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: #2d2a25;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.app-top {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}

.app-brand-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 11px;
}

.mini-app-logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.app-greeting {
  font-size: 11px;
  color: #bcb7ae;
  margin: 21px 0 5px;
}

.phone h3 {
  font: 600 21px var(--serif);
  margin: 0 0 15px;
}

.revenue-card {
  padding: 14px;
  background: linear-gradient(135deg, #c59a4b, #dfb466);
  color: #161310;
  border-radius: 13px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 8px 16px rgba(197, 154, 75, 0.25);
}

.revenue-card small, .appointment small {
  display: block;
  font-size: 8px;
}

.revenue-card strong {
  display: block;
  font: 600 22px var(--serif);
  margin: 3px 0;
}

.revenue-card b {
  font-size: 8px;
  background: #faebc2;
  padding: 3px 5px;
  border-radius: 4px;
}

.chart {
  height: 49px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.chart i {
  width: 5px;
  background: #765429;
  border-radius: 3px;
}

.chart i:nth-child(1) { height: 30%; }
.chart i:nth-child(2) { height: 58%; }
.chart i:nth-child(3) { height: 45%; }
.chart i:nth-child(4) { height: 74%; }
.chart i:nth-child(5) { height: 55%; }
.chart i:nth-child(6) { height: 100%; }

.app-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.app-row h4 {
  margin: 0;
  font-size: 11px;
}

.app-row a {
  font-size: 8px;
  color: var(--gold-light);
  text-decoration: none;
}

.appointment {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid #332f2a;
}

.appointment .avatar {
  margin: 0;
  border: 0;
  width: 28px;
  height: 28px;
}

.avatar.gold {
  background: #c59a4b;
}

.avatar.blue {
  background: #5e7377;
}

.appointment strong {
  font-size: 10px;
}

.appointment span:last-child {
  margin-left: auto;
  color: #bdb6a8;
}

.app-nav {
  position: absolute;
  bottom: 12px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-around;
  color: #aaa398;
  font-size: 15px;
  align-items: center;
}

.app-plus {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 21px;
}

.orbit {
  position: absolute;
  border: 1px solid #d8c8aa;
  border-radius: 50%;
  z-index: 0;
}

.orbit-one {
  width: 450px;
  height: 450px;
}

.orbit-two {
  width: 570px;
  height: 570px;
  border-color: #e7ded0;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 15px 30px rgba(30, 24, 14, 0.15);
  border-radius: 6px;
  border: 1px solid rgba(197, 154, 75, 0.15);
}

.floating-card small, .floating-card strong {
  display: block;
  font-size: 9px;
}

.floating-card small {
  color: var(--muted);
  margin-bottom: 3px;
}

.floating-card strong {
  font-size: 11px;
}

.float-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #f4e4bd;
  color: #a27829;
  border-radius: 50%;
}

.satisfaction {
  top: 104px;
  left: 3px;
}

.booking {
  right: 0;
  bottom: 91px;
}

.calendar {
  background: #e4ede8;
  color: #128C7E;
}

/* Logos Section */
.logos {
  padding-top: 20px;
  padding-bottom: 85px;
  text-align: center;
}

.logos p {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #9f978c;
}

.logos div {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  color: #777168;
  font: 600 16px var(--serif);
  letter-spacing: 1px;
}

/* Feature Section */
.feature-intro {
  padding-top: 90px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(36px, 3.8vw, 55px);
  line-height: 1.08;
  margin: 13px 0 0;
}

.section-copy {
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
  margin: 0 0 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  padding-top: 54px;
  padding-bottom: 120px;
}

.feature-card {
  position: relative;
  min-height: 314px;
  padding: 28px;
  background: #ebe5db;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.feature-card.large {
  grid-row: span 2;
  min-height: 644px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ded5c5;
}

.feature-card.dark {
  background: #191817;
  color: #f6f2eb;
}

.card-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 35px;
}

.feature-card > p:not(.amount) {
  font-size: 10px;
  color: #9b9388;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-card h3 {
  font: 600 23px var(--serif);
  margin-bottom: 12px;
}

.feature-card h3 + p {
  font-size: 13px;
  line-height: 1.7;
  color: #69645c;
  max-width: 310px;
}

.dark h3 + p {
  color: #bbb4aa;
}

.calendar-preview {
  margin-top: 35px;
  background: #f8f5ee;
  padding: 17px;
  color: #29251f;
  box-shadow: 9px 10px #c5b9a7;
  border-radius: 4px;
}

.calendar-preview > span {
  font: 600 15px var(--serif);
}

.dates {
  display: flex;
  justify-content: space-between;
  margin: 19px 0;
}

.dates b {
  font-size: 11px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
}

.dates .selected {
  background: var(--gold);
  border-radius: 50%;
  color: #fff;
}

.calendar-preview small {
  font-size: 9px;
  color: #128C7E;
  font-weight: 600;
}

.amount {
  font: 600 28px var(--serif);
  margin: 43px 0 5px;
}

.amount span {
  font: 600 9px var(--sans);
  color: #97c9a6;
  margin-left: 5px;
}

.line-chart {
  color: var(--gold);
  height: 70px;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.team-bars {
  display: flex;
  height: 80px;
  gap: 8px;
  align-items: end;
  margin-top: 30px;
}

.team-bars span {
  height: var(--h);
  width: 18px;
  background: var(--gold);
  border-radius: 2px;
}

.rating {
  position: absolute;
  bottom: 25px;
}

.rating strong {
  display: block;
  font: 600 35px var(--serif);
}

.rating span {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 10px;
}

.rating small {
  display: block;
  color: #817b73;
  font-size: 9px;
  margin-top: 5px;
}

/* Workflow Section */
.workflow {
  background: #181615;
  color: #f5f0e7;
  max-width: none;
  padding: 100px max(32px, calc((100% - 1176px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.workflow-visual {
  min-height: 470px;
  display: grid;
  place-items: center;
  position: relative;
}

.workflow-ring {
  position: relative;
  width: 370px;
  height: 370px;
  border: 1px solid #514b42;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.workflow-ring:after {
  content: '';
  position: absolute;
  inset: 44px;
  border: 1px dashed #514b42;
  border-radius: 50%;
}

.workflow-ring span {
  position: absolute;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.workflow-ring span:nth-child(1) { top: -9px; left: 50%; }
.workflow-ring span:nth-child(2) { bottom: 54px; right: 10px; }
.workflow-ring span:nth-child(3) { bottom: 54px; left: 10px; }

.workflow-center {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #11100e;
  box-shadow: 0 0 0 16px #2c2925, 0 12px 32px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gold);
  overflow: hidden;
}

.workflow-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-content h2 {
  font-size: clamp(36px, 3.8vw, 55px);
  line-height: 1.1;
  margin: 14px 0 38px;
}

.steps > div {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #3c3731;
}

.steps b {
  font: 500 20px var(--serif);
  color: var(--gold);
}

.steps p {
  margin: 0;
}

.steps strong, .steps span {
  display: block;
}

.steps strong {
  font-size: 14px;
  margin-bottom: 5px;
}

.steps span {
  font-size: 12px;
  color: #aaa298;
  line-height: 1.5;
}

/* Metrics */
.metrics {
  background: linear-gradient(135deg, #c59a4b, #dfb466);
  padding: 48px max(32px, calc((100% - 1176px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  color: #11100e;
}

.metrics div {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 23px;
}

.metrics strong, .metrics span {
  display: block;
}

.metrics strong {
  font: 600 clamp(24px, 3vw, 42px) var(--serif);
  letter-spacing: -0.5px;
}

.metrics span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 9px;
  margin-top: 4px;
  font-weight: 700;
  opacity: 0.85;
}

/* Testimonials */
.testimonials {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
}

.testimonial-wrap {
  position: relative;
  align-self: center;
}

.testimonial {
  display: none;
  background: #e8e1d5;
  padding: 51px 55px 37px;
  border-radius: 6px;
}

.testimonial.active {
  display: block;
  animation: fade 0.35s ease;
}

.quote {
  font: 70px var(--serif);
  color: var(--gold);
  height: 41px;
}

.testimonial blockquote {
  margin: 7px 0 35px;
  font: 600 24px/1.42 var(--serif);
  letter-spacing: -0.5px;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial footer .avatar {
  margin: 0;
  border: 0;
  width: 37px;
  height: 37px;
}

.testimonial footer p {
  margin: 0;
  font-size: 11px;
}

.testimonial footer strong, .testimonial footer span {
  display: block;
}

.testimonial footer span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}

.stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.slider-arrow {
  position: absolute;
  z-index: 2;
  bottom: 37px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.prev { right: 55px; }
.next { right: 22px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  right: 25px;
}

.slider-dots i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #b6ada0;
  border-radius: 50%;
  margin: 2px;
}

.slider-dots i.active {
  background: var(--ink);
}

/* Pricing Section */
.pricing {
  padding-bottom: 120px;
}

.pricing-card {
  background: #191817;
  color: #f7f3ec;
  padding: 77px 82px;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 90px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-card:after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid #3e3932;
  border-radius: 50%;
  right: -230px;
  bottom: -280px;
}

.pricing-card h2 {
  font-size: clamp(36px, 3.8vw, 55px);
  line-height: 1.08;
  margin: 14px 0 20px;
}

.pricing-copy {
  color: #bdb6ab;
  line-height: 1.7;
  font-size: 14px;
  max-width: 430px;
}

.pricing ul {
  list-style: none;
  padding: 0;
  margin: 29px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.pricing li {
  font-size: 13px;
}

.pricing li:before {
  content: '✓';
  color: var(--gold);
  margin-right: 9px;
  font-weight: 700;
}

.price-box {
  z-index: 1;
  background: #f1ebdf;
  color: var(--ink);
  padding: 36px 32px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-box span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.price-box > strong {
  font: 600 60px var(--serif);
  margin: 8px 0 0;
  color: var(--ink);
}

.price-box small {
  color: #7c756a;
  font-size: 10px;
}

.price-box .button {
  margin: 27px 0 14px;
  width: 100%;
  justify-content: center;
}

.price-box p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
  align-self: center;
}

/* FAQ */
.faq {
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 95px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  cursor: pointer;
  font: 600 18px var(--serif);
  display: flex;
  justify-content: space-between;
}

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

summary span {
  font: 400 23px var(--sans);
  transition: 0.2s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  color: var(--gold-dark);
}

.faq-list p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin: 15px 35px 0 0;
}

/* CTA */
.cta {
  max-width: none;
  min-height: 420px;
  background: linear-gradient(135deg, #c59a4b, #dfb466);
  padding: 80px max(32px, calc((100% - 1176px) / 2));
  position: relative;
  overflow: hidden;
  color: #11100e;
}

.cta h2 {
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.05;
  margin: 14px 0 18px;
}

.cta p:not(.eyebrow) {
  max-width: 440px;
  line-height: 1.65;
  color: #3b2c12;
  font-size: 15px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-shape {
  position: absolute;
  right: max(6%, calc((100% - 1176px) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 32px rgba(187, 142, 66, 0.45), 0 0 0 65px rgba(213, 169, 87, 0.25), 0 20px 45px rgba(0, 0, 0, 0.25);
  background: #11100e;
  overflow: hidden;
  border: 3px solid #f6f2eb;
}

.cta-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  max-width: 1240px;
  margin: auto;
  padding: 35px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold-dark);
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 84px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 99;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-wa:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.floating-wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.floating-wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #11100e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateX(10px);
  transition: all 0.25s ease;
  border: 1px solid rgba(197, 154, 75, 0.3);
}

.floating-wa-tooltip:after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #11100e;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.floating-wa:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.wa-tooltip-title {
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: #25D366;
}

.wa-tooltip-sub {
  display: block;
  font-size: 10px;
  color: #ddd;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Back to top */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  z-index: 98;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.25s;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-top.visible {
  opacity: 1;
  transform: none;
}

.back-top:hover {
  background: var(--gold-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

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

@keyframes fade {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    height: 70px;
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 6px;
  }

  .nav-toggle i {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #f6f2eb;
    padding: 24px 20px;
    z-index: 50;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -40px;
  }

  .logos {
    padding-bottom: 65px;
  }

  .logos div {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
  }

  .feature-intro, .testimonials, .faq {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 70px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 35px;
    padding-bottom: 75px;
  }

  .feature-card.large {
    grid-column: span 2;
    min-height: 510px;
  }

  .workflow {
    grid-template-columns: 1fr;
    padding: 67px 20px;
    gap: 20px;
  }

  .workflow-visual {
    min-height: 320px;
    transform: scale(0.85);
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    padding: 38px 20px;
  }

  .testimonials {
    padding-bottom: 75px;
  }

  .testimonial {
    padding: 38px 28px 70px;
  }

  .testimonial blockquote {
    font-size: 20px;
  }

  .prev { right: 60px; }
  .next { right: 27px; }

  .pricing-card {
    padding: 45px 27px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq {
    padding-bottom: 75px;
  }

  .cta {
    padding: 65px 20px;
    min-height: 480px;
  }

  .cta-shape {
    right: -40px;
    top: auto;
    bottom: -50px;
    transform: none;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    box-shadow: 0 0 0 20px rgba(187, 142, 66, 0.4);
  }

  footer {
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .floating-wa-tooltip {
    display: none;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 42px;
  }

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

  .feature-card.large {
    grid-column: span 1;
  }

  .feature-card {
    min-height: 270px;
  }

  .pricing ul {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    transform: scale(0.78);
    margin: -10px -40px -100px;
  }

  .testimonial footer .stars {
    display: none;
  }

  .metrics strong {
    font-size: 28px;
  }
}
