/* Discount Promo LLC — Shared Styles */
:root {
  --green-950: #06251a;
  --green-900: #0a3d2c;
  --green-800: #0f4f38;
  --green-700: #146b4a;
  --green-600: #1a8a5c;
  --green-500: #22a86e;
  --green-400: #3dc487;
  --green-300: #7dd9ad;
  --green-100: #e6f7ef;
  --green-50: #f3fbf7;
  --white: #ffffff;
  --off-white: #f8fcfa;
  --text: #12241c;
  --text-muted: #4a6358;
  --border: rgba(10, 61, 44, 0.12);
  --shadow: 0 18px 50px rgba(6, 37, 26, 0.12);
  --radius: 18px;
  --container: min(1140px, calc(100% - 2.5rem));
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(20, 107, 74, 0.28);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-800);
}

.btn-outline:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn-ghost {
  background: var(--green-100);
  color: var(--green-800);
}

.btn-ghost:hover {
  background: var(--green-300);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled,
.site-header.solid,
.site-header.menu-open {
  background: rgba(248, 252, 250, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(6, 37, 26, 0.08);
}

.nav {
  width: var(--container);
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .logo,
.site-header.solid .logo,
.site-header.menu-open .logo {
  color: var(--green-900);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--green-400), var(--green-800));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(20, 107, 74, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: background var(--transition), color var(--transition);
}

.site-header.scrolled .nav-links a,
.site-header.solid .nav-links a,
.site-header.menu-open .nav-links a {
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.site-header.solid .nav-links a:hover,
.site-header.solid .nav-links a.active,
.site-header.menu-open .nav-links a:hover,
.site-header.menu-open .nav-links a.active {
  background: var(--green-100);
  color: var(--green-800);
}

.nav-cta {
  margin-left: 0.4rem;
  padding: 0.7rem 1.15rem !important;
  background: var(--white) !important;
  color: var(--green-800) !important;
}

.site-header.scrolled .nav-cta,
.site-header.solid .nav-cta,
.site-header.menu-open .nav-cta {
  background: var(--green-700) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.site-header.scrolled .menu-toggle,
.site-header.solid .menu-toggle,
.site-header.menu-open .menu-toggle {
  background: var(--green-100);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.site-header.scrolled .menu-toggle span,
.site-header.solid .menu-toggle span,
.site-header.menu-open .menu-toggle span {
  background: var(--green-900);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(61, 196, 135, 0.35), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(20, 107, 74, 0.55), transparent 40%),
    linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 48%, var(--green-600) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: float 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: var(--green-400);
  top: 12%;
  right: 10%;
}

.hero-orb-2 {
  width: 220px;
  height: 220px;
  background: #9aefc4;
  bottom: 18%;
  left: 8%;
  animation-delay: -3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 9rem 0 5.5rem;
}

.hero .eyebrow {
  color: var(--green-300);
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s ease 0.08s both;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s ease 0.24s both;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-visual-panel {
  position: absolute;
  right: max(2rem, calc((100% - 1140px) / 2));
  top: 50%;
  transform: translateY(-42%);
  width: min(420px, 38vw);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%233dc487'/%3E%3Cstop offset='1' stop-color='%230a3d2c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='400' height='500' fill='url(%23g)'/%3E%3Ccircle cx='300' cy='110' r='90' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='80' cy='380' r='120' fill='rgba(255,255,255,0.08)'/%3E%3Cpath d='M40 320 C120 220 220 360 360 240' stroke='rgba(255,255,255,0.35)' stroke-width='8' fill='none'/%3E%3Crect x='48' y='70' width='180' height='24' rx='12' fill='rgba(255,255,255,0.7)'/%3E%3Crect x='48' y='110' width='120' height='16' rx='8' fill='rgba(255,255,255,0.35)'/%3E%3Crect x='48' y='390' width='220' height='48' rx='24' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E")
      center / cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: riseIn 1.1s ease 0.2s both;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 9.5rem 0 4.5rem;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(61, 196, 135, 0.28), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

/* Sections */
section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .lead {
  margin-inline: auto;
}

.bg-soft {
  background: linear-gradient(180deg, var(--green-50), var(--white));
}

.bg-white {
  background: var(--white);
}

.bg-green {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: var(--white);
}

.bg-green .lead,
.bg-green .muted {
  color: rgba(255, 255, 255, 0.8);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-card span {
  color: var(--text-muted);
  font-weight: 600;
}

/* Benefits / Features */
.benefits-grid,
.services-grid,
.projects-grid,
.pricing-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 1.25rem;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.benefit-item p,
.service-card p,
.project-card p {
  color: var(--text-muted);
  margin-top: 0.55rem;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-panel {
  border-radius: 28px;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(145deg, var(--green-800), var(--green-500));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.word-cycle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 2rem;
}

.word-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Services */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.service-card {
  position: relative;
  padding: 1.9rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 138, 92, 0.35);
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green-100);
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  line-height: 1;
  font-weight: 800;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  color: var(--green-700);
  font-weight: 700;
}

.service-card-detailed {
  padding: 2.2rem 1.8rem;
}

.service-card-detailed .icon-badge {
  width: 64px;
  height: 64px;
  font-size: 1.7rem;
}

/* Projects */
.projects-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.project-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.project-thumb-1 {
  background-image: linear-gradient(145deg, #146b4a, #7dd9ad);
}

.project-thumb-2 {
  background-image: linear-gradient(145deg, #0a3d2c, #3dc487);
}

.project-thumb-3 {
  background-image: linear-gradient(160deg, #1a8a5c, #c8f0dc);
}

.project-thumb-4 {
  background-image: linear-gradient(120deg, #06251a, #22a86e);
}

.project-thumb-5 {
  background-image: linear-gradient(200deg, #0f4f38, #9aefc4);
}

.project-thumb-6 {
  background-image: linear-gradient(160deg, #146b4a, #e6f7ef);
}

.project-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.project-body span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.35rem;
}

/* Pricing */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, var(--green-800), var(--green-700));
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.price-card.featured .price-badge {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.price-card .plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.6rem 0 0.8rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.price del {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.price-card.featured .price del {
  color: rgba(255, 255, 255, 0.55);
}

.price strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green-700);
}

.price-card.featured .price strong {
  color: var(--white);
}

.billing {
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.price-card.featured .billing {
  color: rgba(255, 255, 255, 0.75);
}

.price-features {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
  flex: 1;
}

.price-features li {
  position: relative;
  padding-left: 1.4rem;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 800;
}

.price-card.featured .price-features li::before {
  color: var(--green-300);
}

.guarantee {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.guarantee a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guarantee a:hover {
  color: var(--green-600);
}

.price-card.featured .guarantee {
  color: rgba(255, 255, 255, 0.75);
}

.price-card.featured .guarantee a:hover {
  color: var(--white);
}

/* Contact */
.contact-grid {
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.contact-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-details a,
.contact-details span {
  display: block;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--green-700);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: var(--green-50);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 168, 110, 0.15);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 0.9rem;
  font-weight: 600;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--green-700);
}

.form-status.error {
  color: #b42318;
}

.map-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-900);
}

/* CTA band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(125, 217, 173, 0.28), transparent 35%),
    linear-gradient(135deg, var(--green-900), var(--green-600));
  color: var(--white);
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Legal */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: 1.55rem;
  margin: 2rem 0 0.8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  list-style: disc;
}

.legal-content a {
  color: var(--green-700);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--green-600);
}

.legal-meta {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 30rem;
}

.footer-title {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-300);
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.payment-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-right: 0.15rem;
}

.footer-payments img {
  height: 34px;
  width: auto;
  border-radius: 6px;
  outline: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

/* Floating Call Button */
.call-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(10, 61, 44, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulseSoft 2.8s ease-in-out infinite;
}

.call-fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(10, 61, 44, 0.42);
}

.call-fab-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

/* Reveal animations — only hide when JS is active */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(-36%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(-42%) scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 14px 35px rgba(10, 61, 44, 0.35);
  }
  50% {
    box-shadow: 0 14px 35px rgba(10, 61, 44, 0.35), 0 0 0 12px rgba(34, 168, 110, 0.12);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-visual-panel {
    display: none;
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

  .stats,
  .benefits-grid,
  .services-grid,
  .projects-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 78px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(248, 252, 250, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    color: var(--text) !important;
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    background: var(--green-700) !important;
    color: var(--white) !important;
    text-align: center;
    margin-left: 0 !important;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1140px, calc(100% - 1.5rem));
  }

  body {
    padding-bottom: 5.5rem;
  }

  section {
    padding: 4rem 0;
  }

  .logo span:last-child {
    font-size: 0.95rem;
    max-width: 11.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .stats,
  .benefits-grid,
  .services-grid,
  .projects-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 8.5rem 0 3.5rem;
  }

  .legal-content {
    padding: 1.35rem;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .call-fab {
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem 1.05rem;
  }

  .call-fab-text {
    font-size: 0.92rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .about-panel {
    min-height: 280px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}

@media (max-width: 400px) {
  .call-fab-text {
    display: none;
  }

  .call-fab {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}
