@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --paper: linear-gradient(135deg, #1f3d2b, #315b42);
  --paper-solid: #f3efe8;
  --ink: #1f3d2b;
  --muted-ink: #315b42;
  --accent: #315b42;
  --accent-strong: #1f3d2b;
  --accent-dark: #1f3d2b;
  --line: #1f3d2b;
  --card: var(--paper-solid);
  --soft: var(--paper-solid);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --hero-start: #142a1f;
  --hero-mid: #1f3d2b;
  --hero-end: #315b42;
  --hero-accent: #b9dec9;
}


/* BODY */
body {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(49, 91, 66, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(31, 61, 43, 0.12), transparent 60%),
    var(--paper-solid);
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: 0.01em;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", system-ui, sans-serif;
}

/* FOOTER */
.site-footer {
  position: relative;
  color: #f2f2f2;
  padding: 30px 9%;
  background: var(--accent-dark);
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-container h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(8px, 4.2vw, 30px);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.footer-intro {
  max-width: 1120px;
  font-size: clamp(8px, 1.6vw, 16px);
  line-height: 1.55;
  color: rgba(242, 242, 242, 0.86);
  margin-bottom: 25px;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.footer-column h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(8px, 4.2vw, 30px);
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 14px;
}

.footer-points {
  margin: 0 0 22px 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: clamp(8px, 1.6vw, 16px);
  line-height: 1.45;
  color: rgba(242, 242, 242, 0.9);
}

.footer-contact-copy {
  font-size: clamp(8px, 1.6vw, 16px);
  line-height: 1.45;
  color: rgba(242, 242, 242, 0.86);
  margin-bottom: 16px;
}

.footer-contact-line {
  font-size: clamp(8px, 1.4vw, 30px);
  line-height: 1.5;
  margin-bottom: 8px;
  color: #f2f2f2;
}

.footer-contact-line strong {
  font-weight: 800;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(242, 242, 242, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f2f2f2;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  border-color: #f2f2f2;
  background: rgba(242, 242, 242, 0.12);
}

.footer-social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-links svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-cta-btn {
  display: inline-block;
  background: #f3f3f3;
  color: #10131b;
  border: 2px solid #f3f3f3;
  border-radius: 14px;
  padding: 18px 30px;
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.footer-meta {
  font-size: 14px;
  color: rgba(242, 242, 242, 0.72);
  text-align: left;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 5%;
  }

  .footer-intro {
    margin-bottom: 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-column h3 {
    margin-bottom: 16px;
  }

  .footer-points {
    margin-left: 24px;
  }

  .footer-contact-copy {
    margin-bottom: 18px;
  }

  .footer-social-links {
    margin-top: 8px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(900px 500px at 5% 15%, rgba(185, 222, 201, 0.26), transparent 58%),
    radial-gradient(750px 420px at 90% 85%, rgba(94, 143, 112, 0.28), transparent 62%),
    linear-gradient(130deg, var(--hero-start) 0%, var(--hero-mid) 48%, var(--hero-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8%;
  overflow: hidden;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(460px 300px at 22% 26%, rgba(185, 222, 201, 0.14), transparent 70%),
    radial-gradient(460px 300px at 78% 26%, rgba(185, 222, 201, 0.14), transparent 70%),
    linear-gradient(110deg, rgba(17, 34, 25, 0.76), rgba(17, 34, 25, 0.32));
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 1250px;
  color: var(--paper-solid);
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
  margin: 0 auto;
}

.hero-logo {
  width: clamp(140px, 20vw, 210px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.hero-badge {
  display: inline-block;
  background: rgba(139, 228, 196, 0.2);
  color: var(--paper-solid);
  border: 1px solid rgba(139, 228, 196, 0.55);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

/* HEADLINE */
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-line-one {
  white-space: nowrap;
}

.hero h1 span {
  color: var(--hero-accent);
  font-size: clamp(36px, 6vw, 80px);
}

/* TEXT */
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper-solid);
  text-align: center;
  margin-bottom: 35px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON */
.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--paper-solid);
  padding: 14px 30px;
  border-radius: 12px;
  border: 2px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 6px 6px 0 var(--line);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--line);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1366px) and (min-width: 769px) {
  .hero {
    min-height: 88vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 6%;
  }

  .hero h1 {
    font-size: 38px;
  }
.hero h1 span {
    font-size: 42px;
    
  }
  .hero p {
    font-size: 15px;
  }

  .hero-logo {
    width: clamp(120px, 42vw, 170px);
    margin-bottom: 14px;
  }
}
/* MOBILE VIEW */
@media (max-width: 768px) {

  /* HERO TEXT CENTERED */
  .hero {
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}

/* ============================= */
/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.services {
  background: linear-gradient(135deg, #153225 0%, #1f3d2b 50%, #2b5540 100%);
  padding: 70px 6%;
}

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

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--paper-solid);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.services-header h2 span { 
  color: var(--hero-accent);
 }
.services-header p {
  color: var(--paper-solid);
  font-size: 16px;
}
.services-footer {
  text-align: center;
  margin-top: 40px;
}
.services-footer p {  
  color: var(--paper-solid);
  font-size: 16px;
}
/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: var(--card);
  padding-top: 5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;

  border-radius: 16px;
  border: 2px solid var(--paper-solid);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
  align-items: center;
}

.service-card:hover {
  transform: translate(-4px, -6px);
  box-shadow: 12px 12px 0 rgba(15, 15, 15, 0.1);
}

/* ICON */
.service-card .icon {
  width: 52px;
  height: 52px;
  /* background: var(--accent); */
  color: var(--ink);
  /* border-radius: 12px; */
  /* border: 2px solid var(--line); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  /* margin-bottom: 20px; */
}

.service-card .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-card .icon.facebook-icon .fb-bg {
  fill: #1877f2;
}

.service-card .icon.facebook-icon .fb-fg {
  fill: #ffffff;
}

.service-card .icon.google-ads-icon .ga-blue {
  fill: #4285f4;
}

.service-card .icon.google-ads-icon .ga-green {
  fill: #34a853;
}

.service-card .icon.google-ads-icon .ga-dot {
  fill: #fbbc04;
}

.service-card .icon.landing-icon .lp-ring,
.service-card .icon.landing-icon .lp-line {
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card .icon.landing-icon .lp-www {
  fill: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.2px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* TEXT */
.service-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}

.service-learn-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 80px 5%;
  }

  .services-header h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* WHY US SECTION */
/* ============================= */

.why-us {
  background: linear-gradient(180deg, #f3efe8 0%, #e5efe8 100%);
  padding: 30px 6%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.why-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.why-content h2 span {
  color: var(--accent-strong);
}

.why-text {
  font-size: 16px;
  color: var(--muted-ink);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* LIST */
.why-list {
  list-style: none;
}

.why-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--ink);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: transparent;
  color: currentColor;
  border-radius: 0;
  border: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT STATS */
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--card);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
}

.why-stats .stat-card {
  background: var(--accent);
}

.stat-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 15px;
  color: var(--muted-ink);
}

/* COLORS */
.stat-card.green h3 {
  color: var(--accent-strong);
}

.stat-card.orange h3 {
  color: var(--accent-strong);
}

.why-stats .stat-card h3,
.why-stats .stat-card p {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    margin-top: 5px;
  }
}

@media (max-width: 600px) {
  .why-content h2 {
    font-size: 32px;
  }

  .stat-card h3 {
    font-size: 34px;
  }
   .why-stats {
    margin-top: 5px;
  }
}
/* ============================= */
/* CONSCIOUS MARKETING SECTION */
/* ============================= */

.conscious-section {
  background: linear-gradient(135deg, #d9e8dd 0%, #cfe1d5 52%, #c3d8ca 100%);
  padding: 70px 6%;
}

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

/* TITLE */
.conscious-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--ink);
  margin-bottom: 60px;
  max-width: 700px;
  text-transform: uppercase;
}

/* GRID */
.conscious-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* CARD */
.conscious-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
}

.conscious-card:hover {
  transform: translate(-4px, -6px);
  box-shadow: 12px 12px 0 rgba(15, 15, 15, 0.1);
}

/* CARD TEXT */
.conscious-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.conscious-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted-ink);
}

/* FOOTER TEXT */
.conscious-footer {
  font-size: 16px;
  color: var(--muted-ink);
  max-width: 720px;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .conscious-grid {
    grid-template-columns: 1fr;
  }

  .conscious-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .conscious-section {
    padding: 80px 5%;
  }

  .conscious-title {
    font-size: 28px;
  }
}

.conscious-section {
  background: linear-gradient(135deg, #d9e8dd 0%, #cfe1d5 52%, #c3d8ca 100%);
  padding: 70px 6%;
  text-align: center;
}

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

/* HEADER */
.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header p {
  color: var(--muted-ink);
  font-size: 17px;
  line-height: 1.7;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.stat-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 40px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
}

.stat-card:hover {
  transform: translate(-4px, -6px);
  box-shadow: 12px 12px 0 rgba(15, 15, 15, 0.1);
}

.stat-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  color: var(--accent-strong);
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted-ink);
  font-size: 15px;
}

/* FOOTER */
.section-footer {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.section-footer p {
  font-size: 20px;
  color: var(--accent-dark);
}

/* MOBILE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .stat-card h3 {
    font-size: 36px;
  }
}

/* CONSCIOUS SECTION: MATCH SERVICES LOOK */
.conscious-section {
  background: linear-gradient(135deg, #153225 0%, #1f3d2b 50%, #2b5540 100%);
  padding: 70px 6%;
  text-align: center;
}

.conscious-section .section-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.conscious-section .section-label {
  color: var(--paper-solid);
  letter-spacing: 0.16em;
}

.conscious-section .section-header h2 {
  color: var(--paper-solid);
}

.conscious-section .section-header p {
  color: var(--paper-solid);
}

.conscious-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.conscious-section .conscious-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f3efe8 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 12px 16px;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 10px 10px 0 rgba(15, 15, 15, 0.1);
}

.conscious-section .conscious-card:hover {
  transform: translate(-5px, -7px);
  box-shadow: 14px 14px 0 rgba(15, 15, 15, 0.13);
}

.conscious-section .conscious-card h3 {
  color: var(--accent-dark);
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 0;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.conscious-section .conscious-card p {
  color: var(--ink);
  line-height: 1.7;
}

.conscious-section .section-footer p {
  color: var(--paper-solid);
}

@media (max-width: 992px) {
  .conscious-section .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .conscious-section {
    padding: 80px 5%;
  }

  .conscious-section .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* OUTER WRAPPER */
.growth-wrapper {
  padding: 80px 6%;
    background: linear-gradient(180deg, #f3efe8 0%, #e5efe8 100%);

  /* background: linear-gradient(180deg, #edf4ef 0%, #dfeadf 100%); */
}

/* SAGE CARD */
.growth-card {
  max-width: 1200px;
  margin: auto;
  /* background: var(--card); */
  background: var(--ink);
  color: var(--ink);
  padding: 80px;
  border-radius: 18px;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

/* TITLE */
.growth-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  margin-bottom: 20px;
  /* color: var(--ink); */
  color: var(--paper-solid);
  text-transform: uppercase;
}

/* INTRO */
.growth-intro {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  /* color: var(--muted-ink); */
  color: var(--paper-solid);
  margin-bottom: 60px;
}

/* STEPS GRID */
.growth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  color: var(--paper-solid);

}

/* STEP */
.step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  margin: 16px 0;
  font-weight: 600;
  /* color: var(--accent-dark); */
  color: var(--paper-solid);

  text-transform: uppercase;
}

.step p {
  font-size: 15px;
  line-height: 1.7;
  /* color: var(--muted-ink); */
  color: var(--paper-solid);

}

/* NUMBER */
.step-number {
  font-size: 14px;
  letter-spacing: 1px;
  /* color: #6b6b6b; */
  color: var(--paper-solid);


}

/* DIVIDER LINE */
.step-line {
  height: 1px;
  width: 100%;
  /* background: linear-gradient(to right, var(--line), rgba(15, 15, 15, 0)); */
  background: linear-gradient(to right, var(--paper-solid), rgba(243, 239, 232, 0));

  margin: 12px 0 20px;
}
/* .step-line h3 {
   font-size: 20px;
  color: #4caf88;
  margin-bottom: 14px;
} */
/* FOOTER TEXT */
.growth-footer {
  margin-top: 60px;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--accent-dark);
}

/* MOBILE */
@media (max-width: 900px) {
  .growth-card {
    padding: 50px 30px;
  }

  .growth-title {
    font-size: 32px;
  }

  .growth-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.success-section {
  padding: 80px 6%;
  background: linear-gradient(180deg, #f7f3ed 0%, #e8f0ea 100%);
}

.success-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.success-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.success-subtitle {
  font-size: 16px;
  color: var(--muted-ink);
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* GRID */
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.success-card {
  background: var(--card);
  border-radius: 16px;
  border: 2px solid var(--line);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.success-card:hover {
  transform: translate(-4px, -6px);
  box-shadow: 12px 12px 0 rgba(15, 15, 15, 0.1);
}

.success-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center 28%;
}

/* CONTENT */
.success-content {
  padding: 26px;
  text-align: left;
}

.success-category {
  display: block;
  font-size: 14px;
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.success-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

.success-result {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}

/* TAGS */
.success-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.success-tags span {
  background: var(--paper-solid);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  border: 1px solid var(--line);
}

/* MOBILE */
@media (max-width: 900px) {
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-title {
    font-size: 34px;
  }

  .success-card img {
    aspect-ratio: 16 / 10;
  }
}

.ad-creative-section {
  padding: 30px 6% 90px;
  background: linear-gradient(135deg, #153225 0%, #1f3d2b 50%, #2b5540 100%);
}

.ad-creative-container {
  max-width: 1280px;
  margin: 0 auto;
}

.ad-creative-header {
  margin-bottom: 24px;
  text-align: center;
}

.ad-creative-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--paper-solid);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ad-creative-subtitle {
  max-width: 700px;
  color: var(--paper-solid);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
}

.ad-creative-row-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.ad-creative-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 239, 232, 0.55) transparent;
}

.ad-creative-row::-webkit-scrollbar {
  height: 8px;
}

.ad-creative-row::-webkit-scrollbar-track {
  background: transparent;
}

.ad-creative-row::-webkit-scrollbar-thumb {
  background: rgba(243, 239, 232, 0.55);
  border-radius: 999px;
}

.ad-creative-card {
  flex: 0 0 clamp(180px, 16vw, 220px);
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--paper-solid);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: #0f1714;
}

.ad-creative-card:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.ad-creative-card img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 19;
  /* object-fit: contain; */
  object-position: center;
  background: #0f1714;
}

.ad-creative-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--paper-solid);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-creative-nav.prev {
  left: -18px;
}

.ad-creative-nav.next {
  right: -18px;
}

.ad-creative-nav:hover {
  background: #ffffff;
}

@media (max-width: 768px) {
  .ad-creative-section {
    padding: 20px 5% 70px;
  }

  .ad-creative-nav {
    display: none;
  }

  .ad-creative-card {
    flex-basis: clamp(140px, 44vw, 190px);
  }
}

.ad-preview-section {
  padding: 70px 6%;
  background: linear-gradient(180deg, #f7f3ed 0%, #e8f0ea 100%);
}

.ad-preview-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ad-preview-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ad-preview-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-ink);
  margin-bottom: 28px;
}

.ad-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ad-preview-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #ffffff;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
  padding: 8px;
}

.ad-preview-card img {
  width: auto;
  max-width: 100%;
  display: block;
  height: clamp(220px, 28vw, 340px);
  object-fit: contain;
}

@media (max-width: 992px) {
  .ad-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.testimonial-section {
  padding: 70px 6%;
  background: linear-gradient(180deg, #f7f3ed 0%, #e8f0ea 100%);
}

.testimonial-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-ink);
  margin-bottom: 28px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
  background: #ffffff;
}

.testimonial-card img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.case-study-section {
  padding: 70px 6%;
  background: linear-gradient(135deg, #153225 0%, #1f3d2b 50%, #2b5540 100%);
}

.case-study-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.case-study-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--paper-solid);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

.case-study-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.case-study-track-wrap {
  overflow: hidden;
  width: 100%;
}

.case-study-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s ease;
}

.case-study-card {
  min-width: 100%;
  background: var(--paper-solid);
  border: 2px solid var(--paper-solid);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
  width: 100%;
}

.case-study-card img {
  width: 100%;
  display: block;
  max-height: 620px;
  object-fit: contain;
  background: #0f1714;
}

.case-study-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: var(--paper-solid);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-nav.prev {
  left: -20px;
}

.case-study-nav.next {
  right: -20px;
}

.case-study-nav:hover {
  background: #ffffff;
}

.team-section {
  padding: 70px 6%;
  background: linear-gradient(180deg, #f7f3ed 0%, #e8f0ea 100%);
}

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

.team-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 26px;
}

.team-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.team-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #ffffff;
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
}

.team-image-wrap img {
  width: 100%;
  display: block;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.team-content {
  display: grid;
  gap: 14px;
}

.team-content p {
  color: var(--muted-ink);
  line-height: 1.8;
}

.team-actions {
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .ad-preview-section {
    padding: 60px 5%;
  }

  .ad-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-section {
    padding: 60px 5%;
  }

  .case-study-section {
    padding: 60px 0;
  }

  .case-study-heading {
    padding: 0 5%;
  }

  .case-study-track-wrap {
    border-radius: 0;
    background: transparent;
  }

  .case-study-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .case-study-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    background: transparent;
  }

  .case-study-nav {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: 20px;
    background: rgba(243, 239, 232, 0.9);
  }

  .case-study-nav.prev {
    left: 10px;
  }

  .case-study-nav.next {
    right: 10px;
  }

  .team-section {
    padding: 60px 5%;
  }

  .team-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* .booking-section {
  background: linear-gradient(
    135deg,
    #f4f7f3 0%,
    #eef4f0 50%,
    #e6efe9 100%
  );
  padding: 100px 16px;
}

.booking-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.booking-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5fa78c;
  margin-bottom: 14px;
}

.booking-title {
  font-size: clamp(32px, 4vw, 44px);
  color: #3a2f2a;
  margin-bottom: 16px;
}

.booking-subtitle {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #6f645d;
}

.scheduler-wrapper {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.scheduler-wrapper iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 16px;
}

.booking-footer {
  margin-top: 24px;
  font-size: 14px;
  color: #7a6f67;
}
@media (max-width: 768px) {
  .booking-section {
    padding: 70px 14px;
  }

  .scheduler-wrapper iframe {
    height: 620px;
  }
} */

.contact-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #f7f3ed 0%, #e8f0ea 100%);
}
.contact-heading{
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 12px;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
}

.contact-row {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 28px;
}

.contact-copy {
  text-align: left;
}

.contact-context-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--accent-dark);  
  margin: 8px 0 10px;
}

.contact-context-list {
  max-width: 760px;
  font-size: 20px;
  margin: 0;
  padding-left: 22px;
  text-align: left;
  color: var(--muted-ink);
  line-height: 1.7;
  display: grid;
  gap: 6px;
}

.primary-btn {
  margin-top: 50px;
  padding: 14px 30px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--paper-solid);
  border: 2px solid var(--line);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 6px 6px 0 var(--line);
    
}

@media (max-width: 768px) {
  .contact-heading {
    text-align: center;
  }

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

  .primary-btn {
    justify-self: center;
    margin-top: 10px;
  }

  .contact-context-title {
    font-size: 20px;
  }

  .contact-context-list {
    font-size: 18px;
    gap: 4px;
    margin-bottom: 18px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;

  /* NEW */
  padding: 20px;
}

.modal-box {
  background: var(--paper-solid);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;       /* 👈 KEY */
  overflow-y: auto;       /* 👈 KEY */
  padding: 40px;
  border-radius: 18px;
  position: relative;
  border: 2px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-title {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.modal-subtitle {
  text-align: center;
  margin-bottom: 32px;
  color: var(--muted-ink);
}

.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.option-card {
  background: var(--card);
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  border: 2px solid var(--line);
  box-shadow: 6px 6px 0 rgba(15, 15, 15, 0.08);
}

.option-card button {
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--paper-solid);
  border: 2px solid var(--line);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-content {
  display: none;
  margin-top: 30px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: var(--paper-solid);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.modal-content select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted-ink) 50%),
    linear-gradient(135deg, var(--muted-ink) 50%, transparent 50%),
    linear-gradient(to right, var(--paper-solid), var(--paper-solid));
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%,
    calc(100% - 44px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 60%;
  background-repeat: no-repeat;
  padding-right: 44px;
  cursor: pointer;
}

.modal-content select:focus,
.modal-content input:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(182, 255, 46, 0.25);
}

.modal-content textarea {
  resize: none;
  height: 120px;
}

.modal-content iframe {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  border: none;
}

.form-success {
  display: none;
  margin-top: 12px;
  color: var(--accent-dark);
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .modal-options {
    grid-template-columns: 1fr;
  }
}

.comparison-section {
  padding: 60px 20px;
  background: var(--paper-solid);
  
  font-family: inherit;
}

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

.section-header {
  text-align: center;
  margin-bottom: 10px;
}



.section-header p {
  font-size: 2rem;
  color: var(--muted-ink);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.comparison-card {
  background: var(--card);
  border-radius: 14px;
  padding: 40px 30px;
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 rgba(15, 15, 15, 0.08);
}

.comparison-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--ink);
  text-transform: uppercase;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--muted-ink);
  line-height: 1.5;
}

.comparison-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.comparison-card:not(.highlight) ul li::before {
  content: "✕";
  color: var(--muted-ink);
}

.highlight {
  background: linear-gradient(180deg, rgba(49, 91, 66, 0.12), var(--paper-solid));
  border: 2px solid var(--line);
}

.comparison-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--paper-solid);
  border: 2px solid var(--line);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 6px 6px 0 var(--soft);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--line);
}


.form-response {
  margin-top: 12px;
  font-size: 14px;
}

.form-response.success {
  color: var(--accent-dark);
}

.form-response.error {
  color: var(--ink);
}

/* Global content size */
p,
.why-text,
.services-header p,
.services-footer p,
.service-card p,
.conscious-card p,
.conscious-footer,
.section-header p,
.stat-card p,
.growth-intro,
.step p,
.success-subtitle,
.success-result,
.hero-content p,
.comparison-card ul li {
  font-size: 20px;
}

@media (max-width: 768px) {
  p,
  .why-text,
  .services-header p,
  .services-footer p,
  .service-card p,
  .conscious-card p,
  .conscious-footer,
  .section-header p,
  .stat-card p,
  .growth-intro,
  .step p,
  .success-subtitle,
  .success-result,
  .comparison-card ul li,
  .why-content p {
    font-size: 18px;
  }
}
