:root {
  --green: #5DBE3F;
  --green-bright: #4FD331;
  --green-dark: #2E7D32;
  --green-deep: #1B5E20;
  --pink: #FF3E8C;
  --orange: #FF6B35;
  --yellow: #FFD60A;
  --purple: #7B2CBF;
  --blue: #0496FF;
  --black: #0A0A0A;
  --grey: #5A5A5A;
  --grey-light: #E5E5E5;
  --bg: #FAFAF7;
  --pale-green: #F0FFE8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: var(--green); color: white; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--black);
  color: white;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.3);
}
.nav-cta .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.nav-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape-1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
}
.hero-bg-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero-dot-1 { top: 20%; right: 8%; width: 16px; height: 16px; background: var(--yellow); }
.hero-dot-2 { top: 40%; right: 12%; width: 10px; height: 10px; background: var(--purple); }
.hero-dot-3 { bottom: 30%; right: 6%; width: 24px; height: 24px; background: var(--blue); opacity: 0.5; }
.hero-dot-4 { top: 30%; left: 10%; width: 12px; height: 12px; background: var(--pink); }

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--grey-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 1100px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero h1 .italic-em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}
.hero h1 .green-underline {
  background-image: linear-gradient(120deg, var(--green-bright) 0%, var(--green) 100%);
  background-repeat: no-repeat;
  background-size: 100% 28%;
  background-position: 0 88%;
  padding: 0 6px;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--grey);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.55;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-sub strong { color: var(--black); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
  animation: fadeUp 1s ease 0.5s both;
}
.btn-primary {
  background: var(--black);
  color: white;
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46,125,50,0.4);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(5px); }

.btn-secondary {
  background: white;
  color: var(--black);
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid var(--grey-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--green);
  background: var(--pale-green);
}
.whatsapp-icon {
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  animation: fadeUp 1s ease 0.7s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
}
.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.trust-1 .trust-icon { background: var(--pale-green); color: var(--green-dark); }
.trust-2 .trust-icon { background: #FFE6F0; color: var(--pink); }
.trust-3 .trust-icon { background: #FFF7CC; color: #8B7300; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MARQUEE ========== */
.marquee-wrap {
  background: var(--black);
  color: white;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee {
  display: flex;
  gap: 60px;
  animation: scroll-x 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item .star {
  color: var(--green-bright);
  font-size: 22px;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 120px 40px;
  position: relative;
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
}

/* ========== WHY US ========== */
.why-us {
  background: white;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.why-us-left p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 24px;
}
.why-us-left p strong {
  color: var(--black);
  font-weight: 600;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: var(--bg);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--grey-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--green);
}
.pillar.p-2::before { background: var(--pink); }
.pillar.p-3::before { background: var(--orange); }
.pillar.p-4::before { background: var(--purple); }
.pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pillar p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.service-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--grey-light);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.s-1::before { background: var(--green); }
.service-card.s-2::before { background: var(--pink); }
.service-card.s-3::before { background: var(--orange); }
.service-card.s-4::before { background: var(--purple); }
.service-card.s-5::before { background: var(--blue); }
.service-card.s-6::before { background: var(--yellow); }

.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}
.s-1 .service-icon { background: var(--pale-green); color: var(--green-dark); }
.s-2 .service-icon { background: #FFE6F0; color: var(--pink); }
.s-3 .service-icon { background: #FFEDD5; color: var(--orange); }
.s-4 .service-icon { background: #EDE0FF; color: var(--purple); }
.s-5 .service-icon { background: #DBEEFE; color: var(--blue); }
.s-6 .service-icon { background: #FFF7CC; color: #8B7300; }

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  padding-top: 16px;
  border-top: 1px dashed var(--grey-light);
}

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

/* ========== FOUNDING OFFER ========== */
.founding {
  background: var(--black);
  color: white;
  position: relative;
  overflow: hidden;
}
.founding::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.founding::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--pink);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}
.founding .section-inner { position: relative; z-index: 2; }
.founding .section-eyebrow { color: var(--yellow); }
.founding .section-eyebrow::before { background: var(--yellow); }
.founding .section-title { color: white; }
.founding .section-title em { color: var(--yellow); }

.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.urgency-pulse {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.founding-desc {
  font-size: 19px;
  max-width: 600px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
  line-height: 1.55;
}
.founding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}
.offer-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
}
.offer-card.o-1 .offer-num { color: var(--pink); }
.offer-card.o-2 .offer-num { color: var(--green-bright); }
.offer-card.o-3 .offer-num { color: var(--yellow); }

.offer-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.15;
}
.offer-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.offer-card p strong { color: white; font-weight: 600; }
.offer-best {
  font-size: 11px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid;
}
.offer-card.o-1 .offer-best { border-left-color: var(--pink); }
.offer-card.o-2 .offer-best { border-left-color: var(--green-bright); }
.offer-card.o-3 .offer-best { border-left-color: var(--yellow); }

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

/* ========== PROCESS ========== */
.process {
  background: white;
}
.process-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--grey-light);
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--grey-light);
  transition: all 0.4s;
  position: relative;
}
.process-step:hover {
  background: var(--bg);
  padding-left: 20px;
  padding-right: 20px;
}
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}
.process-step.st-1 .process-num { color: var(--green-dark); }
.process-step.st-2 .process-num { color: var(--pink); }
.process-step.st-3 .process-num { color: var(--orange); }
.process-step.st-4 .process-num { color: var(--purple); }

.process-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}
.process-step p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .process-step p { grid-column: 1 / -1; }
  .process-num { font-size: 44px; }
  .process-step h3 { font-size: 22px; }
}

/* ========== PRICING ========== */
.pricing {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.price-card {
  background: white;
  border-radius: 28px;
  padding: 40px 32px;
  border: 1px solid var(--grey-light);
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.price-card.featured {
  background: var(--black);
  color: white;
  border-color: var(--black);
  transform: scale(1.03);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.price-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.price-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.price-card.s .price-tier { color: var(--blue); }
.price-card.g .price-tier { color: var(--green-bright); }
.price-card.p .price-tier { color: var(--black); }
.price-card.featured.g .price-tier { color: var(--green-bright); }

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.price-amount .currency {
  font-size: 28px;
  font-weight: 500;
  vertical-align: top;
  margin-right: 4px;
  opacity: 0.5;
}
.price-period {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 32px;
}
.price-card.featured .price-period { color: rgba(255,255,255,0.5); }
.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.4;
}
.price-card.featured .price-features li {
  border-bottom-color: rgba(255,255,255,0.08);
}
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}
.price-cta {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  background: var(--black);
  color: white;
  transition: all 0.3s;
}
.price-card.featured .price-cta {
  background: var(--green);
  color: white;
}
.price-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ========== FAQ ========== */
.faq {
  background: white;
}
.faq-list {
  max-width: 900px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--grey-light);
  padding: 28px 0;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-item:hover { padding-left: 12px; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.faq-q h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}
.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 16px;
  color: var(--grey);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 20px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: var(--pink);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
}
.cta-section .section-inner { position: relative; z-index: 2; }
.cta-section .section-title {
  color: white;
  margin-bottom: 24px;
}
.cta-section .section-title em { color: var(--yellow); }
.cta-section p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background: white;
  color: var(--black);
}
.cta-buttons .btn-primary:hover {
  background: var(--yellow);
  color: var(--black);
}
.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ========== FOOTER ========== */
footer {
  background: var(--black);
  color: white;
  padding: 80px 40px 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo-block img {
  height: 36px;
  width: auto;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}
.footer-logo-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer-contact strong { color: white; }

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green-bright);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--green-bright);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 32px rgba(93,190,63,0.4);
  z-index: 99;
  transition: all 0.3s;
  font-size: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(93,190,63,0.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: ring 2s infinite;
  z-index: -1;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
