*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3ec;
  --surface: #efe9df;
  --card: #faf7f2;
  --accent: #1e5c3a;
  --accent2: #d79a29;
  --text: #1a1a14;
  --muted: #7a7060;
  --border: rgba(30, 20, 10, 0.1);
  --green-light: rgba(30, 92, 58, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle paper texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* Decorative blob */
body::before {
  content: "";
  position: fixed;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 110, 0.12),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 236, 0.88);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  overflow: hidden;
  background: url("../images/plane.jpg") center/cover no-repeat;
}

/* Hero Background with Gradient Overlay */
.hero-background {
  position: absolute;
  inset: 0;
  background: url("../images/plane.jpg") center/cover no-repeat;
  z-index: -2;
  animation: zoomSlow 25s ease-in-out infinite;
}

@keyframes zoomSlow {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Hero Gradient Overlay for text readability */
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(247, 243, 236, 0.45) 0%,
    rgba(239, 233, 223, 0.55) 100%
  );
  z-index: 1;
}

/* Animated Pattern Overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(30, 92, 58, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(200, 169, 110, 0.22) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(30, 92, 58, 0.12) 0%,
      transparent 50%
    );
  z-index: 0;
  animation:
    patternShift 25s ease-in-out infinite,
    patternFloat 30s ease-in-out infinite;
}

@keyframes patternShift {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
  25% {
    opacity: 0.7;
    transform: translateY(15px) translateX(10px);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-10px) translateX(-15px);
  }
  75% {
    opacity: 0.8;
    transform: translateY(8px) translateX(5px);
  }
}

@keyframes patternFloat {
  0%,
  100% {
    filter: blur(0px);
  }
  50% {
    filter: blur(1px);
  }
}

/* Hero Content Container */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  max-width: 500px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: heroTextFloat 3s ease-in-out infinite;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

@keyframes heroTextFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1.5px solid rgba(30, 92, 58, 0.3);
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0px;
  animation:
    fadeUp 0.6s ease both,
    badgeGlow 2.5s ease-in-out infinite,
    badgeFloat 2s ease-in-out infinite;
  backdrop-filter: blur(12px);
  box-shadow:
    0 4px 16px rgba(30, 92, 58, 0.12),
    0 0 24px rgba(30, 92, 58, 0.08);
  width: max-content;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
  box-shadow:
    0 6px 24px rgba(30, 92, 58, 0.18),
    0 0 32px rgba(30, 92, 58, 0.12);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow:
      0 4px 16px rgba(30, 92, 58, 0.12),
      0 0 24px rgba(30, 92, 58, 0.08);
  }
  50% {
    box-shadow:
      0 8px 28px rgba(30, 92, 58, 0.18),
      0 0 40px rgba(30, 92, 58, 0.12);
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(200, 169, 110, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px rgba(200, 169, 110, 0.6);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.5);
    box-shadow: 0 0 16px rgba(200, 169, 110, 0.8);
  }
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  animation: titleSlideIn 0.8s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  color: var(--text);
  text-shadow:
    0 2px 8px rgba(26, 26, 20, 0.08),
    0 8px 24px rgba(30, 92, 58, 0.1);
  text-align: left;
}

h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 900;
  animation: accentPulse 2s ease-in-out 0.5s infinite;
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scaleY(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes accentPulse {
  0%,
  100% {
    color: var(--accent);
    text-shadow: 0 0 0 rgba(200, 169, 110, 0);
  }
  50% {
    color: #164d2f;
    text-shadow: 0 0 12px rgba(30, 92, 58, 0.4);
  }
}

.hero-sub {
  margin-top: 16px;
  color: var(--text);
  font-size: 1rem;
  max-width: 100%;
  line-height: 1.8;
  animation: fadeUp 0.7s 0.25s ease both;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: left;
}

/* content  */

.content-section {
  width: 100%;
  padding: 100px 60px;
  background:
    linear-gradient(
      135deg,
      rgba(30, 92, 58, 0.03) 0%,
      rgba(215, 154, 41, 0.02) 100%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(30, 92, 58, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(215, 154, 41, 0.04) 0%,
      transparent 50%
    );
  background-color: #fefdfb;
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 92, 58, 0.2),
    transparent
  );
}

.content-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 40px;
  margin-top: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  letter-spacing: -0.5px;
}

.content-section h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--green);
  margin-top: 36px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  padding-left: 20px;
}

.content-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
}

.content-section p {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  letter-spacing: 0.3px;
}

.content-section ul {
  margin: 24px 0;
  padding: 0;
  padding-left: 32px;
  list-style: none;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.content-section ul li {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  padding-left: 16px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.content-section ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.2em;
}

.content-section ul li:hover {
  transform: translateX(6px);
  color: var(--green);
}

@media (max-width: 900px) {
  .content-section {
    padding: 60px 30px;
  }

  .content-section h2 {
    margin-bottom: 32px;
  }

  .content-section h3 {
    margin-top: 28px;
    margin-bottom: 16px;
  }

  .content-section ul {
    padding-left: 28px;
  }

  .content-section ul li {
    margin-bottom: 12px;
  }
}

/* ── TFN BLOCK ── */
.tfn-block {
  margin-top: 48px;
  position: relative;
  animation: tfnBlockSlideUp 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.55) 100%
  );
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 56px 68px;
  border: 1.5px solid rgba(30, 92, 58, 0.15);
  box-shadow:
    0 8px 32px rgba(30, 92, 58, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tfn-block:hover {
  box-shadow:
    0 12px 48px rgba(30, 92, 58, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

@keyframes tfnBlockSlideUp {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tfn-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 700;
  animation: fadeUp 0.6s 0.35s ease both;
  text-align: center;
}

/* Decorative line above TFN */
.tfn-label::before {
  content: "— ";
  color: var(--accent2);
  margin-right: 8px;
}

.tfn-label::after {
  content: " —";
  color: var(--accent2);
  margin-left: 8px;
}

.tfn-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-shadow:
    5px 5px 0px rgba(200, 169, 110, 0.4),
    10px 10px 0px rgba(200, 169, 110, 0.15),
    -3px -3px 10px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(30, 92, 58, 0.08);
  cursor: pointer;
  transition:
    text-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: all;
  font-weight: 900;
  animation: phoneNumberEntrance 0.8s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1)
    both;
}

@keyframes phoneNumberEntrance {
  from {
    opacity: 0;
    transform: scale(0.85) rotateX(20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
  }
}

.tfn-number:hover {
  color: #164d2f;
  text-shadow:
    6px 6px 0px rgba(200, 169, 110, 0.5),
    14px 14px 0px rgba(200, 169, 110, 0.2),
    -3px -3px 10px rgba(255, 255, 255, 0.7),
    0 0 28px rgba(30, 92, 58, 0.12);
  transform: scale(1.04) rotateZ(1deg);
}

.tfn-number:active {
  transform: scale(0.98);
}

.tfn-underline {
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent2) 20%,
    var(--accent2) 80%,
    transparent 100%
  );
  margin: 24px auto 0;
  width: 55%;
  border-radius: 3px;
  animation: slideInPulse 1s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 0 16px rgba(200, 169, 110, 0.4);
}

@keyframes slideInPulse {
  from {
    width: 0;
    opacity: 0;
    box-shadow: 0 0 0 rgba(200, 169, 110, 0);
  }
  to {
    width: 55%;
    opacity: 1;
    box-shadow: 0 0 16px rgba(200, 169, 110, 0.4);
  }
}

.tfn-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--accent) 0%, #164d2f 100%);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow:
    0 8px 24px rgba(30, 92, 58, 0.28),
    4px 4px 0 rgba(200, 169, 110, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  background: linear-gradient(135deg, #164d2f 0%, var(--accent) 100%);
  box-shadow:
    0 14px 40px rgba(30, 92, 58, 0.4),
    4px 4px 0 rgba(200, 169, 110, 0.5);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow:
    0 6px 16px rgba(30, 92, 58, 0.25),
    2px 2px 0 rgba(200, 169, 110, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  position: relative;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--green-light);
  color: var(--accent);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 24px rgba(30, 92, 58, 0.12);
}

.btn-outline:active {
  transform: translateY(-2px) scale(0.99);
  box-shadow: 0 4px 8px rgba(30, 92, 58, 0.08);
}

/* ── DIVIDER ── */
.ornament-divider {
  text-align: center;
  color: var(--accent2);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  margin: 20px 0;
  opacity: 0.7;
}

/* ── STATS ROW ── */
.stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1.5px solid rgba(30, 92, 58, 0.15);
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  flex-wrap: wrap;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent2);
  border-radius: 50%;
  opacity: 0.15;
  animation: statsDotPulse 2.5s ease-in-out infinite;
}

@keyframes statsDotPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.08;
  }
}

.stat-item {
  text-align: center;
  padding: 0 52px;
  position: relative;
  flex: 1;
  min-width: 160px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: statsItemFade 0.6s ease both;
}

.stat-item:nth-child(1) {
  animation-delay: 0.65s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.75s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.85s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.95s;
}

@keyframes statsItemFade {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1.5px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(30, 92, 58, 0.2),
    transparent
  );
  transition: width 0.3s ease;
}

.stat-item:hover + .stat-item::before {
  width: 2px;
}

.stat-val {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--accent);
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 4px 12px rgba(30, 92, 58, 0.1);
}

.stat-item:hover .stat-val {
  color: #164d2f;
  text-shadow: 0 6px 18px rgba(30, 92, 58, 0.18);
  transform: scale(1.08);
}

.stat-desc {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-desc {
  color: var(--text);
}

/* ── FEATURES ── */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 580px;
  margin-bottom: 60px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  animation: fadeUp 0.8s 0.3s ease both;
}

.feature-card {
  background: var(--card);
  padding: 48px 36px;
  transition:
    all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
  position: relative;
  border: 1.5px solid rgba(30, 92, 58, 0.12);
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: cardFadeUp 0.6s ease both;
  backdrop-filter: blur(4px);
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-card:hover {
  background: var(--card);
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(30, 92, 58, 0.3);
  box-shadow:
    0 20px 48px rgba(30, 92, 58, 0.18),
    0 0 0 1px rgba(200, 169, 110, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 92, 58, 0.05) 0%,
    transparent 50%,
    rgba(200, 169, 110, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:active {
  transform: translateY(-10px) scale(1.01);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--green-light) 0%,
    rgba(30, 92, 58, 0.05) 100%
  );
  border-radius: 14px;
  border: 1.5px solid rgba(30, 92, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition:
    all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.4),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotateZ(-8deg);
  background: linear-gradient(
    135deg,
    rgba(30, 92, 58, 0.15) 0%,
    rgba(30, 92, 58, 0.05) 100%
  );
  border-color: rgba(30, 92, 58, 0.25);
  box-shadow:
    0 8px 20px rgba(30, 92, 58, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
  animation: iconShine 0.6s ease;
}

@keyframes iconShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--text);
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.feature-card:hover .feature-title {
  color: var(--accent);
}

.feature-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color 0.3s ease;
  flex-grow: 1;
}

.feature-card:hover .feature-desc {
  color: var(--text);
}

/* Gold accent bar on hover */
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: left;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 40px 140px;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 92, 58, 0.02) 0%,
    rgba(200, 169, 110, 0.04) 50%,
    rgba(30, 92, 58, 0.02) 100%
  );
  z-index: 0;
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--accent) 0%, #1a4d2a 100%);
  border-radius: 32px;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 20px 60px rgba(30, 92, 58, 0.3),
    0 0 1px rgba(200, 169, 110, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: ctaSlideUp 0.9s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  backdrop-filter: blur(2px);
}

@keyframes ctaSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Decorative elements */
.cta-decorative {
  position: absolute;
  font-size: 2.2rem;
  color: rgba(200, 169, 110, 0.25);
  animation: decorativePulse 3s ease-in-out infinite;
}

.cta-deco-top {
  top: 20px;
  left: 30px;
  content: "✦";
}

.cta-deco-bottom {
  bottom: 20px;
  right: 30px;
  content: "✦";
  animation-delay: 1s;
}

@keyframes decorativePulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

.cta-heading {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  color: #fff;
  animation: ctaHeadingFade 0.8s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  line-height: 1.2;
}

@keyframes ctaHeadingFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  /* Default h2 styling */
}

.cta-text {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0.3px;
  animation: fadeUp 0.8s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-tfn-wrapper {
  margin: 40px 0;
  position: relative;
  animation: tfnWrapperFade 0.8s 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes tfnWrapperFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-tfn {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  color: #fff;
  text-shadow:
    4px 4px 0 rgba(200, 169, 110, 0.5),
    8px 8px 0 rgba(200, 169, 110, 0.25),
    -2px -2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 900;
  transition:
    text-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.4s ease,
    color 0.3s ease;
  cursor: pointer;
  user-select: all;
  animation:
    tfnGlow 2.5s ease-in-out infinite,
    tfnBounce 3.5s ease-in-out infinite;
  position: relative;
}

@keyframes tfnGlow {
  0%,
  100% {
    text-shadow:
      4px 4px 0 rgba(200, 169, 110, 0.5),
      8px 8px 0 rgba(200, 169, 110, 0.25),
      -2px -2px 8px rgba(0, 0, 0, 0.3),
      0 0 0px rgba(200, 169, 110, 0);
  }
  50% {
    text-shadow:
      4px 4px 0 rgba(200, 169, 110, 0.6),
      8px 8px 0 rgba(200, 169, 110, 0.35),
      -2px -2px 8px rgba(0, 0, 0, 0.4),
      0 0 20px rgba(200, 169, 110, 0.4);
  }
}

@keyframes tfnBounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-4px);
  }
}

.cta-tfn-wrapper:hover .cta-tfn {
  animation: none;
  color: #fff;
  text-shadow:
    6px 6px 0 rgba(200, 169, 110, 0.6),
    12px 12px 0 rgba(200, 169, 110, 0.3),
    -2px -2px 8px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(200, 169, 110, 0.4);
}

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--accent2) 0%, #d4942a 100%);
  color: #1a1a14;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    4px 4px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: ctaButtonFade 0.8s 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes ctaButtonFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-cta-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-cta-light:hover::before {
  left: 100%;
}

.btn-cta-light:hover {
  transform: translateY(-6px) scale(1.03);
  background: linear-gradient(135deg, #d4942a 0%, var(--accent2) 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-cta-light:active {
  transform: translateY(-3px) scale(0.98);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .logo {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */

/* LARGE DESKTOP (1440px and above) */
@media (min-width: 1440px) {
  nav {
    padding: 24px 80px;
  }
  .logo {
    font-size: 1.8rem;
  }
  .nav-links {
    gap: 48px;
  }
  .hero {
    padding: 120px 80px 100px;
  }
  .hero-content {
    gap: 60px;
  }
  .section {
    padding: 120px 80px;
    max-width: 1380px;
  }
  .cta-section {
    padding: 120px 80px 160px;
  }
  footer {
    padding: 50px 80px;
  }
}

/* TABLET & MOBILE (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  nav {
    padding: 20px 40px;
  }
  .logo {
    font-size: 1.4rem;
  }
  .nav-links {
    gap: 28px;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .hero {
    padding: 100px 40px 70px;
  }
  .hero-content {
    gap: 40px;
  }
  h1 {
    font-size: clamp(2rem, 3.5vw, 3.8rem);
  }
  .hero-sub {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
  }
  .tfn-number {
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  }
  .section {
    padding: 80px 40px;
  }
  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-card {
    padding: 40px 28px;
  }
  .feature-title {
    font-size: 1.05rem;
  }
  .feature-desc {
    font-size: 0.85rem;
  }
  .stat-item {
    flex: 1 1 50%;
    padding: 32px 24px;
  }
  .stat-val {
    font-size: 2.8rem;
  }
  .cta-section {
    padding: 100px 40px 130px;
  }
  .cta-inner {
    padding: 70px 50px;
  }
  .cta-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }
  .cta-text {
    font-size: 1rem;
  }
  .cta-tfn {
    font-size: clamp(2rem, 5vw, 4rem);
  }
  .content-section {
    padding: 80px 40px;
  }
  .content-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  }
  .content-section h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  }
  footer {
    padding: 35px 40px;
  }
}

/* SMALL TABLET (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
  nav {
    padding: 16px 20px;
  }
  .logo {
    font-size: 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 80px 20px 50px;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 35px;
  }
  .hero-text {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-heading {
    align-items: center;
  }
  h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    text-align: center;
  }
  .hero-sub {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    text-align: center;
  }
  .badge {
    margin-bottom: 14px;
    font-size: 0.65rem;
  }
  .tfn-block {
    padding: 36px 24px;
    margin-top: 0;
    width: 100%;
  }
  .tfn-label {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
  .tfn-number {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }
  .tfn-underline {
    width: 65%;
    margin: 16px auto 0;
  }
  .tfn-cta-row {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
  }
  .stat-item {
    flex: 1 1 50%;
    padding: 20px 12px;
  }
  .stat-val {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }
  .stat-desc {
    font-size: 0.68rem;
    margin-top: 6px;
  }
  .stats {
    margin-top: 50px;
    padding-top: 40px;
    gap: 0;
    flex-wrap: wrap;
  }
  .section {
    padding: 60px 20px;
  }
  .section-tag {
    font-size: 0.68rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .feature-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .feature-desc {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .content-section {
    padding: 60px 20px;
  }
  .content-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 28px;
  }
  .content-section h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-top: 24px;
    margin-bottom: 14px;
  }
  .content-section p {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .content-section ul {
    padding-left: 24px;
    margin: 18px 0;
  }
  .content-section ul li {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    margin-bottom: 10px;
  }
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 30px 20px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-links a {
    font-size: 0.75rem;
  }
  .cta-section {
    padding: 70px 20px 90px;
  }
  .cta-inner {
    padding: 44px 28px;
    border-radius: 20px;
  }
  .cta-heading {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 12px;
  }
  .cta-text {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    margin-bottom: 24px;
  }
  .cta-tfn-wrapper {
    margin: 24px 0;
  }
  .cta-tfn {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .btn-cta-light {
    width: calc(100% - 16px);
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  .cta-deco-top,
  .cta-deco-bottom {
    display: none;
  }
}

/* MOBILE PHONES (480px - 599px) */
@media (max-width: 599px) {
  body {
    font-size: 14px;
  }

  nav {
    padding: 14px 16px;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 16px 40px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-heading {
    align-items: center;
    gap: 12px;
  }

  h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    text-align: center;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    text-align: center;
    line-height: 1.6;
    margin-top: 12px;
  }

  .badge {
    margin-bottom: 12px;
    font-size: 0.6rem;
    padding: 8px 16px;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
  }

  .tfn-block {
    padding: 32px 20px;
    margin-top: 0;
    width: 100%;
    border-radius: 20px;
  }

  .tfn-label {
    font-size: 0.6rem;
    margin-bottom: 8px;
  }

  .tfn-number {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    line-height: 1;
  }

  .tfn-underline {
    width: 60%;
    margin: 14px auto 0;
    height: 4px;
  }

  .tfn-cta-row {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .btn-primary {
    box-shadow:
      0 6px 16px rgba(30, 92, 58, 0.2),
      2px 2px 0 rgba(200, 169, 110, 0.3);
  }

  .stat-item {
    flex: 1 1 50%;
    padding: 16px 8px;
  }

  .stat-val {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .stat-desc {
    font-size: 0.6rem;
    margin-top: 4px;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .stats {
    margin-top: 40px;
    padding-top: 30px;
    gap: 0;
    flex-wrap: wrap;
  }

  .section {
    padding: 50px 16px;
  }

  .section-tag {
    font-size: 0.6rem;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 32px;
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .feature-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .feature-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .feature-desc {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .content-section {
    padding: 50px 16px;
    background:
      linear-gradient(
        135deg,
        rgba(30, 92, 58, 0.02) 0%,
        rgba(215, 154, 41, 0.015) 100%
      ),
      radial-gradient(
        circle at 20% 80%,
        rgba(30, 92, 58, 0.03) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(215, 154, 41, 0.02) 0%,
        transparent 50%
      );
  }

  .content-section h2 {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    margin-bottom: 22px;
    margin-top: 0;
  }

  .content-section h3 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-top: 20px;
    margin-bottom: 12px;
    padding-left: 16px;
  }

  .content-section h3::before {
    width: 3px;
    height: 3px;
  }

  .content-section p {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .content-section ul {
    padding-left: 20px;
    margin: 14px 0;
  }

  .content-section ul li {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    margin-bottom: 8px;
    line-height: 1.6;
    padding-left: 12px;
  }

  .content-section ul li:hover {
    transform: translateX(4px);
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 16px;
    border-top: 1px solid var(--border);
  }

  footer .logo {
    font-size: 1rem;
  }

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 0.7rem;
  }

  .footer-copy {
    font-size: 0.7rem;
  }

  .cta-section {
    padding: 60px 16px 80px;
  }

  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(30, 92, 58, 0.02) 0%,
      rgba(200, 169, 110, 0.03) 50%,
      rgba(30, 92, 58, 0.02) 100%
    );
    z-index: 0;
  }

  .cta-inner {
    padding: 40px 20px;
    border-radius: 16px;
    max-width: 100%;
  }

  .cta-heading {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .cta-text {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .cta-tfn-wrapper {
    margin: 20px 0;
  }

  .cta-tfn {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    text-shadow:
      3px 3px 0 rgba(200, 169, 110, 0.4),
      6px 6px 0 rgba(200, 169, 110, 0.15),
      -2px -2px 8px rgba(255, 255, 255, 0.5),
      0 0 16px rgba(30, 92, 58, 0.06);
  }

  .btn-cta-light {
    width: calc(100% - 12px);
    padding: 12px 20px;
    font-size: 0.8rem;
    border-radius: 8px;
    box-shadow:
      0 8px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      3px 3px 0 rgba(0, 0, 0, 0.12);
  }

  .cta-deco-top,
  .cta-deco-bottom {
    display: none;
  }
}

/* EXTRA SMALL PHONES (under 480px) */
@media (max-width: 479px) {
  body {
    font-size: 13px;
  }

  nav {
    padding: 12px 12px;
  }

  .logo {
    font-size: 0.9rem;
  }

  .hero {
    padding: 60px 12px 30px;
  }

  .hero-content {
    gap: 25px;
  }

  h1 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .hero-sub {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
  }

  .badge {
    font-size: 0.55rem;
    padding: 6px 12px;
  }

  .tfn-block {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .tfn-label {
    font-size: 0.55rem;
  }

  .tfn-number {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .section {
    padding: 40px 12px;
  }

  .section-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    margin-bottom: 24px;
  }

  .feature-card {
    padding: 20px 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .feature-title {
    font-size: 0.85rem;
  }

  .feature-desc {
    font-size: 0.7rem;
  }

  .content-section {
    padding: 40px 12px;
  }

  .content-section h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    margin-bottom: 16px;
  }

  .content-section h3 {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    margin-top: 16px;
    margin-bottom: 10px;
    padding-left: 14px;
  }

  .content-section p {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    margin-bottom: 12px;
  }

  .content-section ul li {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    margin-bottom: 6px;
    padding-left: 10px;
  }

  footer {
    padding: 20px 12px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    font-size: 0.65rem;
  }

  .cta-section {
    padding: 50px 12px 70px;
  }

  .cta-inner {
    padding: 32px 16px;
    border-radius: 14px;
  }

  .cta-heading {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .cta-text {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    margin-bottom: 16px;
  }

  .cta-tfn {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .btn-cta-light {
    width: calc(100% - 10px);
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .stat-item {
    padding: 12px 6px;
  }

  .stat-val {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }

  .stat-desc {
    font-size: 0.55rem;
  }
}
