:root {
  --font-base: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;
  --color-bg: #050608;
  --color-bg-alt: #0c1116;
  --color-grid: rgba(30, 160, 90, 0.1);
  --color-ink: #f6fff4;
  --color-ink-soft: #c4f5d9;
  --color-muted: #7cc49a;
  --color-accent: #3dff82;
  --color-accent-strong: #00d46b;
  --color-accent-soft: rgba(61, 255, 130, 0.16);
  --color-accent-dark: #0d1f14;
  --color-outline: rgba(61, 255, 130, 0.22);
  --shadow-fold: 0 36px 90px rgba(8, 154, 74, 0.28);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 36px 80px rgba(0, 255, 145, 0.38);
  --max-width: 1140px;
  --fold-padding: clamp(3rem, 6vw, 4.6rem);
  --fold-ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-ink);
  background: radial-gradient(circle at 20% 20%, rgba(61, 255, 130, 0.08) 0, transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(0, 255, 170, 0.12) 0, transparent 60%),
    radial-gradient(circle at 50% 110%, rgba(20, 70, 40, 0.35) 0, rgba(5, 7, 12, 0.95) 55%),
    var(--color-bg);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image: linear-gradient(135deg, rgba(0, 255, 140, 0.12) 0%, rgba(61, 255, 130, 0.03) 40%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.8;
  mix-blend-mode: screen;
}

body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(61,255,130,0.09)' stroke-width='0.5'%3E%3Cpath d='M0 50 L50 0 L100 50 L50 100 Z'/%3E%3Cpath d='M25 50 L50 25 L75 50 L50 75 Z'/%3E%3Cpath d='M0 0 L100 100 M0 100 L100 0' stroke-dasharray='8 10'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.55;
  background-size: 220px;
  mix-blend-mode: overlay;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-ink);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1.1rem;
  color: var(--color-ink-soft);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--color-ink);
  text-shadow: 0 0 18px rgba(0, 255, 166, 0.18);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(61, 255, 130, 0.68);
  margin-bottom: 1rem;
}

.eyebrow--center {
  text-align: center;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-ink-soft);
  max-width: 42rem;
  text-shadow: 0 0 12px rgba(0, 255, 166, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--fold-ease), box-shadow 0.3s var(--fold-ease), background 0.3s var(--fold-ease);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(61, 255, 130, 0.9) 0%, rgba(0, 255, 157, 0.82) 100%);
  color: #051208;
  box-shadow: 0 22px 48px rgba(0, 255, 157, 0.36);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(0, 255, 157, 0.42);
}

.btn-secondary {
  background: rgba(61, 255, 130, 0.14);
  color: var(--color-ink-soft);
  border: 1px solid rgba(61, 255, 130, 0.28);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(61, 255, 130, 0.22);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(61, 255, 130, 0.35);
  color: var(--color-ink);
}

.btn-outline:hover {
  background: rgba(61, 255, 130, 0.16);
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(135deg, rgba(10, 20, 16, 0.9), rgba(8, 26, 18, 0.65));
  border-bottom: 1px solid rgba(61, 255, 130, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-ink);
  letter-spacing: 0.04em;
}

.nav {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: rgba(197, 255, 222, 0.72);
}

.nav-list a {
  display: inline-flex;
  padding: 0.35rem 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(6, 22, 15, 0.8);
  border: 1px solid rgba(61, 255, 130, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 255, 166, 0.22);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-list.is-open {
  display: flex;
}

.theme-origami main {
  position: relative;
  perspective: 2200px;
  transform-style: preserve-3d;
}

.fold {
  position: relative;
  padding: clamp(5rem, 9vw, 7rem) 0;
  --fold-tilt: 0deg;
  --fold-rotation: 0deg;
  --fold-shift: 0px;
  --fold-scale: 1;
  --fold-progress: 0;
  --fold-depth: 0.6;
  --fold-z: 0px;
  z-index: 1;
  transition: z-index 0.4s ease;
}

.fold + .fold {
  margin-top: clamp(-6.5rem, -10vw, -4.2rem);
}

.fold__background {
  position: absolute;
  inset: -12% -14%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fold__layer {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  mix-blend-mode: multiply;
  --fold-transform: scale(1.05);
  transform: var(--fold-transform);
  animation: foldFloat 24s ease-in-out infinite;
}

.fold__layer:nth-child(2) {
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}

.fold__layer--primary {
  --fold-transform: rotate(6deg) scale(1.2);
  background: linear-gradient(135deg, rgba(16, 120, 68, 0.45), rgba(0, 0, 0, 0.08));
  clip-path: polygon(0 8%, 85% 0, 100% 60%, 18% 100%);
}

.fold__layer--accent {
  --fold-transform: rotate(-4deg) scale(1.15);
  background: linear-gradient(140deg, rgba(0, 255, 166, 0.18), rgba(10, 40, 26, 0.35));
  clip-path: polygon(15% 0, 100% 16%, 84% 100%, 0 82%);
}

.fold__layer--warm {
  --fold-transform: rotate(2deg) scale(1.12);
  background: linear-gradient(150deg, rgba(0, 45, 28, 0.5), rgba(61, 255, 130, 0.12));
  clip-path: polygon(0 20%, 80% 0, 100% 80%, 20% 100%);
}

.fold__surface {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: calc(var(--max-width) + var(--fold-padding) * 2);
  padding: var(--fold-padding) clamp(1.8rem, 4vw, 3.2rem);
  background: linear-gradient(140deg, rgba(10, 23, 18, 0.95), rgba(3, 37, 21, 0.82));
  border: 1px solid rgba(61, 255, 130, 0.22);
  box-shadow: 0 calc(28px * var(--fold-depth)) calc(68px * var(--fold-depth)) rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 14%, 100% 0, 95% 100%, 6% 100%);
  backdrop-filter: blur(32px);
  transform-style: preserve-3d;
  transform: perspective(2000px) translate3d(0, var(--fold-shift), var(--fold-z)) rotateX(var(--fold-tilt)) rotateY(var(--fold-rotation)) scale(var(--fold-scale));
  transition: transform 0.95s var(--fold-ease), clip-path 0.95s var(--fold-ease), box-shadow 0.95s var(--fold-ease), filter 0.65s ease;
}

.fold__surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 255, 130, 0.15), rgba(61, 255, 130, 0));
  mix-blend-mode: lighten;
  opacity: 0.65;
  pointer-events: none;
  clip-path: inherit;
}

.fold__surface::after {
  content: '';
  position: absolute;
  inset: 4% 5% 6% 6%;
  border: 1px solid rgba(61, 255, 130, 0.35);
  border-radius: 18px;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.9s var(--fold-ease), transform 0.9s var(--fold-ease);
  transform: translate3d(0, 0, 12px) scale(0.94);
}

.fold.fold--open .fold__surface {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 96%);
  box-shadow: 0 calc(36px * var(--fold-depth)) calc(90px * var(--fold-depth)) rgba(0, 0, 0, 0.7);
}

.fold.fold--open .fold__surface::after {
  opacity: 0.72;
  transform: translate3d(0, 0, 0) scale(1);
}

.fold.fold--static .fold__surface {
  transform: none !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

.fold--active .fold__surface {
  filter: saturate(1.05) brightness(1.05);
}

.fold--previous .fold__surface {
  filter: saturate(1.05) brightness(1.04);
}

.fold--next .fold__surface {
  filter: saturate(0.78) brightness(0.92);
}

.fold--previous .fold__surface::after {
  opacity: 0.48;
}

.fold--next .fold__surface::after {
  opacity: 0.22;
}

.fold--hero .fold__surface {
  background: linear-gradient(145deg, rgba(12, 32, 21, 0.96), rgba(4, 52, 28, 0.82));
  padding: clamp(3.2rem, 7vw, 4.8rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-origami {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.hero-origami__layer {
  position: absolute;
  inset: 10% 4%;
  border-radius: 24px;
  mix-blend-mode: multiply;
  z-index: 0;
}

.hero-origami__layer--outer {
  background: linear-gradient(130deg, rgba(0, 255, 166, 0.22), rgba(0, 60, 36, 0.18));
  transform: rotate(-4deg);
}

.hero-origami__layer--inner {
  background: linear-gradient(135deg, rgba(0, 120, 72, 0.22), rgba(0, 255, 166, 0.12));
  transform: rotate(3deg);
}

.hero-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  z-index: 1;
}

.hero-card img {
  height: clamp(280px, 30vw, 360px);
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(3, 18, 12, 0) 0%, rgba(3, 18, 12, 0.92) 100%);
  color: var(--color-ink);
}

.hero-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-card-text {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: start;
}

.highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.about-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.2rem, 4vw, 1.8rem);
}

.about-card {
  padding: 1.8rem;
  background: rgba(6, 22, 15, 0.92);
  border: 1px solid rgba(61, 255, 130, 0.16);
  clip-path: polygon(0 6%, 100% 0, 93% 100%, 8% 96%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
  transition: transform 0.45s var(--fold-ease), box-shadow 0.45s var(--fold-ease);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.icon-circle {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(61, 255, 130, 0.12);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.icon-circle svg {
  width: 1.6rem;
  height: 1.6rem;
}

.fold--services .fold__surface {
  background: linear-gradient(140deg, rgba(8, 28, 18, 0.94), rgba(3, 36, 21, 0.82));
}

.fold--services header,
.fold--plans header {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto clamp(3rem, 6vw, 4rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
}

.service-card {
  padding: 1.8rem;
  background: rgba(8, 26, 18, 0.92);
  border: 1px solid rgba(61, 255, 130, 0.15);
  clip-path: polygon(0 12%, 100% 0, 92% 100%, 6% 100%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
  transition: transform 0.4s var(--fold-ease), box-shadow 0.4s var(--fold-ease);
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow-hover);
}

.plans-intro {
  text-align: center;
  color: var(--color-muted);
  max-width: 48rem;
  margin: 0 auto clamp(2.5rem, 6vw, 3rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.plan-card {
  position: relative;
  background: rgba(8, 24, 17, 0.94);
  border: 1px solid rgba(61, 255, 130, 0.2);
  padding: 2.4rem 2rem;
  clip-path: polygon(0 12%, 100% 0, 96% 100%, 4% 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.plan-card__header h3 {
  margin-bottom: 0.4rem;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0;
}

.plan-price span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.plan-benefits {
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
  padding: 0;
}

.plan-card--featured {
  background: linear-gradient(135deg, rgba(16, 80, 48, 0.85), rgba(6, 40, 24, 0.95));
  border: 1px solid rgba(61, 255, 130, 0.38);
  box-shadow: 0 32px 70px rgba(0, 255, 166, 0.28);
  transform: translateY(-8px);
}

.plan-badge {
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(61, 255, 130, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.highlights-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.2rem, 6vw, 3.2rem);
  align-items: start;
}

.highlights-intro p {
  color: var(--color-muted);
  margin-top: 1rem;
}

.highlights-list {
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.6rem);
}

.highlight-card {
  padding: 1.8rem;
  background: rgba(7, 24, 17, 0.94);
  border: 1px solid rgba(61, 255, 130, 0.16);
  clip-path: polygon(0 15%, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
  transition: transform 0.4s var(--fold-ease), box-shadow 0.4s var(--fold-ease);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.highlight-card p {
  color: var(--color-muted);
  margin: 0;
}

.fold--savings .fold__surface {
  background: linear-gradient(140deg, rgba(9, 24, 17, 0.94), rgba(3, 30, 20, 0.82));
}

.savings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2.2rem, 6vw, 3.2rem);
  align-items: center;
}

.savings-list {
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
  padding: 0;
}

.savings-chart {
  display: grid;
  gap: 1.6rem;
}

.bar {
  height: 170px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bar--standard {
  background: linear-gradient(160deg, rgba(0, 255, 157, 0.85), rgba(0, 150, 90, 0.88));
}

.bar--premium {
  background: linear-gradient(160deg, rgba(12, 42, 32, 0.85), rgba(6, 20, 14, 0.95));
  height: 120px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 3rem);
}

.faq-list {
  display: grid;
  gap: 1.4rem;
  margin: 0;
}

.faq-item {
  padding: 1.6rem;
  background: rgba(7, 22, 15, 0.95);
  border: 1px solid rgba(61, 255, 130, 0.16);
  clip-path: polygon(0 14%, 100% 0, 95% 100%, 6% 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  transition: transform 0.4s var(--fold-ease), box-shadow 0.4s var(--fold-ease);
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.faq-item dt {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.faq-item dd {
  margin: 0;
  color: var(--color-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.2rem, 5vw, 3rem);
}

.contact-content p {
  color: var(--color-muted);
}

.contact-details {
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
  padding: 0;
}

.contact-details a {
  font-weight: 600;
  color: var(--color-accent);
}

.contact-form {
  background: rgba(6, 20, 14, 0.95);
  border: 1px solid rgba(61, 255, 130, 0.18);
  clip-path: polygon(0 10%, 100% 0, 92% 100%, 6% 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(22px);
  padding: clamp(2.2rem, 5vw, 3rem);
  display: grid;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group label {
  font-weight: 600;
  color: var(--color-ink);
}

.form-group input,
.form-group textarea {
  border-radius: 14px;
  border: 1px solid rgba(61, 255, 130, 0.18);
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--color-ink);
  background: rgba(3, 18, 12, 0.92);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(61, 255, 130, 0.6);
  box-shadow: 0 0 0 4px rgba(61, 255, 130, 0.2);
}

.form-feedback {
  min-height: 1.3rem;
  margin: -0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.form-feedback.is-success {
  color: #1f8a4d;
}

.form-feedback.is-error {
  color: #c0392b;
}

.form-feedback.is-info {
  color: var(--color-accent);
}

.site-footer {
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 3rem;
  background: linear-gradient(160deg, rgba(3, 14, 9, 0.96), rgba(2, 8, 6, 0.94));
  color: rgba(224, 255, 233, 0.85);
  margin-top: clamp(4rem, 8vw, 6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.8rem, 5vw, 2.5rem);
}

.footer-logo {
  color: #fff;
  font-size: 1.5rem;
  display: inline-flex;
  margin-bottom: 0.8rem;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: rgba(198, 255, 222, 0.72);
}

.footer-copy {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 0.9rem;
  color: rgba(164, 255, 209, 0.55);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(61, 255, 130, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  background: rgba(61, 255, 130, 0.22);
  box-shadow: 0 12px 24px rgba(0, 255, 170, 0.25);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 150;
}

.floating-actions__btn {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  color: #04140a;
  box-shadow: 0 20px 46px rgba(0, 255, 170, 0.3);
  transition: transform 0.3s var(--fold-ease), box-shadow 0.3s var(--fold-ease);
}

.floating-actions__btn--call {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.95) 0%, rgba(0, 180, 102, 0.9) 100%);
}

.floating-actions__btn--whatsapp {
  background: linear-gradient(135deg, rgba(0, 210, 120, 0.92) 0%, rgba(0, 255, 166, 0.95) 100%);
}

.floating-actions__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 62px rgba(0, 255, 170, 0.38);
}

.floating-actions__btn svg {
  width: 1.6rem;
  height: 1.6rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s var(--fold-ease), transform 0.8s var(--fold-ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes foldFloat {
  0% {
    transform: var(--fold-transform) translateY(0);
  }
  50% {
    transform: var(--fold-transform) translateY(12px);
  }
  100% {
    transform: var(--fold-transform) translateY(0);
  }
}

@media (max-width: 1120px) {
  .fold__background {
    inset: -16% -22%;
  }
}

@media (max-width: 980px) {
  .nav-list {
    position: absolute;
    top: 120%;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(6, 20, 14, 0.96);
    border: 1px solid rgba(61, 255, 130, 0.18);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
    width: min(270px, calc(100vw - 2.5rem));
    display: none;
    gap: 0.9rem;
  }

  .nav-list a {
    padding: 0.4rem 0.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner .btn {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .savings-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fold__surface {
    padding: clamp(2.6rem, 7vw, 3rem) clamp(1.2rem, 5vw, 2rem);
  }

  .fold__background {
    inset: -18% -26%;
  }

  .hero-origami {
    padding: clamp(1rem, 4vw, 2rem);
  }

  .hero-card img {
    height: clamp(260px, 45vw, 340px);
  }

  .floating-actions {
    right: 1rem;
    bottom: 5rem;
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.7;
  }

  .fold {
    padding: clamp(3.8rem, 12vw, 5rem) 0;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 8vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-icons {
    grid-template-columns: minmax(0, 1fr);
  }

  .plans-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    gap: 2rem;
  }

  .contact-form {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    padding: clamp(1.8rem, 6vw, 2.4rem);
  }

  .floating-actions__btn {
    width: 3.4rem;
    height: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fold {
    --fold-tilt: 0deg;
    --fold-shift: 0px;
  }

  .fold__surface,
  [data-animate] {
    transform: none !important;
  }
}
