/* =========== ROOT & RESET =========== */
:root{
  --green:#17b26a;         /* primary */
  --green-600:#129a5a;
  --green-100:#e9f8f1;
  --text:#1f2937;
  --muted:#6b7280;
  --white:#fff;
  --bg:#ffffff;
  --shadow: 0 20px 40px rgba(0,0,0,.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1200px;
  --curve: cubic-bezier(.2,.7,.2,1);
  --blue:#17b26a;
  --orange:#f59e0b;
  --gray:#6b7280;
  --gold:#d4af37;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:clamp(300px,92vw,var(--max));margin-inline:auto}

/* =========== ACCESSIBILITY =========== */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;clip:rect(0 0 0 0);overflow:hidden;border:0}

/* =========== PLACEHOLDERS (gray) =========== */
.placeholder{
  background:#d9d9d9;
  border-radius: var(--radius-lg);
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
  color:#7a7a7a;
  font-weight:700;
  letter-spacing:1px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.placeholder span{opacity:.7}
.ratio-1x1{aspect-ratio:1/1}
.ratio-4x3{aspect-ratio:4/3}
.ratio-3x4{aspect-ratio:3/4}
.ratio-16x9{aspect-ratio:16/9}

/* =========== HEADER / NAV =========== */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(8px);
  background: color-mix(in oklab, var(--white) 82%, transparent);
  border-bottom:1px solid rgba(0,0,0,.06);
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding: .8rem clamp(1rem,4vw,2rem);
}
.brand{display:flex; align-items:center; gap:.7rem; font-weight:700}

/* Logo sizing */
.site-header .logo {
  height: 60px;
  width: auto;
}

.site-footer .logo {
  height: 60px;
  width: auto;
}

.brand-mark{
  display:grid;place-items:center;
  width:42px;height:42px;border-radius:999px;
  color:var(--white); background:var(--green);
  font-weight:800; letter-spacing:.5px;
  box-shadow:var(--shadow)
}
.brand-text b{color:var(--green)}
.site-nav{display:flex; align-items:center; gap:1.2rem}
.site-nav a{padding:.55rem .8rem; border-radius:999px; transition:background .25s var(--curve)}
.site-nav a:hover{background:rgba(23,178,106,.12)}
.btn{
  border:none; cursor:pointer; border-radius:999px;
  padding:.85rem 1.2rem; font-weight:700; transition:all .25s var(--curve);
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
}
.btn--primary{background:var(--green); color:var(--white); box-shadow:0 10px 24px rgba(23,178,106,.25)}
.btn--primary:hover{background:var(--green-600); transform:translateY(-1px)}
.btn--ghost{border:2px solid var(--green); color:var(--green); background:transparent}
.btn--ghost:hover{background:var(--green); color:var(--white)}
/* Mobile nav */
.nav-toggle{display:none;background:transparent;border:0;gap:4px}
.nav-toggle-line{display:block;width:26px;height:2px;background:#1f2937;border-radius:2px}
@media (max-width:860px){
  .nav-toggle{display:grid}
  .site-nav{
    position:fixed; inset:68px 1rem auto 1rem; border-radius:20px;
    background:var(--white); padding:1rem; gap:.6rem; flex-direction:column;
    box-shadow:var(--shadow); transform-origin: top right;
    transform: scale(.98) translateY(-10px); opacity:0; pointer-events:none;
  }
  .site-nav.is-open{opacity:1; transform: scale(1) translateY(0); pointer-events:auto}
}

/* =========== CURVY BACKGROUNDS =========== */
.bg-wave{position:absolute; left:0; width:100%; height:auto; pointer-events:none}
.bg-wave path{fill:var(--green-100)}
.bg-wave--top{top:0}
.bg-wave--bottom{bottom:-2px}
.bg-wave--mid{bottom:-1px}
.bg-wave--cta path{fill:var(--green-100)}

/* =========== HERO =========== */
.section{position:relative; padding: clamp(3.2rem, 6vw, 6rem) 0}
.section--alt{background: #f8fdfb}
.hero{
  padding-top:clamp(4rem,10vw,8rem);
  overflow:clip;
  background: radial-gradient(1200px 600px at 100% -10%, rgba(23,178,106,.10), transparent 60%);
}
.hero__content{display:grid; align-items:center; gap:clamp(2rem,5vw,4rem);
  grid-template-columns: 1.15fr .85fr;
}
.hero__copy h1{
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height:1.1; margin:0 0 .6rem 0; font-weight:800
}
.underline{background:linear-gradient(120deg, rgba(23,178,106,.15), rgba(23,178,106,.35));
  border-radius:16px; padding: .05em .18em}
.accent{color:var(--green)}
.hero__cta{display:flex; gap:.8rem; flex-wrap:wrap; margin-top:1rem}
.hero__badges{display:flex; gap:.8rem; flex-wrap:wrap; margin-top:1rem; color:var(--muted)}
.hero__badges li{background: #eefaf4; border:1px solid rgba(23,178,106,.20); color:#065f46;
  padding:.4rem .7rem; border-radius:999px; font-weight:600}
.hero__media{position:relative}
.bubble{position:absolute; border-radius:999px; background: color-mix(in oklab, var(--green) 20%, white);
  filter:blur(0); opacity:.7; animation:float 10s var(--curve) infinite}
.bubble--1{width:60px;height:60px; top:-10px; right:10%}
.bubble--2{width:22px;height:22px; top:30%; right:0}
.bubble--3{width:36px;height:36px; bottom:4%; right:18%}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
@media (max-width:980px){
  .hero__content{grid-template-columns:1fr}
}

/* =========== CARDS / PROGRAMS =========== */
.section__head{text-align:center; max-width:760px; margin:0 auto 1.4rem}
.section__head h2{font-size: clamp(1.6rem, 3.4vw, 2.2rem)}
.grid{display:grid; gap:clamp(1rem, 2.4vw, 2rem)}
.cards{grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))}
.card{
  background:var(--white); border-radius: var(--radius-xl);
  overflow:hidden; box-shadow: var(--shadow); transform:translateZ(0);
}
.card__body{padding:1rem 1.1rem 1.2rem}
.card h3{margin:.2rem 0 .4rem 0}
.chiplist{display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.6rem}
.chiplist li{background:#ecfdf5; color:#065f46; padding:.35rem .6rem; border-radius:999px; font-weight:700; font-size:.85rem}

/* =========== COACHES =========== */
.coaches{grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))}
.coach{
  background:var(--white); border-radius: var(--radius-lg); padding:1rem;
  display:flex; align-items:center; gap:1rem; box-shadow:var(--shadow)
}
.coach__avatar{width:84px}
.coach__body h3{margin:.2rem 0 0}

/* =========== MOSAIC + STATS =========== */
.mosaic{display:grid; gap:1rem;
  grid-template-columns: 2fr 1fr 1.2fr; grid-auto-rows: 160px;
}
.mosaic__item:nth-child(1){grid-row: span 2}
.mosaic__item:nth-child(3){grid-row: span 2}
@media (max-width:860px){
  .mosaic{grid-template-columns:1fr 1fr; grid-auto-rows:140px}
  .mosaic__item:nth-child(1), .mosaic__item:nth-child(3){grid-row: auto}
}
.stats{display:flex; gap:1.4rem; flex-wrap:wrap; justify-content:center; margin-top:1.4rem}
.stats li{background:var(--white); border-radius:20px; padding:1rem 1.4rem; box-shadow:var(--shadow); text-align:center}
.stats strong{display:block; font-size:1.8rem; color:var(--green); line-height:1}

/* =========== PRICING =========== */
.price-grid{grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))}
.price-card{
  background:var(--white); border-radius:28px; padding:1.3rem 1.2rem; box-shadow:var(--shadow);
  position:relative; overflow:hidden
}
.price-card--featured{background:linear-gradient(180deg, #ffffff 0%, #f1fdf8 100%); border:1px solid rgba(23,178,106,.25)}
.price-card .tag{
  position:absolute; right:14px; top:14px; background:var(--green); color:white;
  padding:.25rem .55rem; border-radius:999px; font-weight:800; font-size:.75rem
}
.price{font-size:2rem; font-weight:800; color:var(--green); margin:.2rem 0 .6rem}
.price sup{font-size:.8rem; top:-.5em; position:relative}
.price span{font-size:.9rem; color:var(--muted)}
.list{margin:.6rem 0 1rem 0; padding-left:1rem}
.list li{margin:.35rem 0; list-style: "✓ ";}

/* =========== CTA =========== */
.section--cta{
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(23,178,106,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
  padding-bottom:0
}
.cta{display:grid; gap:1.4rem; grid-template-columns:1.1fr .9fr; align-items:center}
.cta__form{display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.6rem}
.cta__form input{
  flex:1 1 220px; border-radius:999px; padding:.85rem 1rem; border:1.5px solid rgba(0,0,0,.12);
  outline:0; transition:border-color .2s var(--curve)
}
.cta__form input:focus{border-color:var(--green)}
@media (max-width:980px){ .cta{grid-template-columns:1fr} }

/* =========== FOOTER =========== */
.site-footer{background:#0b3b28; color:#d6f5e6; margin-top:2rem; padding:2.2rem 0 2.4rem; position:relative}
.footer__grid{display:grid; gap:1rem; grid-template-columns:1.2fr .8fr}
.footer__brand .brand-mark{background:#0f5a3c}
.footer__links{display:grid; gap:.4rem; align-content:start}
.footer__links a{color:#c8f1e1}
.footer__links a:hover{color:#ffffff}
.footer__copy{grid-column:1/-1; margin-top:.8rem; color:#a7e8cd}
@media (max-width:760px){ .footer__grid{grid-template-columns:1fr} }

/* =========== BLOBS (soft curved accents) =========== */
.blob{
  position:absolute; inset:auto auto -40px -40px; width:240px; height:240px;
  background: color-mix(in oklab, var(--green) 8%, white); border-radius: 60% 40% 70% 30%/40% 50% 50% 60%;
  filter: blur(20px); z-index:0
}
.blob--two{inset:auto -40px -40px auto}
.blob--one{inset:-20px auto auto -20px}

/* =========== SCROLL REVEAL (no glitches) =========== */
.reveal{opacity:0; transform: translateY(16px) scale(.98); will-change: transform, opacity}
.reveal.is-visible{opacity:1; transform: none; transition: transform .6s var(--curve), opacity .6s var(--curve)}

/* =========== CUSTOM STYLES =========== */
.hero--home .hero__content {
  grid-template-columns: 1fr !important;
  text-align: center;
}

/* AI Study Hubs Hero with Image */
.ai-study-hero .hero__content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  text-align: left !important;
  gap: 3rem !important;
  align-items: center !important;
}

.ai-study-hero .hero__copy {
  text-align: left;
}

.ai-study-hero .hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-study-hero .hero-curved-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 50% 20% 50% 20%;
  box-shadow: 0 20px 60px rgba(23, 178, 106, 0.3);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: all 0.4s ease;
}

.ai-study-hero .hero-curved-img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(23, 178, 106, 0.4);
}

@media (max-width: 860px) {
  .ai-study-hero .hero__content {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .ai-study-hero .hero__copy {
    text-align: center;
  }

  .ai-study-hero .hero__image {
    order: -1;
    margin-bottom: 2rem;
  }

  .ai-study-hero .hero-curved-img {
    max-width: 350px;
  }
}

/* About page specific grid */
.about-grid {
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Skills/Other two-column sections */
.skills-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 860px) {
  .skills-grid { grid-template-columns: 1fr; }
}
.working-grid {
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) {
  .working-grid { grid-template-columns: 1fr; }
}

/* List with icons (used for feature lists) */
.list-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-icons li {
  margin: 0.5rem 0;
}

/* Steps list (portfolio page) */
.steps {
  list-style: none;
  margin: 0.6rem 0;
  padding: 0;
}
.steps li {
  margin: 0.4rem 0;
}
.star {
  color: var(--orange);
  font-weight: 800;
  margin-right: 0.3rem;
}

/* Pricing plan cards */
.plan-basic, .plan-standard, .plan-premium, .plan-silver, .plan-gold {
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
}
.plan-basic { border-color: var(--green); }
.plan-standard { border-color: var(--blue); }
.plan-premium { border-color: var(--orange); }
.plan-silver { border-color: var(--gray); }
.plan-gold { border-color: var(--gold); }
.plan-title {
  text-align: center;
  color: #fff;
  padding: 0.5rem 0;
}
.plan-basic .plan-title { background: var(--green); }
.plan-standard .plan-title { background: var(--blue); }
.plan-premium .plan-title { background: var(--orange); }
.plan-silver .plan-title { background: var(--gray); }
.plan-gold .plan-title { background: var(--gold); }
.plan-title h3 { margin: 0; font-size: 1.2rem; }
.plan-price { margin: 0; font-weight: 800; }
.plan-basic ul, .plan-standard ul, .plan-premium ul, .plan-silver ul, .plan-gold ul {
  list-style: none;
  padding-left: 1.2rem;
  margin: 0.8rem 0 0;
}
.plan-basic li::before {
  content: "\2714\0020";
  color: var(--green);
  margin-left: -1.2rem;
  margin-right: 0.4rem;
}
.plan-standard li::before {
  content: "\2714\0020";
  color: var(--blue);
  margin-left: -1.2rem;
  margin-right: 0.4rem;
}
.plan-premium li::before {
  content: "\2714\0020";
  color: var(--orange);
  margin-left: -1.2rem;
  margin-right: 0.4rem;
}
.plan-silver li::before {
  content: "\2714\0020";
  color: var(--gray);
  margin-left: -1.2rem;
  margin-right: 0.4rem;
}
.plan-gold li::before {
  content: "\2714\0020";
  color: var(--gold);
  margin-left: -1.2rem;
  margin-right: 0.4rem;
}

/* Footer custom */
.footer-top {
  background: linear-gradient(180deg, #ffffff 0%, #17b26a 100%);
  padding: 2rem 0;
}
.footer-top .footer__grid h4 {
  margin: 0 0 0.5rem;
}
.footer-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-top li {
  margin: 0.3rem 0;
}
.footer-bottom {
  background: #0b3b28;
  color: #d6f5e6;
  padding: 1rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .footer__copy {
  margin: 0;
}
.footer-bottom .social a {
  color: #d6f5e6;
  font-size: 1.1rem;
}
.footer-bottom .social a + a {
  margin-left: 1rem;
}
.footer-bottom .social a:hover {
  color: #ffffff;
}

/* Contact form */
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.required {
  color: #e11d48;
}
.form-group {
  margin-bottom: 1.5rem;
}

/* Form Sections */
.form-section {
  background: #f9fdfb;
  border: 1px solid rgba(23, 178, 106, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(23, 178, 106, 0.2);
}

.field-helper-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.3rem 0 0.5rem 0;
  font-style: italic;
}

#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=url],
#contact-form select,
#contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  outline: none;
  font: inherit;
  background: var(--white);
  transition: all 0.3s ease;
}

#contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 178, 106, 0.1);
}

#contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}


/* === FIXES BASED ON FEEDBACK === */

/* Center the 'See Full Pricing' button on Home without full width */
.section .list-icons + p {
  text-align: center;
}
.section .list-icons + p .btn {
  display: inline-block; /* keep natural width */
  margin: 1rem auto 0 auto;
}



/* Center lists on homepage */
.list-icons, .list-packages {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Fix wave overlap: push hero text down */
.hero .container h1, .hero .container p {
  position: relative;
  z-index: 2;
}
.bg-wave--bottom {
  bottom: -60px !important;
}

/* About page fixes */
.about-grid img, .about-grid .placeholder {
  max-width: 90%;
  margin: 0 auto;
}
.about-grid {
  justify-items: center;
}

/* "What makes us different" center align */
.diff-grid {
  align-items: center;
  justify-items: center;
}

/* Portfolio, About, Pricing hero wave spacing */
.hero.portfolio-hero .bg-wave--bottom,
.hero.about-hero .bg-wave--bottom,
.hero.pricing-hero .bg-wave--bottom {
  bottom: -60px !important;
}

/* Pricing plan title boxes rounded */
.plan-title {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Contact form center */
#contact-form {
  max-width: 600px;
  margin: 0 auto;
}


/* Curvy + Animated Placeholder Images */
.curvy-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.animated-img {
  opacity: 0;
  transform: scale(0.96);
  transition: transform 1.2s var(--curve), opacity 1.2s var(--curve);
}

.animated-img.is-visible {
  opacity: 1;
  transform: scale(1);
}


/* Curvy + Animated Placeholder Images */
.img-ph {
  display:block;
  width:100%;
  height:auto;
  background:#d9d9d9;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.curvy-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.animated-img {
  opacity: 0;
  transform: scale(0.96);
  transition: transform 1.2s var(--curve), opacity 1.2s var(--curve);
}
.animated-img.is-visible {
  opacity: 1;
  transform: scale(1);
}


/* =========== AI STUDY HUBS ENHANCED THEME =========== */
/* Enhanced color scheme for AI Study Hubs page only */

.ai-study-hero {
  background:
    radial-gradient(1400px 700px at 100% -10%, rgba(23, 178, 106, 0.15), transparent 50%),
    radial-gradient(1200px 600px at 0% 40%, rgba(23, 178, 106, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f9fdfb 100%);
}

/* AI-themed accent color (vibrant green gradient) */
.accent-ai {
  background: linear-gradient(135deg, #17b26a 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* AI Primary button with gradient */
.btn--ai-primary {
  background: linear-gradient(135deg, #17b26a 0%, #129a5a 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 178, 106, 0.35);
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  transition: all 0.25s var(--curve);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn--ai-primary:hover {
  background: linear-gradient(135deg, #129a5a 0%, #0f8049 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(23, 178, 106, 0.45);
}

/* Ghost button for AI page */
.btn--ghost-ai {
  border: 2px solid #17b26a;
  color: #17b26a;
  background: transparent;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  transition: all 0.25s var(--curve);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn--ghost-ai:hover {
  background: linear-gradient(135deg, #17b26a 0%, #129a5a 100%);
  color: var(--white);
  transform: translateY(-1px);
}

/* Alternative section background for AI page */
.section--ai-alt {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

/* AI wave background (green) */
.bg-wave--ai path {
  fill: #d1fae5;
}

/* AI-themed icons */
.ai-icon {
  color: #17b26a;
  font-size: 1.8rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Icon circle for feature cards */
.ai-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.ai-icon-circle i {
  font-size: 1.8rem;
  color: #17b26a;
}

/* AI feature cards - add perspective to parent grid */
.cards.ai-cards-3d {
  perspective: 1200px;
}

/* AI feature cards with advanced 3D hover effect */
.ai-feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid rgba(23, 178, 106, 0.15);
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--curve), box-shadow 0.6s var(--curve), border-color 0.6s var(--curve);
}

.ai-feature-card:hover {
  transform: translateZ(30px) rotateX(15deg) rotateY(15deg);
  box-shadow:
    0 40px 80px rgba(23, 178, 106, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(23, 178, 106, 0.5);
}

/* AI feature card elements with depth */
.ai-feature-card .ai-icon-circle {
  transition: transform 0.6s var(--curve);
  transform: translateZ(0);
}

.ai-feature-card:hover .ai-icon-circle {
  transform: translateZ(60px) scale(1.1);
}

.ai-feature-card .card__body h3 {
  transition: transform 0.6s var(--curve);
  transform: translateZ(0);
}

.ai-feature-card:hover .card__body h3 {
  transform: translateZ(40px);
}

.ai-feature-card .card__body p {
  transition: transform 0.6s var(--curve);
  transform: translateZ(0);
}

.ai-feature-card:hover .card__body p {
  transform: translateZ(20px);
}

/* AI-themed list styling */
.list-ai {
  list-style: none;
  padding-left: 0;
  margin: 0.8rem 0;
}

.list-ai li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.list-ai li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #17b26a;
  font-weight: 800;
  font-size: 1.1rem;
}

/* AI placeholder container */
.ai-placeholder-container {
  position: relative;
}

/* AI CTA section */
.section--ai-cta {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(23, 178, 106, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  padding-bottom: 0;
}

/* =========== SCHOOL EXAMPLE SECTION =========== */

.school-showcase {
  margin-top: 2rem;
}

/* School Info Badge */
.school-info {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.school-badge {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(107, 155, 209, 0.2);
}

.school-badge i.fa-school {
  font-size: 3rem;
  color: #6b9bd1;
  background: linear-gradient(135deg, #dae8f5 0%, #b8d4ee 100%);
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
}

.school-badge h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.6rem;
  color: var(--text);
}

.school-location {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.school-location i {
  color: #6b9bd1;
  margin-right: 0.3rem;
}

/* School Stats */
.school-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #eff6fd 0%, #dbe8f7 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 155, 209, 0.3);
}

.stat-item i {
  font-size: 1.8rem;
  color: #6b9bd1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: #6b9bd1;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.stat-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

/* App Screenshots Section */
.app-screenshots {
  margin: 3rem 0;
}

.screenshots-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
}

.screenshot-item {
  position: relative;
}

/* Screenshot images */
.screenshot-img {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s var(--curve), box-shadow 0.4s var(--curve);
  border: 3px solid rgba(107, 155, 209, 0.3);
  cursor: pointer;
  display: block;
}

.screenshot-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(107, 155, 209, 0.3);
}

/* Screenshot clickable cursor */
.screenshot-clickable {
  cursor: pointer;
  position: relative;
}

.screenshot-label {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 860px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-item .placeholder {
    min-height: 250px;
  }
}

/* School Access Card */
.school-access {
  margin: 2.5rem 0;
}

.access-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7fd 100%);
  border: 2px solid #6b9bd1;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(107, 155, 209, 0.2);
}

.access-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6b9bd1 0%, #4a7db8 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.access-icon i {
  font-size: 2rem;
  color: white;
}

.access-content h3 {
  margin: 0 0 0.8rem 0;
  color: var(--text);
}

.access-content p {
  margin: 0 0 1rem 0;
  color: var(--muted);
}

.access-requirement {
  background: linear-gradient(135deg, #dae8f5 0%, #b8d4ee 100%);
  border-left: 4px solid #6b9bd1;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.access-requirement i {
  font-size: 1.5rem;
  color: #6b9bd1;
}

.access-requirement span {
  font-size: 0.95rem;
  color: var(--text);
}

.access-requirement strong {
  color: #6b9bd1;
  font-weight: 800;
}

.access-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
}

.access-note i {
  color: #6b9bd1;
  margin-right: 0.4rem;
}

@media (max-width: 768px) {
  .access-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* =========== FULLSCREEN SCREENSHOT MODAL =========== */

.screenshot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.3s var(--curve);
}

.screenshot-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  width: 85vw;
  height: 85vh;
  position: relative;
  animation: modalZoomIn 0.4s var(--curve);
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-screenshot-img {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-xl);
  border: 4px solid #6b9bd1;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .modal-screenshot-img {
    max-width: 90vw;
    max-height: 90vh;
  }

  .screenshot-modal {
    padding: 1.5rem;
  }
}

.modal-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #6b9bd1;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10000;
  transition: all 0.3s var(--curve);
  box-shadow: 0 4px 16px rgba(107, 155, 209, 0.6);
}

.modal-close:hover {
  background: #4a7db8;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 24px rgba(107, 155, 209, 0.8);
}

.modal-close i {
  font-size: 1.8rem;
  color: white;
}

@media (max-width: 768px) {
  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }

  .modal-close i {
    font-size: 1.5rem;
  }

  .modal-content {
    padding: 0.5rem;
  }
}


/* =========== SOCIAL MEDIA BUTTONS =========== */

.social-card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(15px);
  box-shadow: inset 0 0 20px rgba(23, 178, 106, 0.15),
    inset 0 0 5px rgba(23, 178, 106, 0.25), 0 5px 5px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  margin-left: auto;
  margin-right: 1rem;
}

.social-card:hover {
  animation: ease-out 5s;
  background: rgba(23, 178, 106, 0.05);
}

.social-card ul {
  padding: 1rem;
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0;
}

.social-card ul li {
  cursor: pointer;
  position: relative;
}

.social-svg {
  transition: all 0.3s;
  padding: 1rem;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  color: #17b26a;
  fill: currentColor;
  box-shadow: inset 0 0 20px rgba(23, 178, 106, 0.2),
    inset 0 0 5px rgba(23, 178, 106, 0.3), 0 5px 5px rgba(0, 0, 0, 0.1);
}

.social-text {
  opacity: 0;
  border-radius: 5px;
  padding: 5px 10px;
  transition: all 0.3s;
  color: #17b26a;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  z-index: 9999;
  box-shadow: -5px 0 1px rgba(23, 178, 106, 0.1),
    -10px 0 1px rgba(23, 178, 106, 0.1),
    inset 0 0 20px rgba(23, 178, 106, 0.2),
    inset 0 0 5px rgba(23, 178, 106, 0.3), 0 5px 5px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  white-space: nowrap;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.social-iso-pro {
  transition: 0.5s;
  position: relative;
}

.social-iso-pro:hover a > .social-svg {
  transform: translate(0, -15px);
  border-radius: 100%;
}

.social-iso-pro:hover .social-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.social-iso-pro:hover .social-svg {
  transform: translate(0, -5px);
}

.social-iso-pro span {
  opacity: 0;
  position: absolute;
  color: #17b26a;
  border-color: #17b26a;
  box-shadow: inset 0 0 20px rgba(23, 178, 106, 0.2),
    inset 0 0 5px rgba(23, 178, 106, 0.3), 0 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
  height: 60px;
  width: 60px;
  top: 0;
  left: 0;
}

.social-iso-pro:hover span {
  opacity: 1;
}

.social-iso-pro:hover span:nth-child(1) {
  opacity: 0.2;
}

.social-iso-pro:hover span:nth-child(2) {
  opacity: 0.4;
  transform: translate(0, -5px);
}

.social-iso-pro:hover span:nth-child(3) {
  opacity: 0.6;
  transform: translate(0, -10px);
}

@media (max-width: 768px) {
  .social-card ul {
    gap: 0.8rem;
  }

  .social-svg {
    height: 50px;
    width: 50px;
    padding: 0.8rem;
  }

  .social-iso-pro span {
    height: 50px;
    width: 50px;
  }
}

/* =========== ENHANCED HOMEPAGE STYLES =========== */

/* Enhanced Hero Section */
.hero--enhanced .hero__content {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 4rem !important;
  align-items: center !important;
  text-align: left !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(23, 178, 106, 0.1), rgba(23, 178, 106, 0.05));
  border: 1px solid rgba(23, 178, 106, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: #fbbf24;
}

.accent-gradient {
  background: linear-gradient(135deg, #17b26a 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
  margin: 1.5rem 0;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem 0;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--xl {
  padding: 1.2rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-item i {
  color: var(--green);
  font-size: 1.1rem;
}

/* Hero Image with Floating Cards */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
  color: var(--green);
  font-size: 1.2rem;
}

.hero-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.hero-card-3 {
  bottom: 5%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(180deg, #f9fdfb 0%, #ffffff 100%);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(23, 178, 106, 0.15);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

/* 3D Feature Cards */
.cards-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

.feature-card-3d {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  transform-style: preserve-3d;
}

.feature-card-3d:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(23, 178, 106, 0.2);
}

.feature-icon-3d {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(23, 178, 106, 0.1), rgba(23, 178, 106, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card-3d:hover .feature-icon-3d {
  transform: translateZ(20px) scale(1.1);
  background: var(--green);
}

.feature-icon-3d i {
  font-size: 2rem;
  color: var(--green);
  transition: all 0.3s ease;
}

.feature-card-3d:hover .feature-icon-3d i {
  color: var(--white);
}

.feature-card-3d h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card-3d p {
  color: var(--muted);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: linear-gradient(135deg, #f9fdfb 0%, #ffffff 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  border: 2px solid rgba(23, 178, 106, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(23, 178, 106, 0.15);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(23, 178, 106, 0.4);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(23, 178, 106, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.step-icon i {
  font-size: 2.2rem;
  color: var(--green);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
}

.process-connector {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(23, 178, 106, 0.3) 100%);
  position: relative;
}

.process-connector::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
}

/* Services Showcase */
.services-showcase {
  background: linear-gradient(180deg, #f9fdfb 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(23, 178, 106, 0.2);
}

.service-card-featured {
  border-color: var(--green);
  box-shadow: 0 15px 40px rgba(23, 178, 106, 0.2);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #17b26a 0%, #129a5a 100%);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(23, 178, 106, 0.4);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-card-header i {
  font-size: 2.5rem;
  color: var(--green);
}

.service-card-header h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-dark);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--green);
  font-size: 1.1rem;
}

.service-card .btn {
  width: 100%;
  margin-top: 1.5rem;
  justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #f9fdfb 0%, #ffffff 100%);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid var(--green);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(23, 178, 106, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Enhanced CTA Section */
.cta-enhanced {
  background: linear-gradient(180deg, #ffffff 0%, #f9fdfb 50%, #e8f7f0 100%);
  position: relative;
  overflow: hidden;
}

.cta-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(23, 178, 106, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(23, 178, 106, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(23, 178, 106, 0.1), rgba(23, 178, 106, 0.05));
  border: 3px solid rgba(23, 178, 106, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.cta-icon-large i {
  font-size: 3rem;
  color: var(--green);
}

.cta-content h2 {
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.cta-benefit-item i {
  font-size: 1.5rem;
  color: var(--green);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-actions .btn--primary {
  background: linear-gradient(135deg, #17b26a 0%, #129a5a 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(23, 178, 106, 0.3);
}

.cta-actions .btn--primary:hover {
  background: linear-gradient(135deg, #129a5a 0%, #0d7a47 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(23, 178, 106, 0.4);
}

.cta-contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-contact-info a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.cta-contact-info a:hover {
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 980px) {
  .hero--enhanced .hero__content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center !important;
  }

  .hero-badge {
    display: inline-flex;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }

  .hero__cta {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-trust-bar {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .trust-item {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-floating-card {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }

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

  .stat-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .cards-3d {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card-3d {
    padding: 2rem 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    padding: 2rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }

  h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section__head {
    margin-bottom: 2rem;
  }

  .section__head p {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero__cta {
    gap: 0.75rem;
  }

  .btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn--xl {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .feature-card-3d,
  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .feature-icon-3d {
    width: 60px;
    height: 60px;
  }

  .feature-icon-3d i {
    font-size: 1.7rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon i {
    font-size: 2rem;
  }

  .service-card-header i {
    font-size: 2rem;
  }

  .cta-icon-large {
    width: 80px;
    height: 80px;
  }

  .cta-icon-large i {
    font-size: 2.5rem;
  }

  .cta-subtitle {
    font-size: 1.05rem;
  }

  .cta-benefit-item {
    font-size: 0.95rem;
  }

  .cta-benefit-item i {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .hero-card-1 {
    right: -5%;
    top: 5%;
  }

  .hero-card-2 {
    left: -5%;
  }

  .hero-card-3 {
    right: -5%;
  }

  .hero-floating-card {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
  }

  .hero-floating-card i {
    font-size: 1rem;
  }

  .hero-trust-bar {
    padding-top: 1rem;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .trust-item i {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .feature-card-3d,
  .service-card {
    padding: 1.5rem 1rem;
  }

  .process-step {
    padding: 2rem 1.25rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.9rem;
  }

  .btn--lg {
    padding: 0.8rem 1.3rem;
    font-size: 0.9rem;
  }

  .btn--xl {
    padding: 0.95rem 1.6rem;
    font-size: 0.95rem;
  }

  .cta-benefits {
    gap: 0.75rem;
  }

  .cta-contact-info {
    font-size: 0.95rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: 1.6rem !important;
    line-height: 1.2;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin: 1rem 0;
  }

  .hero__cta {
    gap: 0.6rem;
  }

  .hero-trust-bar {
    gap: 0.8rem;
  }

  .hero-floating-card {
    font-size: 0.65rem;
    padding: 0.35rem 0.55rem;
  }

  .hero-card-1,
  .hero-card-2,
  .hero-card-3 {
    display: none;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .feature-card-3d,
  .service-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon-3d {
    width: 55px;
    height: 55px;
  }

  .feature-icon-3d i {
    font-size: 1.5rem;
  }

  .process-step {
    padding: 1.75rem 1rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon i {
    font-size: 1.8rem;
  }

  .service-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .service-card-header i {
    font-size: 1.8rem;
  }

  .featured-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  .cta-icon-large {
    width: 70px;
    height: 70px;
  }

  .cta-icon-large i {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.85rem;
  }

  .btn--lg,
  .btn--xl {
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
  }
}
