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

:root {
  --primary: #5faf9a;
  --primary-dark: #3e8f7a;
  --primary-light: #e8f5f1;
  --secondary: #6fa8dc;
  --bg: #f7f9f8;
  --bg-white: #ffffff;
  --text: #2d2d2d;
  --text-muted: #5c616d;
  --text-light: #6f7682;
  --section-dark-bg: #2d2d2d;
  --chip-bg: var(--primary-light);
  --chip-text: var(--primary-dark);
  --chip-border: rgba(95, 175, 154, 0.3);
  --check-badge-bg: var(--primary-light);
  --check-badge-color: var(--primary-dark);
  --btn-secondary-bg: #ffffff;
  --btn-secondary-color: var(--text);
  --btn-secondary-border: var(--border-light);
  --btn-secondary-hover-bg: var(--primary-light);
  --btn-secondary-hover-color: var(--primary-dark);
  --nav-bg: rgba(247, 249, 248, 0.85);
  --nav-bg-scrolled: rgba(247, 249, 248, 0.97);
  --nav-shadow-scrolled: 0 1px 20px rgba(0, 0, 0, 0.06);
  --border: rgba(95, 175, 154, 0.15);
  --border-light: rgba(45, 45, 45, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg: #121722;
  --bg-white: #1b2230;
  --text: #e7ecf5;
  --text-muted: #c2cad8;
  --text-light: #a0abbe;
  --primary-light: #1b3a32;
  --section-dark-bg: #0e131d;
  --chip-bg: #1f4a40;
  --chip-text: #9fe6d4;
  --chip-border: rgba(132, 225, 199, 0.38);
  --check-badge-bg: #2a5b4f;
  --check-badge-color: #bff7e8;
  --btn-secondary-bg: #273349;
  --btn-secondary-color: #e7ecf5;
  --btn-secondary-border: rgba(255, 255, 255, 0.24);
  --btn-secondary-hover-bg: #32415c;
  --btn-secondary-hover-color: #ffffff;
  --nav-bg: rgba(18, 23, 34, 0.88);
  --nav-bg-scrolled: rgba(18, 23, 34, 0.97);
  --nav-shadow-scrolled: 0 1px 24px rgba(0, 0, 0, 0.45);
  --border: rgba(95, 175, 154, 0.28);
  --border-light: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 24px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1215px;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

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

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(62, 143, 122, 0.3);
}

.nav-cta:hover {
  background: #35786a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(62, 143, 122, 0.4);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
}

.theme-icon {
  font-size: 17px;
  line-height: 1;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
}

section {
  padding: 96px 24px;
  overflow: hidden;
}

.container {
  max-width: 1215px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chip-text);
  background: var(--chip-bg);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  color: var(--text);
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dark);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(62, 143, 122, 0.35);
}

.btn-primary:hover {
  background: #35786a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 143, 122, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;

  gap: 8px;
  background: transparent;
  color: var(--btn-secondary-color);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--btn-secondary-border);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
  background: var(--btn-secondary-bg);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--btn-secondary-hover-color);
  background: var(--btn-secondary-hover-bg);
}

#hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--chip-text);
  background: var(--chip-bg);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--chip-border);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary-dark);
}

.hero-sub {
  font-size: 17px;
  line-height: 150%;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.hero-benefits li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--check-badge-bg);
  color: var(--check-badge-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-light);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-desktop {
  position: relative;
  width: 88%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mockup-bar {
  height: 28px;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-dot.r {
  background: #ff6058;
}

.mockup-dot.y {
  background: #febc2e;
}

.mockup-dot.g {
  background: #28c840;
}

.mockup-url {
  flex: 1;
  background: #e5e7eb;
  border-radius: 4px;
  height: 16px;
  margin-left: 8px;
}

.mockup-content {
  padding: 0;
  position: relative;
}

.mockup-photo-desktop {
  width: 100%;
  object-fit: cover;
  display: block;
}

.mockup-photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(45, 45, 45, 0.72);
  border-radius: 100px;
  padding: 8px 14px;
}

.site-hero-mock {
  background: linear-gradient(135deg, #e8f5f1 0%, #f0f8f5 100%);
  padding: 24px 20px 20px;
  text-align: center;
}

.mock-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-logo svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.mock-h1 {
  height: 10px;
  background: var(--text);
  border-radius: 3px;
  width: 70%;
  margin: 0 auto 6px;
}

.mock-h2 {
  height: 7px;
  background: var(--text-light);
  border-radius: 3px;
  width: 55%;
  margin: 0 auto 12px;
}

.mock-cta {
  height: 28px;
  background: var(--primary-dark);
  border-radius: 14px;
  width: 120px;
  margin: 0 auto;
}

.site-about-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.mock-photo {
  background: var(--primary-light);
  border-radius: 8px;
  height: 80px;
}

.mock-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.mock-line {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
}

.mock-line:nth-child(1) {
  width: 80%;
}

.mock-line:nth-child(2) {
  width: 95%;
}

.mock-line:nth-child(3) {
  width: 70%;
}

.mock-line:nth-child(4) {
  width: 85%;
}

.site-cards-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px 16px;
}

.mock-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mock-card-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--primary-light);
  margin-bottom: 6px;
}

.mock-card-l1 {
  height: 6px;
  background: var(--text);
  border-radius: 3px;
  width: 80%;
  margin-bottom: 4px;
}

.mock-card-l2 {
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  width: 100%;
}

.mock-card-l3 {
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  width: 70%;
  margin-top: 3px;
}

.mockup-mobile {
  position: absolute;
  bottom: -16px;
  right: -24px;
  width: 28%;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mobile-notch {
  height: 24px;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-notch-pill {
  width: 48px;
  height: 6px;
  background: #d1d5db;
  border-radius: 3px;
}

.mobile-content {
  padding: 0;
}

.mockup-photo-mobile {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.mobile-img {
  height: 60px;
  background: linear-gradient(135deg, #e8f5f1, #d1efe8);
  border-radius: 8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-img svg {
  width: 24px;
  height: 24px;
}

.mobile-l {
  height: 5px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.mobile-btn {
  height: 24px;
  background: var(--primary-dark);
  border-radius: 12px;
  margin-top: 8px;
}

.mobile-nav-bottom {
  height: 36px;
  background: #f9fafb;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 12px;
}

.mobile-nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.mobile-nav-sq {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  top: 60px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(95, 175, 154, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-blob-2 {
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(111, 168, 220, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-05 {
  transition-delay: 0.05s;
}

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

.delay-15 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-25 {
  transition-delay: 0.25s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

#stats {
  padding: 32px 24px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  /* flex-wrap: wrap; */
}

.stat-item {
  padding: 16px 48px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 17px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 130%;
}

#problem {
  background: var(--bg);
  overflow: hidden;
}

.problem-grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.problem-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.problem-visual img {
  object-fit: contain;
  width: 400px;
  height: 640px;
  animation: float-soft 5.5s ease-in-out infinite;
  will-change: transform;
}

.problem-text-main {
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 16px;
}

.problem-text-secondary {
  font-size: 16px;
}

.problem-cta-wrapper {
  margin-top: 24px;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-visual img {
    animation: none;
  }
}

.problem-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #fef3f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.problem-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
}

.problem-float {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.problem-float.top {
  top: -20px;
  right: -20px;
}

.problem-float.bottom {
  bottom: -20px;
  left: -20px;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.float-sub {
  font-size: 12px;
  color: var(--text-light);
}

#opportunity {
  background: var(--bg-white);
}

.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.opp-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opp-text {
  margin-top: 20px;
  font-size: 16px;
}

.opp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.opp-list li:hover {
  border-color: rgba(95, 175, 154, 0.4);
  box-shadow: 0 4px 12px rgba(95, 175, 154, 0.1);
}

.opp-list li .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opp-list li .icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.opp-visual {
  width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.opp-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-preview {
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.sp-header {
  background: var(--primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-nav-links {
  display: flex;
  gap: 12px;
}

.sp-nav-link {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.sp-hero-area {
  padding: 24px;
  background: linear-gradient(180deg, #e8f5f1 0%, #fff 100%);
  text-align: center;
}

.sp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  margin: 0 auto 12px;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sp-name {
  height: 8px;
  background: var(--text);
  border-radius: 3px;
  width: 50%;
  margin: 0 auto 6px;
}

.sp-title {
  height: 6px;
  background: var(--text-light);
  border-radius: 3px;
  width: 70%;
  margin: 0 auto 14px;
}

.sp-btn {
  height: 28px;
  background: var(--primary-dark);
  border-radius: 14px;
  width: 110px;
  margin: 0 auto;
}

.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
}

.sp-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-card-top {
  height: 5px;
  background: var(--primary-light);
  border-radius: 3px;
  width: 60%;
  margin-bottom: 6px;
}

.sp-card-l {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin-bottom: 3px;
}

.sp-footer {
  height: 32px;
  background: var(--primary);
}

#benefits {
  background: var(--bg);
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95, 175, 154, 0.3);
}

.benefit-card:last-child:nth-child(3n-1) {
  grid-column: 2;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.65;
}

#features {
  background: var(--section-dark-bg);
}

#features h2 {
  color: white;
}

#features p {
  color: rgba(255, 255, 255, 0.6);
}

.features-intro-text {
  margin-top: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: default;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(95, 175, 154, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-check svg {
  width: 12px;
  height: 12px;
}

.features-mockup {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fm-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.fm-tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.fm-tag.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.fm-section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fm-section-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fm-l {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
}

.fm-w-70 {
  width: 70%;
}

.fm-w-80 {
  width: 80%;
}

.fm-w-85 {
  width: 85%;
}

.fm-w-90 {
  width: 90%;
}

.fm-w-95 {
  width: 95%;
}

.fm-w-100 {
  width: 100%;
}

.fm-btn {
  height: 32px;
  background: var(--primary-dark);
  border-radius: 16px;
  width: 120px;
  margin-top: 12px;
}

.fm-specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fm-specialty-card {
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fm-specialty-card.is-active {
  background: rgba(95, 175, 154, 0.15);
  border-color: rgba(95, 175, 154, 0.25);
}

.fm-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(95, 175, 154, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(95, 175, 154, 0.2);
}

.fm-note-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(95, 175, 154, 0.3);
  flex-shrink: 0;
}

.fm-note-content {
  flex: 1;
}

.fm-note-line {
  border-radius: 3px;
}

.fm-note-line-70 {
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  width: 70%;
  margin-bottom: 4px;
}

.fm-note-line-50 {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  width: 50%;
}

.fm-note-btn {
  height: 22px;
  background: var(--primary-dark);
  border-radius: 11px;
  width: 70px;
  flex-shrink: 0;
}

#portfolio {
  background: var(--bg-white);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 64px;
}

.portfolio-intro-text {
  margin-top: 16px;
  font-size: 17px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-showcase-swiper {
  overflow: hidden;
}

.portfolio-layout-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  cursor: zoom-in;
}

.portfolio-layout-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.portfolio-layout-frame {
  --frame-height: 420px;
  height: var(--frame-height);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #f3f4f6;
  position: relative;
}

.portfolio-zoom-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.portfolio-layout-card:hover .portfolio-zoom-badge {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-zoom-badge svg {
  width: 16px;
  height: 16px;
}

.portfolio-layout-frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 8s linear;
  will-change: transform;
}

.portfolio-layout-card:hover .portfolio-layout-frame img {
  transform: translateY(calc(-100% + var(--frame-height)));
}

.portfolio-layout-info {
  padding: 14px 4px 6px;
}

.portfolio-layout-info h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}

.portfolio-layout-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.portfolio-showcase-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.portfolio-showcase-nav {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.portfolio-showcase-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-showcase-pagination .swiper-pagination-bullet {
  background: rgba(95, 175, 154, 0.35);
  opacity: 1;
}

.portfolio-showcase-pagination .swiper-pagination-bullet-active {
  background: var(--primary-dark);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.portfolio-lightbox.is-open .portfolio-lightbox-backdrop {
  opacity: 1;
}

.portfolio-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 94vw);
  max-height: 90vh;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.portfolio-lightbox.is-open .portfolio-lightbox-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.portfolio-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.portfolio-lightbox-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-layout-frame img {
    transition: none;
    transform: none;
  }
  .portfolio-lightbox,
  .portfolio-lightbox-backdrop,
  .portfolio-lightbox-dialog {
    transition: none;
  }
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: var(--bg-white);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-screen {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.ps-1 {
  background: linear-gradient(135deg, #e8f5f1 0%, #b8e0d5 100%);
}

.ps-2 {
  background: linear-gradient(135deg, #eef3fb 0%, #c5d8f5 100%);
}

.ps-3 {
  background: linear-gradient(135deg, #f5f0ff 0%, #ddd0f5 100%);
}

.portfolio-screen-inner {
  padding: 20px;
}

.ps-bar {
  height: 32px;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.ps-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.ps-content {
  padding: 24px 20px 20px;
}

.ps-avatar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ps-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ps-av1 {
  background: var(--primary);
}

.ps-av2 {
  background: var(--secondary);
}

.ps-av3 {
  background: #b08ee0;
}

.ps-name-block {
  flex: 1;
}

.ps-nl {
  height: 7px;
  border-radius: 3px;
  width: 80%;
  margin-bottom: 4px;
}

.ps-nb1 {
  background: var(--text);
}

.ps-nb2 {
  background: var(--secondary);
}

.ps-nb3 {
  background: #8e6bbd;
}

.ps-ns {
  height: 5px;
  border-radius: 3px;
  width: 55%;
}

.ps-ns1 {
  background: #d1d5db;
}

.ps-ns2 {
  background: #bdd0ee;
}

.ps-ns3 {
  background: #d8c8ef;
}

.ps-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ps-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.08);
}

.ps-line-blue {
  background: #bdd0ee;
}

.ps-line-purple {
  background: #d8c8ef;
}

.ps-w-68 {
  width: 68%;
}

.ps-w-70 {
  width: 70%;
}

.ps-w-75 {
  width: 75%;
}

.ps-w-80 {
  width: 80%;
}

.ps-w-85 {
  width: 85%;
}

.ps-w-90 {
  width: 90%;
}

.ps-w-92 {
  width: 92%;
}

.ps-w-100 {
  width: 100%;
}

.ps-mock-btn {
  height: 24px;
  border-radius: 12px;
  width: 90px;
  margin-top: 12px;
}

.ps-mock-btn-primary {
  background: var(--primary-dark);
}

.ps-mock-btn-secondary {
  background: var(--secondary);
}

.ps-mock-btn-purple {
  background: #8e6bbd;
}

.portfolio-info {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
}

.portfolio-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--text-muted);
}

#testimonials {
  background: var(--bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-intro-text {
  margin-top: 16px;
  font-size: 17px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-swiper {
  overflow: hidden;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: auto;
}

.testimonial-stars {
  color: #f4b740;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-role {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 6px;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonials-nav {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.testimonials-nav:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.testimonials-nav svg {
  width: 18px;
  height: 18px;
}

.testimonials-pagination {
  position: static;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(95, 175, 154, 0.28);
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary-dark);
}

#process {
  background: var(--bg);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-intro-text {
  margin-top: 16px;
  font-size: 17px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary),
    var(--primary-light)
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary-dark);
  margin: 0 auto 20px;
  box-shadow:
    0 0 0 6px var(--bg),
    var(--shadow-sm);
  transition:
    background 0.2s,
    color 0.2s;
}

.process-step:hover .step-num {
  background: var(--primary);
  color: white;
}

.process-step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}

.process-step p {
  font-size: 16px;
}

#cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a7060 100%);
  padding: 96px 24px;
}

#cta-section h2 {
  color: white;
}

#cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box {
  text-align: center;
}

.cta-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cta-title {
  color: white;
  margin-bottom: 20px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-dark);
  padding: 18px 40px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  background: #f0fbf8;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#cta-section {
  position: relative;
}

#cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-c1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 5%;
}

.cta-c2 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.cta-c3 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 8%;
}

#faq {
  background: var(--bg-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--chip-bg);
}

details[open] .faq-q {
  color: var(--chip-text);
  background: var(--chip-bg);
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-light);
  transition: transform 0.3s;
}

details[open] .faq-q::after {
  transform: rotate(45deg);
  color: var(--chip-text);
}

.faq-a {
  padding: 15px 24px 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

#faq-cta {
  background: var(--bg);
  padding: 80px 24px;
}

.faq-cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-cta-box h2 {
  margin-bottom: 16px;
}

.faq-cta-box p {
  font-size: 18px;
  margin-bottom: 32px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-dark);
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 15px rgba(62, 143, 122, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62, 143, 122, 0.3);
  background: var(--primary);
}

.btn-whatsapp img {
  width: 24px;
  height: 24px;
}

footer {
  background: var(--section-dark-bg);
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 901px) and (max-width: 1025px) {
  .hero-title {
    font-size: 38px;
  }

  #problem h2 {
    font-size: 32px;
  }

  .opp-grid .opp-visual {
    max-width: 500px;
  }

  .opp-grid h2 {
    font-size: 32px;
  }

  .benefits-header h2 {
    font-size: 32px;
  }

  .features-grid h2 {
    font-size: 32px;
  }

  .portfolio-header h2 {
    font-size: 32px;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .process-header h2 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 34px;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq-cta-box h2 {
    font-size: 32px;
  }
}

@media (max-width: 1025px) {
  .nav-links {
    gap: 18px;
  }

  .stat-item .stat-num {
    font-size: 34px;
  }

  .stat-item .stat-label {
    font-size: 16px;
  }

  .problem-grid {
    gap: 38px;
  }

  .problem-visual img {
    height: 550px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .portfolio-zoom-badge {
    opacity: 1;
    transform: translateY(0);
    padding: 6px 12px;
    font-size: 12px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 72px 20px;
  }
  .hero-grid,
  .opp-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-card:last-child:nth-child(3n-1) {
    grid-column: auto;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-layout-frame {
    --frame-height: 360px;
  }
  .testimonials-intro-text {
    max-width: 100%;
    font-size: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .stats-grid {
    flex-wrap: wrap;
  }
  .stat-item {
    border: none;
    /* border-bottom: 1px solid var(--border-light); */
    flex: 1 1 50%;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.35s ease;
  }
  .nav-mobile.is-open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 14px;
  }
  .nav-mobile-links {
    display: grid;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-md);
  }
  .nav-mobile-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 6px;
  }
  .nav-mobile-links a:hover {
    color: var(--text);
  }
  .nav-mobile-cta {
    margin-top: 2px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 100px;
    padding: 10px 14px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(62, 143, 122, 0.24);
  }
  .nav-mobile-cta:hover {
    color: #fff;
    background: #35786a;
  }
  .mockup-mobile {
    right: -12px;
    bottom: -12px;
    width: 30%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-float.top {
    top: -10px;
    right: -10px;
  }
  .problem-float.bottom {
    bottom: -10px;
    left: -10px;
  }

  .opp-visual {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-layout-frame {
    --frame-height: 300px;
  }
  .testimonial-card {
    padding: 22px;
  }
  .testimonials-controls {
    gap: 8px;
  }
  .testimonials-nav {
    width: 36px;
    height: 36px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .stat-item {
    flex: 1 1 100%;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .problem-cta-wrapper a {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .cta-box {
    width: 100%;
    max-width: 100%;
  }

  .cta-box a {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .faq-cta-box a {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .footer-copy {
    text-align: center;
    margin-top: 10px;
    line-height: 140%;
  }

  .problem-visual img {
    height: 450px;
  }

  .opp-visual {
    height: 300px;
  }

  #hero {
    padding-top: 110px;
  }
}

/* FLOATING WIDGETS */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1000;
}

.fab-whatsapp,
.fab-back-top {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  text-decoration: none;
}

.fab-whatsapp {
  background: #25d366 !important;
  animation: pulse-whatsapp 2.5s infinite;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.fab-whatsapp:hover {
  background: #128c7e !important;
  transform: scale(1.1);
}

.fab-whatsapp img {
  width: 32px;
  height: 32px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.fab-back-top {
  background: var(--bg-white);
  color: var(--primary-dark);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.fab-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-back-top:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-4px);
}

.fab-back-top svg {
  width: 24px;
  height: 24px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 600px) {
  .floating-widgets {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .fab-whatsapp,
  .fab-back-top {
    width: 50px;
    height: 50px;
  }
  .fab-whatsapp img {
    width: 28px;
    height: 28px;
  }
}
