  :root {
    --dark-teal: #00575D;
    --deep-teal: #013337;
    --terracotta: #FE7736;
    --gold: #D4A853;
    --warm-gold: #E8C47A;
    --cream: #F2F6F6;
    --soft-cream: #F9FBFB;
    --sage: #6B8F71;
    --sky: #4A7C9E;
    --text: #1A120A;
    --text-muted: #6B5A4E;
    --product: #013337;
    --product-light: rgba(45,74,62,0.1);
    --product-border: rgba(45,74,62,0.22);
    --product-glow:  rgba(45,74,62,0.18);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(242, 246, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 98, 45, 0.12);
  }
  .nav-logo {
    width: 10%;
  }
  .nav-logo img {
    width: 100%;
	display: block;
  }
  .nav-logo span { color: var(--terracotta); }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--terracotta); }
  .nav-cta {
    background: var(--terracotta);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--dark-teal) !important; transform: translateY(-1px); }
  
  .nav-item { position: relative; }
  .nav-item > a { display: flex; align-items: center; gap: 0.3rem; }
  .nav-item > a::after {
    content: "";
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.5;
    transition: transform 0.25s, opacity 0.25s;
  }
  
  .dropdown {
    position: absolute; top: calc(100% + 0.9rem); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: white;
    border: 1px solid rgba(196,98,45,0.12);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(44,24,16,0.14);
    padding: 0.5rem;
    min-width: 210px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 200;
  }
  .dropdown::before {
    content: "";
    position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
    width: 12px; height: 6px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: white;
  }
  .nav-item:hover .dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown a {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    font-size: 0.83rem !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s !important;
    white-space: nowrap;
  }
  .dropdown a:hover { background: var(--soft-cream); color: var(--terracotta) !important; }
  .dropdown-icon {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
  }
  .dd-sel  .dropdown-icon { background: rgba(196,98,45,0.1); }
  .dd-edu  .dropdown-icon { background: rgba(45,74,62,0.1); }
  .dd-more .dropdown-icon { background: rgba(74,124,158,0.1); }
  .dropdown-divider { height: 1px; background: rgba(196,98,45,0.08); margin: 0.3rem 0.4rem; }
  .dd-meta { display: flex; flex-direction: column; }
  .dd-meta small { font-size: 0.67rem; color: var(--text-muted); opacity: 0.65; margin-top: 0.05rem; font-weight: 400 !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
    position: relative; z-index: 2;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(196, 98, 45, 0.1);
    border: 1px solid rgba(196, 98, 45, 0.25);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    width: fit-content;
    animation: fadeUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--dark-teal);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--terracotta);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .hero_inner_pxl {
	  display: flex;
	  align-items:flex-end;
	  justify-content:center;
  }
  .hero_inner_pxl img{
	  width: 100%;
	  display: block;
  }
  
  .btn-primary {
    background: var(--terracotta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: var(--dark-teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,0.2); }
  .btn-secondary {
    background: transparent;
    color: var(--dark-teal);
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--dark-teal);
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-secondary:hover { background: var(--dark-teal); color: white; transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem;
    animation: fadeUp 0.8s ease 0.4s both;
    padding-top: 2rem;
    border-top: 1px solid rgba(196,98,45,0.15);
  }
  .stat { display: flex; flex-direction: column; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--terracotta);
    line-height: 1;
  }
  .stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; margin-top: 0.3rem; text-transform: uppercase; }

  .hero-right {
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease 0.3s both;
  }
  .hero-image-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(196,98,45,0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 70%, rgba(212,168,83,0.1) 0%, transparent 50%),
      linear-gradient(135deg, var(--soft-cream) 0%, #EDE0CC 100%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image:
      repeating-linear-gradient(45deg, var(--terracotta) 0, var(--terracotta) 1px, transparent 0, transparent 50%),
      repeating-linear-gradient(-45deg, var(--terracotta) 0, var(--terracotta) 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
  }
  .hero-visual {
    position: relative; z-index: 2;
    height: 100%; display: flex; align-items: center; justify-content: center;
    padding: 5rem 3rem 0;
  }
  .trans_stat_box {
	  position: absolute;
	  display:flex;
	  align-items: center;
	  justify-content: space-between;
	  flex-wrap: wrap;
	  width: 35%;
	  background: rgba(255, 255, 255, 0.65);
	  backdrop-filter: blur(4px);
	  box-shadow: 9px 13px 4px rgba(44, 24, 16, 0.14);
	  padding: 2%;
	  border-radius: 5px;
	  z-index: 1;
  }
  .trans_stat_box_left {
	  width:20%;
  }
  .trans_stat_box_left .material-symbols-outlined {
	  font-size: 2.5rem;
	  letter-spacing: 1px;
	  color: #fff;
  }
  .trans_stat_box_right {
	  width:75%;
  }
  .trans_stat_box_right h5 {
	  color: #fff;
	  font-weight: 900;
	  font-size: 1.5rem;
	  margin-bottom: 2%;
	  text-transform: uppercase;
  }
  .trans_stat_box_right span {
	  color: #fff;
	  font-size: 13px;
	  font-weight:500;
	  text-transform: uppercase;
	  letter-spacing: 2px;
  } 
  .box__1 {
	  background: rgba(74,183,173,0.65);
	  top: 20%;
	  right:60%;
  }
  .box__2 {
	  background: rgba(10,162,198,0.65);
	  top: 40%;
	  right:10%;
  }
  .box__3 {
	  background: rgba(230,92,18,0.65);
	  top: 55%;
	  right:50%;
  }
  .box__4 {
	  background: rgba(134,9,26,0.65);
	  top: 70%;
	  right:20%;
  }
  
  /* PROBLEM SECTION */
  .problem {
    background: var(--dark-teal);
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .problem::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  }
  .problem-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    position: relative; z-index: 2;
  }
  .section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .problem h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .problem h2 em { font-style: italic; color: var(--gold); }
  .problem p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250,245,237,0.75);
    margin-bottom: 1rem;
  }
  .problem-points { list-style: none; }
  .problem-points li {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212,168,83,0.12);
  }
  .problem-points li:last-child { border-bottom: none; }
  .pp-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(212,168,83,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .pp-text { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; line-height: 1.6; color: rgba(250,245,237,0.85); }
  .pp-text strong { color: white; display: block; margin-bottom: 0.2rem; font-weight: 600; }

  /* PROGRAMS */
  .programs {
    padding: 7rem 5rem;
    max-width: 1200px; margin: 0 auto;
  }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--dark-teal);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .section-header h2 em { font-style: italic; color: var(--terracotta); }
  .section-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 540px; margin: 0 auto;
    line-height: 1.7;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .program-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(196,98,45,0.1);
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .pc-dark-teal::before { background: linear-gradient(90deg, var(--terracotta), var(--gold)); }
  .pc-deep-teal::before { background: linear-gradient(90deg, var(--deep-teal), var(--sage)); }
  .pc-sky::before { background: linear-gradient(90deg, var(--sky), #7AB8D4); }
  .program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,24,16,0.1); }
  .pc-emoji { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
  .pc-age {
    display: inline-block;
    background: var(--soft-cream);
    color: var(--terracotta);
    font-size: 0.72rem; font-weight: 700;
    padding: 0.25rem 0.75rem; border-radius: 1rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 1rem;
  }
  .program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }
  .program-card p {
    font-size: 0.88rem; line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  .pc-features { list-style: none; }
  .pc-features li {
    font-size: 0.82rem; color: var(--text-muted);
    padding: 0.3rem 0;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .pc-features li::before { content: '✓'; color: var(--terracotta); font-weight: 700; }
  .pc-price {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(196,98,45,0.1);
    display: flex; align-items: baseline; gap: 0.5rem;
  }
  .price-amt {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 700;
    color: var(--dark-teal);
  }
  .price-period { font-size: 0.82rem; color: var(--text-muted); }
  .pc-cta {
    display: block; width: 100%; margin-top: 1.2rem;
    background: var(--soft-cream); color: var(--dark-teal);
    border: 2px solid var(--dark-teal);
    padding: 0.8rem; border-radius: 2rem;
    font-weight: 700; font-size: 0.85rem;
    text-align: center; text-decoration: none; cursor: pointer;
    transition: all 0.3s;
  }
  .pc-cta:hover { background: var(--terracotta); color: white; border-color: var(--terracotta); }
  .pc-cta-primary {
    background: var(--terracotta); color: white; border-color: var(--terracotta);
  }
  .pc-cta-primary:hover { background: var(--dark-teal); border-color: var(--dark-teal); }

  /* FOUNDER */
  .founder {
    background: var(--soft-cream);
    padding: 7rem 5rem;
  }
  .founder-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center;
  }
  .founder-visual {
    position: relative;
  }
  .founder-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #C4622D 0%, #2C1810 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .founder-img-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(196,98,45,0.6), rgba(44,24,16,0.8));
    z-index: 1;
  }
  .founder-placeholder {
    position: relative; z-index: 2;
    text-align: center; color: white;
    padding: 2rem;
  }
  .founder-placeholder div:first-child { font-size: 5rem; margin-bottom: 1rem; }
  .founder-placeholder p { font-family: 'Cormorant Garamond', serif; font-size: 1rem; opacity: 0.8; }
  .founder-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--terracotta));
    z-index: 0;
    opacity: 0.3;
  }
  .founder-accent-2 {
    position: absolute; top: -20px; left: -20px;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--deep-teal);
    opacity: 0.2;
  }

  .founder-creds {
    position: absolute; bottom: 30px; left: 30px; right: 30px; z-index: 3;
    background: rgba(250,245,237,0.95);
    border-radius: 16px; padding: 1rem 1.2rem;
    display: flex; gap: 1rem; align-items: center;
  }
  .cred-icon { font-size: 1.5rem; }
  .cred-text { font-size: 0.75rem; color: var(--dark-teal); font-weight: 600; }
  .cred-sub { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.1rem; }

  .founder-content .section-label { margin-bottom: 0.8rem; }
  .founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900; color: var(--dark-teal);
    letter-spacing: -0.02em; line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  .founder-name { font-family: 'Playfair Display', serif; font-style: italic; color: var(--terracotta); font-size: 1.5rem; margin-bottom: 1.5rem; }
  .founder-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 300; line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
  .credentials-list { list-style: none; margin-top: 1.5rem; }
  .credentials-list li {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.88rem; font-weight: 500; color: var(--dark-teal);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(196,98,45,0.1);
  }
  .credentials-list li:last-child { border-bottom: none; }
  .cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; }

  /* TESTIMONIALS */
  .testimonials {
    padding: 7rem 5rem;
    background: var(--dark-teal);
    position: relative; overflow: hidden;
  }
  .testimonials::after {
    content: '"';
    position: absolute; top: -2rem; right: 4rem;
    font-family: 'Playfair Display', serif;
    font-size: 20rem; font-weight: 900;
    color: rgba(212,168,83,0.06);
    line-height: 1;
    pointer-events: none;
  }
  .testimonials .section-header h2 { color: white; }
  .testimonials .section-header p { color: rgba(250,245,237,0.65); }
  .testimonials .section-label { color: var(--gold); }
  .t-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
  }
  .t-card {
    background: rgba(250,245,237,0.06);
    border: 1px solid rgba(212,168,83,0.12);
    border-radius: 20px; padding: 2rem;
    position: relative;
  }
  .t-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.85);
    margin-bottom: 1.5rem;
  }
  .t-author { display: flex; align-items: center; gap: 0.8rem; }
  .t-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .t-name { font-size: 0.88rem; font-weight: 600; color: white; }
  .t-loc { font-size: 0.75rem; color: rgba(250,245,237,0.5); margin-top: 0.1rem; }

  /* HOW IT WORKS */
  .how {
    padding: 7rem 5rem;
    max-width: 1100px; margin: 0 auto;
  }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; margin-top: 4rem; }
  .steps::before {
    content: '';
    position: absolute; top: 1.6rem; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--terracotta) 0, var(--terracotta) 8px, transparent 8px, transparent 16px);
    z-index: 0;
  }
  .step { text-align: center; position: relative; z-index: 1; }
  .step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--terracotta); color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(196,98,45,0.35);
  }
  .step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--dark-teal); margin-bottom: 0.6rem;
  }
  .step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

  /* TIMEZONE / PRACTICAL */
  .practical {
    background: var(--soft-cream);
    padding: 5rem;
  }
  .practical-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem;
  }
  .prac-card {
    background: white; border-radius: 20px; padding: 2rem;
    border: 1px solid rgba(196,98,45,0.08);
  }
  .prac-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .prac-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--dark-teal); margin-bottom: 0.8rem;
  }
  .prac-card p, .prac-card li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
  .prac-card ul { list-style: none; }
  .prac-card ul li { display: flex; align-items: center; gap: 0.5rem; padding: 0.2rem 0; }
  .prac-card ul li::before { content: '●'; color: var(--terracotta); font-size: 0.5rem; }

  /* CTA / FORM */
  .apply {
    padding: 7rem 5rem;
    background: linear-gradient(135deg, var(--dark-teal) 0%, #1A0F0A 100%);
    position: relative; overflow: hidden;
  }
  .apply::before {
    content: '🌍';
    position: absolute; top: 3rem; right: 5rem;
    font-size: 10rem; opacity: 0.08;
    animation: float2 8s ease-in-out infinite;
  }
  .apply-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
    position: relative; z-index: 2;
  }
  .apply h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 1rem;
  }
  .apply h2 em { font-style: italic; color: var(--gold); }
  .apply p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: rgba(250,245,237,0.7);
    margin-bottom: 2.5rem;
  }
  .form-card {
    background: rgba(250,245,237,0.05);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: 24px; padding: 2.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 0.9rem 1.2rem;
    background: rgba(250,245,237,0.08);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; color: white;
    transition: border-color 0.3s;
    outline: none;
  }
  .form-field input::placeholder, .form-field select::placeholder, .form-field textarea::placeholder { color: rgba(250,245,237,0.35); }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
  .form-field select { color: rgba(250,245,237,0.7); }
  .form-field select option { background: var(--dark-teal); }
  .form-field { margin-bottom: 1rem; }
  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--terracotta), var(--gold));
    color: white; border: none;
    padding: 1.1rem;
    border-radius: 3rem;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,98,45,0.4); }
  .form-note { font-size: 0.75rem; color: rgba(250,245,237,0.4); margin-top: 1rem; }

  /* FOOTER */
  footer {
    background: #0F0806;
    padding: 3rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: white;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.78rem; color: rgba(250,245,237,0.35); margin-top: 0.3rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.8rem; color: rgba(250,245,237,0.5); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.75rem; color: rgba(250,245,237,0.25); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(-3deg); }
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-16px) rotate(2deg); }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 8rem 1.5rem 4rem; }
    .problem { padding: 4rem 1.5rem; }
    .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
    .programs { padding: 5rem 1.5rem; }
    .programs-grid { grid-template-columns: 1fr; }
    .founder { padding: 5rem 1.5rem; }
    .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
    .founder-visual { display: none; }
    .testimonials { padding: 5rem 1.5rem; }
    .t-grid { grid-template-columns: 1fr; }
    .how { padding: 5rem 1.5rem; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .practical { padding: 4rem 1.5rem; }
    .practical-inner { grid-template-columns: 1fr; }
    .apply { padding: 5rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  }
  
.material-symbols-outlined{vertical-align:middle;}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}

  /* ── ANIMATIONS ── */
.fc-a {animation: float1 6s ease-in-out infinite; }
.fc-b {animation: float2 7s ease-in-out infinite; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(-2deg); }
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
  }

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

.bounce {
  animation: microBounce 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}
.neg_index {
	z-index: -1;
}