:root {
  --c-bg: #F5F7EE;
  --c-bg-soft: #E8EDD8;
  --c-ink: #0F2515;
  --c-ink-soft: #2D4A36;
  --c-muted: #6B7A6E;
  --c-paper: #FFFFFF;

  --c-green: #2D5A3D;
  --c-green-mid: #5B8A5C;
  --c-green-soft: #B8E5A6;
  --c-green-pale: #D9F2C4;
  --c-yellow: #F4D03F;
  --c-yellow-soft: #FFF3A8;
  --c-lime: #C8FF5B;
  --c-olive: #6B7A3A;

  --g-hero: linear-gradient(135deg, #2D5A3D 0%, #6B9A4C 50%, #F4D03F 100%);
  --g-lime: linear-gradient(135deg, #6B9A4C, #C8FF5B);
  --g-yellow: linear-gradient(135deg, #F4D03F, #FFF3A8);
  --g-forest: linear-gradient(135deg, #2D5A3D, #5B8A5C);
  --g-sunshine: linear-gradient(135deg, #F4D03F, #C8FF5B);
  --g-deep: linear-gradient(135deg, #0F2515, #2D5A3D);
  --g-pink: linear-gradient(135deg, #FF8FB1, #FFD3A5);
  --g-purple: linear-gradient(135deg, #A78BFA, #7C3AED);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --glow-green: 0 20px 60px -15px rgba(45, 90, 61, 0.5);
  --glow-lime: 0 20px 60px -15px rgba(200, 255, 91, 0.5);
  --glow-yellow: 0 20px 60px -15px rgba(244, 208, 63, 0.55);
  --shadow-card: 0 2px 4px rgba(15, 37, 21, 0.04), 0 14px 40px -8px rgba(15, 37, 21, 0.12);
  --shadow-3d: 0 30px 60px -20px rgba(15, 37, 21, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

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

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

/* ========== NAV ========== */
nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  max-width: 1280px;
  margin: 16px auto 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 5px 10px 5px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px -10px rgba(15, 37, 21, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--g-hero);
  border-radius: 10px;
  box-shadow: var(--glow-green);
  transform: rotate(-6deg);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.nav-links {
  margin: 5px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(15, 37, 21, 0.04);
  border-radius: 100px;
  padding: 4px;
}

.nav-links a {
  color: var(--c-ink-soft);
  font-weight: 500;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .25s;
}

.nav-links a.active {
  background: white;
  color: var(--c-green);
  box-shadow: 0 2px 8px rgba(15, 37, 21, 0.08);
}

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

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-login {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  border-radius: 100px;
  transition: color .2s;
}
.btn-login:hover { color: var(--c-green); }

/* Nav user avatar + dropdown */
.nav-user-wrap {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 5px;
  border-radius: 100px;
  border: 1.5px solid rgba(15,37,21,0.1);
  background: white;
  transition: border-color .2s, box-shadow .2s;
}
.nav-user-wrap:hover { border-color: var(--c-green); box-shadow: 0 4px 16px rgba(45,90,61,0.1); }
.nav-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(45,90,61,0.2);
  display: block;
  transition: border-color .2s;
}
.nav-avatar-fallback {
  background: var(--g-hero);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 15px;
  font-family: var(--font-display);
}
.nav-user-wrap:hover .nav-avatar { border-color: var(--c-green); }

.nav-user-info { display: flex; flex-direction: column; line-height: 1.2; }
.nav-user-info-name { font-size: 13px; font-weight: 600; color: var(--c-ink); white-space: nowrap; }
.nav-user-info-role { font-size: 11px; color: var(--c-muted); white-space: nowrap; }
.nav-user-chevron { font-size: 11px; color: var(--c-muted); margin-left: 2px; }

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px -8px rgba(15,37,21,0.18), 0 0 0 1px rgba(15,37,21,0.06);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s cubic-bezier(.2,.8,.2,1);
  z-index: 200;
}
.nav-user-wrap:hover .nav-user-dropdown,
.nav-user-wrap:focus-within .nav-user-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-user-name { font-weight: 600; font-size: 13.5px; color: var(--c-ink); }
.nav-user-email { font-size: 12px; color: var(--c-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-user-sep { border: none; border-top: 1px solid rgba(15,37,21,0.07); margin: 10px 0; }
.nav-user-item {
  display: block; width: 100%; text-align: left;
  padding: 8px 10px; border-radius: 10px;
  font-size: 13.5px; color: var(--c-ink-soft);
  text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
  transition: background .15s, color .15s;
}
.nav-user-item:hover { background: rgba(45,90,61,0.07); color: var(--c-green); }
.nav-user-logout { color: #e53e3e; }
.nav-user-logout:hover { background: rgba(229,62,62,0.07); color: #e53e3e; }

.btn-cta {
  padding: 10px 20px;
  background: var(--g-hero);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: var(--glow-green);
  transition: transform .25s;
}

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

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(15, 37, 21, 0.06);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all .25s;
}

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
  position: fixed;
  inset: 12px 12px auto 12px;
  background: white;
  z-index: 200;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 37, 21, 0.18);
  transform: translateY(-20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), opacity .25s;
}

.mobile-drawer.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
}

.mobile-drawer-close {
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(15, 37, 21, 0.07);
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.mobile-nav {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding: 4px 10px;
  gap: 2px;
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  color: var(--c-ink);
  transition: background .15s, color .15s;
}

.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav a.active {
  background: rgba(15, 37, 21, 0.05);
  color: var(--c-green);
}

.mobile-drawer-footer {
  padding: 12px 16px 16px;
}

.mobile-drawer-footer a {
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--g-hero);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--glow-green);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 37, 21, 0.3);
  backdrop-filter: blur(3px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ========== HERO ========== */
.hero {
  padding: 60px 40px 100px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-blob.one {
  top: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: var(--c-green-soft);
  opacity: 0.7;
}

.hero-blob.two {
  top: 10%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--c-yellow);
  opacity: 0.4;
}

.hero-blob.three {
  bottom: -100px;
  left: 30%;
  width: 450px;
  height: 450px;
  background: var(--c-lime);
  opacity: 0.5;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.hero-tag .new-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: var(--g-hero);
  color: white;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  background: var(--g-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(45, 90, 61, 0.25));
  font-weight: 400;
}

.hero h1 .marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero h1 .marker::before {
  content: '';
  position: absolute;
  inset: auto -6px 6px -6px;
  height: 18px;
  background: var(--g-sunshine);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-6deg);
}

.hero-deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--c-ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--g-hero);
  color: white;
  box-shadow: var(--glow-green);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px -15px rgba(45, 90, 61, 0.7);
}

.btn-ghost {
  background: rgba(15, 37, 21, 0.06);
  color: var(--c-ink);
}

.btn-ghost:hover {
  background: rgba(15, 37, 21, 0.12);
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 500;
}

.trust-avatars {
  display: flex;
}

.trust-avatars .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--c-bg);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}

.trust-avatars .av:first-child {
  margin-left: 0;
}

.trust-avatars .av:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200');
}

.trust-avatars .av:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=200');
}

.trust-avatars .av:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200');
}

.trust-avatars .av:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=200');
}

.trust-bar strong {
  color: var(--c-green);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
}

.trust-stars {
  color: var(--c-yellow);
  letter-spacing: 2px;
  font-size: 13px;
}

/* ===== HERO RIGHT: 3D CARD PREVIEW ===== */
.hero-preview {
  position: relative;
  height: 620px;
  perspective: 1400px;
}

.profile-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  margin: -280px 0 0 -170px;
  background: white;
  border-radius: 32px;
  box-shadow: var(--glow-green), 0 40px 80px -20px rgba(15, 37, 21, 0.3);
  overflow: hidden;
  transform: rotate(-4deg);
  animation: float-main 8s ease-in-out infinite;
  z-index: 3;
}

@keyframes float-main {

  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateY(-14px);
  }
}

.pc-cover {
  height: 120px;
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
}

.pc-cover::before,
.pc-cover::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.pc-cover::before {
  top: -30px;
  left: 20%;
  width: 120px;
  height: 120px;
  background: var(--c-yellow);
  opacity: 0.5;
}

.pc-cover::after {
  bottom: -40px;
  right: 15%;
  width: 140px;
  height: 140px;
  background: var(--c-lime);
  opacity: 0.4;
}

.pc-avatar {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid white;
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=300&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px -5px rgba(15, 37, 21, 0.3);
  z-index: 2;
}

.pc-body {
  padding: 60px 24px 26px;
  text-align: center;
}

.pc-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.pc-name em {
  font-style: italic;
  color: var(--c-green);
  font-weight: 400;
}

.pc-title {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.pc-bio {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

.pc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 37, 21, 0.08);
  border-bottom: 1px solid rgba(15, 37, 21, 0.08);
  margin-bottom: 20px;
}

.pc-stat .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--c-green);
  line-height: 1;
}

.pc-stat .l {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 3px;
  font-weight: 600;
}

.pc-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pc-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(15, 37, 21, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-soft);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-mono);
}

.pc-link:nth-child(1) {
  background: var(--g-hero);
  color: white;
}

.pc-link:nth-child(2) {
  background: var(--c-green-pale);
  color: var(--c-green);
}

.pc-link:nth-child(3) {
  background: var(--c-yellow-soft);
  color: var(--c-olive);
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: var(--g-hero);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--glow-green);
}

.mini-card-1 {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 200px;
  background: white;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--glow-yellow);
  animation: float-a 6s ease-in-out infinite;
  z-index: 4;
  transform: rotate(6deg);
}

@keyframes float-a {

  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }

  50% {
    transform: rotate(6deg) translateY(-12px);
  }
}

.mini-card-1 .mc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mini-card-1 .mc-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--g-sunshine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--c-ink);
  box-shadow: var(--glow-yellow);
}

.mini-card-1 .mc-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 700;
}

.mini-card-1 .mc-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--c-green);
}

.mini-card-2 {
  position: absolute;
  bottom: 30px;
  left: -20px;
  width: 180px;
  background: var(--g-deep);
  color: white;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--glow-green);
  animation: float-b 7s ease-in-out infinite;
  z-index: 4;
  transform: rotate(-8deg);
}

@keyframes float-b {

  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }

  50% {
    transform: rotate(-8deg) translateY(-12px);
  }
}

.mini-card-2 .mc-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-card-2 .mc-icon::before {
  content: '';
  position: absolute;
  inset: 8px;
  background-image: linear-gradient(90deg, #0F2515 25%, transparent 25% 50%, #0F2515 50% 75%, transparent 75%), linear-gradient(0deg, #0F2515 25%, transparent 25% 50%, #0F2515 50% 75%, transparent 75%);
  background-size: 8px 8px;
  opacity: 0.85;
}

.mini-card-2 .mc-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow);
  font-weight: 700;
  margin-bottom: 3px;
}

.mini-card-2 .mc-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.stat-chip {
  position: absolute;
  bottom: 90px;
  right: 30px;
  background: white;
  padding: 10px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink);
  z-index: 5;
  animation: float-a 7.5s ease-in-out infinite;
}

.stat-chip .dot {
  width: 8px;
  height: 8px;
  background: var(--g-hero);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.15);
}

.stat-chip strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-green);
  font-weight: 500;
  font-size: 14px;
}

/* ========== SECTION COMMON ========== */
.sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}

.sec-head-center {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  background: var(--g-hero);
  padding: 7px 16px;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: var(--glow-green);
}

.sec-head-center h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.sec-head-center h2 em {
  font-style: italic;
  background: var(--g-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.sec-head-center p {
  font-size: 17px;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

/* ========== LOGO STRIP ========== */
.logos {
  padding: 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(15, 37, 21, 0.1);
  border-bottom: 1px solid rgba(15, 37, 21, 0.1);
}

.logos-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--c-muted);
  opacity: 0.7;
  transition: opacity .2s;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
  color: var(--c-green);
}

.logo-item .mark {
  color: var(--c-green);
}

/* ========== STEPS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: white;
  border-radius: 28px;
  padding: 36px 32px 40px;
  box-shadow: var(--shadow-card);
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--step-grad);
}

.step-card:nth-child(1) {
  --step-grad: var(--g-hero);
  --step-glow: var(--glow-green);
}

.step-card:nth-child(2) {
  --step-grad: var(--g-lime);
  --step-glow: var(--glow-lime);
}

.step-card:nth-child(3) {
  --step-grad: var(--g-sunshine);
  --step-glow: var(--glow-yellow);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(15, 37, 21, 0.18);
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 52px;
  line-height: 0.85;
  background: var(--step-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.step-icon-big {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--step-grad);
  box-shadow: var(--step-glow);
  color: white;
}

.step-card:nth-child(3) .step-icon-big {
  color: var(--c-ink);
}

.step-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.step-card h3 em {
  font-style: italic;
  color: var(--c-green);
}

.step-card p {
  font-size: 15.5px;
  color: var(--c-ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 37, 21, 0.1);
}

.step-meta strong {
  color: var(--c-green);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feat {
  background: white;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}

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

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  color: white;
}

.feat:nth-child(1) .feat-icon {
  background: var(--g-hero);
}

.feat:nth-child(2) .feat-icon {
  background: var(--g-lime);
  color: var(--c-ink);
}

.feat:nth-child(3) .feat-icon {
  background: var(--g-sunshine);
  color: var(--c-ink);
}

.feat:nth-child(4) .feat-icon {
  background: var(--g-forest);
}

.feat:nth-child(5) .feat-icon {
  background: var(--g-deep);
}

.feat:nth-child(6) .feat-icon {
  background: var(--g-purple);
}

.feat:nth-child(7) .feat-icon {
  background: var(--g-pink);
  color: var(--c-ink);
}

.feat:nth-child(8) .feat-icon {
  background: var(--g-sunshine);
  color: var(--c-ink);
}

.feat h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.feat p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-muted);
}

/* ========== TEMPLATES ========== */
.templates-wrap {
  position: relative;
  overflow: hidden;
}

/* New home template card */
.tpl-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 37, 21, 0.08), 0 12px 32px -8px rgba(15, 37, 21, 0.14);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s;
}

.tpl-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px -12px rgba(15, 37, 21, 0.28);
}

.tpl-card-img {
  position: relative;
  aspect-ratio: 8.5/16;
  overflow: hidden;
  background: var(--c-bg-soft);
}

.tpl-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.tpl-card:hover .tpl-card-img img {
  transform: scale(1.04);
}

/* Placeholder khi không có ảnh */
.tpl-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.tpl-ph-1 {
  background: var(--g-hero);
}

.tpl-ph-2 {
  background: var(--g-deep);
}

.tpl-ph-3 {
  background: var(--g-sunshine);
  color: var(--c-ink);
}

.tpl-ph-4 {
  background: var(--g-purple);
}

/* Hover overlay */
.tpl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 37, 21, 0.92) 0%, rgba(15, 37, 21, 0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.tpl-card:hover .tpl-card-overlay {
  opacity: 1;
}

.tpl-card-overlay-inner {
  padding: 20px 16px;
  transform: translateY(8px);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  width: 100%;
}

.tpl-card:hover .tpl-card-overlay-inner {
  transform: translateY(0);
}

.tpl-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tpl-card-meta {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.tpl-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.tpl-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tpl-cta-detail {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}

.tpl-cta-use {
  background: var(--g-sunshine);
  color: var(--c-ink);
  box-shadow: var(--glow-yellow);
  flex: 1;
}

/* Mobile: overlay always visible (no hover on touch) */
@media (max-width: 768px) {
  .tpl-card-overlay {
    opacity: 1;
  }
  .tpl-card-overlay-inner {
    transform: translateY(0);
  }
}

/* FREE badge */
.tpl-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: var(--g-sunshine);
  color: var(--c-ink);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  box-shadow: var(--glow-yellow);
}

.templates-wrap::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--c-green-soft);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}

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

.template-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  cursor: pointer;
  position: relative;
}

.template-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(15, 37, 21, 0.22);
}

.template-preview {
  aspect-ratio: 8.5/16;
  position: relative;
  overflow: hidden;
}

.template-card:nth-child(1) .template-preview {
  background: var(--g-hero);
}

.template-card:nth-child(2) .template-preview {
  background: var(--g-deep);
}

.template-card:nth-child(3) .template-preview {
  background: var(--g-sunshine);
}

.template-card:nth-child(4) .template-preview {
  background: var(--g-pink);
}

.template-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3));
}

.template-mock {
  position: absolute;
  inset: 20px;
  background: white;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.template-mock .tm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.template-card:nth-child(1) .tm-avatar {
  background: var(--g-sunshine);
}

.template-card:nth-child(2) .tm-avatar {
  background: var(--g-lime);
}

.template-card:nth-child(3) .tm-avatar {
  background: var(--g-hero);
}

.template-card:nth-child(4) .tm-avatar {
  background: var(--g-purple);
}

.template-mock .tm-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
  color: var(--c-ink);
}

.template-mock .tm-title {
  font-size: 8.5px;
  color: var(--c-muted);
  margin-bottom: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.template-mock .tm-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.template-mock .tm-line {
  height: 4px;
  background: rgba(15, 37, 21, 0.08);
  border-radius: 2px;
}

.template-mock .tm-line:nth-child(1) {
  width: 100%;
}

.template-mock .tm-line:nth-child(2) {
  width: 80%;
  margin: 0 auto;
}

.template-mock .tm-line:nth-child(3) {
  width: 60%;
  margin: 0 auto;
}

.template-mock .tm-btn {
  margin-top: auto;
  width: 100%;
  padding: 6px;
  background: var(--c-ink);
  color: white;
  border-radius: 6px;
  font-size: 8.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.template-card:nth-child(1) .tm-btn {
  background: var(--c-green);
}

.template-card:nth-child(3) .tm-btn {
  background: var(--c-olive);
}

.template-card:nth-child(4) .tm-btn {
  background: var(--g-purple);
}

.template-info {
  padding: 14px 16px 16px;
}

.template-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 3px;
}

.template-info h4 em {
  font-style: italic;
  color: var(--c-green);
}

.template-meta {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  font-weight: 600;
  margin-top: 4px;
}

.tpl-badge {
  background: var(--g-hero);
  color: white;
  padding: 5px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--glow-green);
}

.tpl-badge.free {
  background: var(--g-sunshine);
  color: var(--c-ink);
  box-shadow: var(--glow-yellow);
}

.template-preview .tpl-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}

.tpl-stats {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.tpl-stats span {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 100px;
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ========== STATS PANEL ========== */
.stats-panel {
  background: var(--g-hero);
  color: white;
  border-radius: 40px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}

.stats-panel::before,
.stats-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.stats-panel::before {
  top: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: var(--c-yellow);
  opacity: 0.4;
}

.stats-panel::after {
  bottom: -80px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: var(--c-lime);
  opacity: 0.35;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stats-inner .s-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 16px;
  font-weight: 600;
}

.stats-inner h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
}

.stats-inner h3 em {
  font-style: italic;
  color: var(--c-yellow);
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 28px 20px;
}

.stat-box .b {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-box .b .unit {
  font-size: 40%;
  color: white;
  margin-left: 4px;
  font-style: normal;
  opacity: 0.85;
}

.stat-box .lb {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.testi-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.testi-grid-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.testi {
  background: white;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.testi.big {
  padding: 48px 44px;
}

.testi::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 140px;
  line-height: 1;
  color: var(--c-yellow);
  opacity: 0.35;
  font-weight: 400;
}

.testi.big::before {
  font-size: 180px;
  top: 0;
}

.testi .stars {
  color: var(--c-yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.testi blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.testi.big blockquote {
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 28px;
}

.testi blockquote em {
  background: var(--g-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  font-style: italic;
}

.testi-who {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.testi-who .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(15, 37, 21, 0.15);
}

.testi-who .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.testi-who .role {
  font-size: 12.5px;
  color: var(--c-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* ========== PRICING PREVIEW ========== */
.pricing-preview {
  background: white;
  border-radius: 40px;
  padding: 60px 48px;
  box-shadow: var(--shadow-3d);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pricing-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--g-hero);
}

.pp-left .pp-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  background: var(--g-hero);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
  box-shadow: var(--glow-green);
}

.pp-left h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.pp-left h3 em {
  font-style: italic;
  background: var(--g-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.pp-left p {
  font-size: 16px;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pp-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.pp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--c-ink);
  font-weight: 500;
}

.pp-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--g-hero);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: var(--glow-green);
}

.pp-right {
  background: var(--c-bg);
  border: 1px solid rgba(15, 37, 21, 0.1);
  border-radius: 28px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
}

.pp-right .free-tag {
  display: inline-block;
  background: var(--g-sunshine);
  color: var(--c-ink);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: var(--glow-yellow);
}

.pp-right .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
  background: var(--g-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.pp-right .price-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  font-weight: 500;
}

.pp-right p {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin-bottom: 22px;
}

/* ========== TEMPLATES PAGE ========== */
.tpl-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 40px 56px;
  text-align: center;
}

.tpl-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.tpl-hero-blob.one {
  top: -112px;
  left: 0px;
  width: 380px;
  height: 380px;
  background: var(--c-green-soft);
  opacity: 0.55;
}

.tpl-hero-blob.two { 
  bottom: 84px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: var(--c-yellow);
  opacity: 0.3;
}

.tpl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.tpl-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.tpl-hero-title em {
  font-style: italic;
  background: var(--g-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.tpl-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--c-ink-soft);
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
}

/* Filter bar */
.tpl-filter-bar {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(245, 247, 238, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 37, 21, 0.07);
  padding: 14px 40px;
}

.tpl-filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Row 1 */
.tpl-filter-row1 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 2px 12px rgba(15, 37, 21, 0.08);
}

.tpl-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.tpl-search-icon {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1;
  flex-shrink: 0;
}

.tpl-search-input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--c-ink);
  background: transparent;
  width: 100%;
}

.tpl-search-input::placeholder {
  color: var(--c-muted);
}

.tpl-type-pills {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.tpl-type {
  padding: 7px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  transition: all .2s;
  white-space: nowrap;
}

.tpl-type:hover {
  background: rgba(15, 37, 21, 0.06);
  color: var(--c-ink);
}

.tpl-type.active {
  background: var(--g-hero);
  color: white;
  box-shadow: var(--glow-green);
}

.tpl-sort-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-left: 1px solid rgba(15, 37, 21, 0.1);
  padding-left: 12px;
  margin-left: 4px;
}

.tpl-sort-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  white-space: nowrap;
}

.tpl-sort-select {
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%236B7A6E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

/* Row 2: category chips */
.tpl-filter-row2 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tpl-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-soft);
  background: rgba(15, 37, 21, 0.05);
  transition: all .2s;
  white-space: nowrap;
}

.tpl-chip:hover {
  background: rgba(15, 37, 21, 0.1);
  color: var(--c-ink);
}

.tpl-chip.active {
  background: var(--c-ink);
  color: white;
}

.tpl-chip-count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  opacity: 0.6;
}

/* Grid */
.tpl-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.tpl-page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Pagination */
.tpl-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.tpl-pagination .pagination {
  display: flex;
  gap: 6px;
  list-style: none;
}

.tpl-pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(15, 37, 21, 0.12);
  background: white;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
  transition: all .2s;
}

.tpl-pagination .page-item.active .page-link {
  background: var(--g-hero);
  border-color: transparent;
  color: white;
  box-shadow: var(--glow-green);
}

.tpl-pagination .page-item .page-link:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

.tpl-empty {
  text-align: center;
  color: var(--c-muted);
  font-style: italic;
  padding: 60px 0;
  font-family: var(--font-display);
  font-size: 20px;
}

@media (max-width: 1024px) {
  .tpl-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tpl-filter-bar {
    padding: 10px 24px;
  }

  .tpl-page-wrap {
    padding: 32px 24px 60px;
  }

  .tpl-hero {
    padding: 56px 24px 40px;
  }
}

@media (max-width: 640px) {
  .tpl-filter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tpl-filter-bar {
    padding: 10px 16px;
    top: 56px;
  }

  .tpl-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tpl-page-wrap {
    padding: 24px 16px 48px;
  }

  .tpl-hero {
    padding: 40px 16px 32px;
  }
}

/* ========== CONTACT PAGE ========== */
.ct-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 70px;
  text-align: center;
}

.ct-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.ct-hero-blob.one {
  top: -80px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: var(--c-green-soft);
  opacity: 0.6;
}

.ct-hero-blob.two {
  top: 0;
  right: -60px;
  width: 350px;
  height: 350px;
  background: var(--c-yellow);
  opacity: 0.35;
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.ct-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.ct-title em {
  font-style: italic;
  background: var(--g-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.ct-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.ct-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 100px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.ct-form-wrap {
  background: white;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow-3d);
  position: relative;
  overflow: hidden;
}

.ct-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--g-hero);
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ct-field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-ink);
}

.ct-field .req {
  color: var(--c-green);
}

.ct-field input,
.ct-field textarea {
  border: 1.5px solid rgba(15, 37, 21, 0.12);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--c-ink);
  background: var(--c-bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: none;
  width: 100%;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
  background: white;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: var(--c-muted);
  opacity: 0.8;
}

.ct-err {
  font-size: 12px;
  color: #e53e3e;
  font-weight: 500;
}

.ct-submit {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  font-size: 15px;
  padding: 15px 32px;
}

.ct-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-green-pale);
  border: 1.5px solid var(--c-green-soft);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.ct-success-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g-hero);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: var(--glow-green);
}

.ct-success strong {
  font-size: 14.5px;
  color: var(--c-green);
  display: block;
  margin-bottom: 3px;
}

.ct-success p {
  font-size: 13.5px;
  color: var(--c-ink-soft);
}

/* Info column */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-info-card {
  background: white;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}

.ct-info-card--accent {
  background: var(--g-hero);
  color: white;
}

.ct-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--g-hero);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
  box-shadow: var(--glow-green);
}

.ct-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-muted);
  margin-bottom: 5px;
}

.ct-info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.35;
}

/* FAQ card */
.ct-faq-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 18px;
}

.ct-faq {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-faq li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.ct-faq li p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .ct-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 32px 80px;
  }

  .ct-hero {
    padding: 60px 32px 50px;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    padding: 40px 16px 36px;
  }

  .ct-main {
    padding: 0 16px 60px;
  }

  .ct-form-wrap {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ========== CONTACT (home section) ========== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.contact-heading em {
  font-style: italic;
  background: var(--g-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.contact-sub {
  font-size: 15.5px;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--c-ink-soft);
  font-weight: 500;
}

.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--g-hero);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: var(--glow-green);
}

.contact-right {
  background: white;
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: var(--shadow-3d);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-ink);
}

.cf-field label span {
  color: var(--c-green);
}

.cf-field input,
.cf-field textarea {
  border: 1.5px solid rgba(15, 37, 21, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--c-ink);
  background: var(--c-bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
  width: 100%;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
  background: white;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--c-muted);
}

.cf-error {
  font-size: 12px;
  color: #e53e3e;
  font-weight: 500;
}

.cf-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.contact-success {
  background: var(--c-green-pale);
  border: 1.5px solid var(--c-green-soft);
  color: var(--c-green);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

.final-cta-inner {
  background: var(--g-hero);
  border-radius: 40px;
  padding: 80px 50px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.final-cta-inner::before {
  top: -80px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: var(--c-yellow);
  opacity: 0.5;
}

.final-cta-inner::after {
  bottom: -100px;
  right: 10%;
  width: 450px;
  height: 450px;
  background: var(--c-lime);
  opacity: 0.4;
}

.final-cta-inner>* {
  position: relative;
  z-index: 2;
}

.final-cta-inner .f-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 22px;
  font-weight: 600;
}

.final-cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.final-cta-inner h2 em {
  font-style: italic;
  color: var(--c-yellow);
  font-weight: 400;
}

.final-cta-inner p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0.95;
  font-weight: 300;
}

.final-cta-inner .btn-white {
  background: white;
  color: var(--c-green);
  padding: 17px 32px;
  font-size: 16px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.final-cta-inner .btn-white:hover {
  transform: translateY(-3px);
}

/* ========== FOOTER ========== */
footer {
  padding: 50px 40px 36px;
  text-align: center;
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.5), transparent 70%);
  transform: translateX(-50%);
  filter: blur(50px);
}

.f-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: white;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.f-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.f-divider {
  width: 60px;
  height: 2px;
  background: var(--g-sunshine);
  margin: 0 auto 18px;
  border-radius: 100px;
  position: relative;
  z-index: 2;
}

.f-bottom {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-preview {
    max-width: 500px;
    margin: 0 auto;
    height: 560px;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

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

  .testi-grid-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .pricing-preview {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {

  /* NAV */
  nav {
    margin: 8px;
    padding: 8px 8px 8px 18px;
  }

  .nav-links {
    display: none;
  }

  .btn-login {
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* HERO TEXT */
  .hero {
    padding: 24px 16px 56px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-deck {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
  }

  /* HERO PREVIEW — keep all floating cards, just scale down */
  .hero-preview {
    height: 480px;
    max-width: 340px;
  }

  .profile-card {
    width: 238px;
    margin: -216px 0 0 -119px;
  }

  .pc-cover {
    height: 82px;
  }

  .pc-avatar {
    width: 68px;
    height: 68px;
    bottom: -30px;
  }

  .pc-body {
    padding: 44px 18px 20px;
  }

  .pc-name {
    font-size: 21px;
  }

  .pc-bio {
    font-size: 12.5px;
  }

  .mini-card-1 {
    width: 146px;
    top: 6px;
    right: 25px;
    padding: 12px 14px;
  }

  .mini-card-1 .mc-value {
    font-size: 15px;
  }

  .mini-card-2 {
    width: 128px;
    bottom: 194px;
    left: 47px;
    padding: 12px 14px;
  }

  .mini-card-2 .mc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .stat-chip {
    width: 200px;
    bottom: 58px;
    right: -8px;
    font-size: 11px;
    padding: 8px 12px;
    gap: 6px;
  }

  .stat-chip strong {
    font-size: 12px;
  }

  /* SECTIONS */
  .sec {
    padding: 48px 16px;
  }

  .sec-head-center {
    margin-bottom: 40px;
  }

  .logos {
    padding: 28px 16px;
  }

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

  /* FEATURES — keep 2-col, tighter padding */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feat {
    padding: 18px 16px;
  }

  .feat h4 {
    font-size: 16px;
  }

  .feat p {
    font-size: 12.5px;
  }

  /* TEMPLATES — keep 2-col */
  .templates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .template-info {
    padding: 12px 14px 14px;
  }

  .template-info h4 {
    font-size: 15px;
  }

  .template-meta {
    font-size: 9.5px;
  }

  /* STATS */
  .stats-panel {
    padding: 36px 18px;
    border-radius: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-box {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .stat-box .b {
    font-size: 40px;
  }

  /* TESTIMONIALS — stack to 1 col */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid-right {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .testi {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .testi.big {
    padding: 32px 26px;
  }

  .testi blockquote {
    font-size: 16px;
  }

  .testi.big blockquote {
    font-size: 20px;
  }

  .testi::before {
    font-size: 110px;
  }

  .testi.big::before {
    font-size: 140px;
  }

  /* PRICING */
  .pricing-preview {
    border-radius: 28px;
    padding: 32px 20px;
  }

  .pp-right .price {
    font-size: 54px;
  }

  /* CONTACT */
  .contact-right {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-submit {
    width: 100%;
    justify-content: center;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 40px 16px 60px;
  }

  .final-cta-inner {
    padding: 40px 20px;
    border-radius: 28px;
  }

  /* FOOTER */
  footer {
    padding: 32px 20px 26px;
  }
}