/* ================= GLOBAL ================= */

:root{

  /* PRIMARY BRAND COLORS */
  --purple:#6200EA;
  --purple-dark:#3f00a8;
  --purple-light:#9d4dff;

  --orange:#FF6D00;
  --orange-dark:#d45500;
  --orange-light:#ff9e40;

  /* NEUTRALS */
  --bg:#f7f6f2;
  --bg-dark:#ece8e1;
  --surface:#ffffff;

  --text:#111111;
  --text-soft:#666666;

}

{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Jost',sans-serif;

  background:
    radial-gradient(circle at top left,
    rgba(98,0,234,0.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(255,109,0,0.08),
    transparent 30%),

    var(--bg);

  color:var(--text);
  line-height:1.6;

  overflow-x:hidden;
}

/* ================= NAVBAR ================= */

.navbar{
  position:sticky;
  top:0;
  z-index:1000;

  backdrop-filter:blur(12px);
  background:rgba(10,10,10,0.75);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-container{
  max-width:1400px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:10px 30px;
}

.logo{
  color:#fff;

  font-size:1rem;
  font-weight:600;

  letter-spacing:0.04em;
}

.nav-links{
  display:flex;
  gap:24px;
}

.nav-link{
  color:#ddd;

  text-decoration:none;

  font-size:0.9rem;

  transition:0.25s ease;
}

.nav-link:hover{
  color:#fff;
}

.nav-toggle,
.nav-toggle-label{
  display:none;
}

/* ================= HERO ================= */

.hero{
  min-height:92vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0 30px;

  background:
    radial-gradient(circle at top left,
    rgba(255,209,102,0.15),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(0,0,0,0.08),
    transparent 25%);
}

.hero-content{
  max-width:900px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:0.8rem;
  color:#777;
  margin-bottom:20px;
}

.hero h1{
  font-size:clamp(3rem,8vw,6rem);
  line-height:0.95;
  margin:0;
  font-weight:700;
}

.hero-subtext{
  max-width:700px;
  margin-top:30px;

  font-size:1.2rem;
  color:#555;
}

.hero-button{
  display:inline-block;

  margin-top:40px;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--orange)
    );

  color:#fff;

  padding:16px 30px;

  border-radius:8px;

  text-decoration:none;

  font-weight:600;
  letter-spacing:0.02em;

  box-shadow:
    0 10px 30px rgba(98,0,234,0.25);

  transition:0.3s ease;
}

.hero-button:hover{
  transform:translateY(-3px) scale(1.02);

  box-shadow:
    0 18px 40px rgba(98,0,234,0.35);
}

/* ================= SECTIONS ================= */

.section{
  position:relative;

  width:100%;

  padding:120px 0;
}

.section-inner{
  max-width:1400px;
  margin:auto;

  padding:0 30px;
}

/* Full-width alternating backgrounds */

#studies{
  background:
    linear-gradient(
      135deg,
      #e9e3f7,
      #ddd5f5
    );
}

#process{
  background:
    linear-gradient(
      135deg,
      #1e1b29,
      #2a2438
    );

  color:#f5f5f5;
}

#process ul{
  margin:0;
  padding-left:18px;
}

#process li{
  margin-bottom:10px;
  color:var(--text-soft);
}

/* Keep section header text light */
#process > .section-inner > .section-heading,
#process > .section-inner > .section-heading h2,
#process > .section-inner > .section-heading p{
  color:#f5f5f5;
}

/* Make card text dark */
#process .content-card,
#process .content-card p,
#process .content-card h3,
#process .content-card .step-number,

.contact-section .content-card,
.contact-section .content-card p,
.contact-section .content-card h3{
  color:#111111;
}

.contact-section{
  background:
    linear-gradient(
      135deg,
      #2c190d,
      #3b1d08
    );

  color:#fff;
}

.contact-section p{
  color:rgba(255,255,255,0.82);
}

.section-heading{
  margin-bottom:50px;
}

.section-label{
  text-transform:uppercase;
  letter-spacing:0.16em;
  font-size:0.8rem;

  color:var(--purple);

  font-weight:600;

  margin-bottom:10px;
}

.section h2{
  font-size:3rem;
  margin:0;

  position:relative;

  display:inline-block;
}

/* Accent underline */
.section h2::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-10px;

  width:70%;
  height:4px;

  border-radius:8px;

  background:
    linear-gradient(
      90deg,
      var(--purple),
      var(--orange)
    );
}

.section-subtext{
  color:#666;
  margin-top:15px;
  font-size:1.1rem;
}

/* ================= CARDS ================= */

.content-card{
  position:relative;

  background:rgba(255,255,255,0.8);

  backdrop-filter:blur(10px);

  border:1px solid rgba(98,0,234,0.08);

  border-radius:12px;

  padding:35px;

  overflow:hidden;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);

  transition:0.3s ease;
}

.content-card:hover{
  transform:translateY(-4px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* Decorative corner gradient
.content-card::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:5px;

  background:
    linear-gradient(
      90deg,
      var(--purple),
      var(--orange)
    );
}
*/

.large-card{
  font-size:1.15rem;
}

.divider{
  height:1px;
  background:#ddd;
  margin:30px 0;
}

/* ================= GRIDS ================= */

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

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

/* ================= PROCESS ================= */

.process-card{
  position:relative;
  overflow:hidden;
}

.step-number{
  display:inline-block;

  font-size:0.9rem;
  font-weight:600;

  color:#999;

  margin-bottom:20px;
}

#cost ul{
  margin:0;
  padding-left:18px;
}

#cost li{
  margin-bottom:10px;
  color:var(--text-soft);
}

/* ================= CAROUSEL ================= */

.carousel-wrapper{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:hidden;
}

.carousel-track{
  display:flex;
  transition:transform .5s ease;
}

.carousel-item{
  min-width:33.333%;
  padding:14px;
}

.carousel-item img{
  width:100%;
  height:320px;

  object-fit:cover;

  border-radius:12px;

  display:block;

  background:#ddd;

  border:2px solid rgba(98,0,234,0.08);

  transition:0.3s ease;
}

.carousel-item:hover img{
  transform:scale(1.02);

  box-shadow:
    0 15px 35px rgba(98,0,234,0.15);
}

.carousel-info{
  padding-top:16px;
}

.item-title{
  font-size:1.1rem;
  font-weight:600;
  margin:0;
}

.item-sub{
  color:#666;
  margin-top:6px;
}

/* ================= BUTTONS ================= */

.carousel-btn{
  position:absolute;
  top:45%;

  transform:translateY(-50%);

  width:52px;
  height:52px;

  border:none;
  border-radius:50%;

  background:rgba(17,17,17,0.85);
  color:#fff;

  cursor:pointer;

  z-index:20;

  font-size:1.2rem;

  transition:0.25s ease;
}

.carousel-btn:hover{
  transform:translateY(-50%) scale(1.05);
}

.carousel-btn.left{
  left:-10px;
}

.carousel-btn.right{
  right:-10px;
}

/* ================= CONTACT ================= */

.contact-card{
  text-align:left;
  max-width:800px;
}

.contact-note{
  margin-top:25px;
  font-style:italic;
  color:var(--text-soft);
}

#book-session .grid-2{
  align-items:stretch;
}

#book-session .content-card{
  height:100%;
}

/* ================= FOOTER ================= */

.footer{
  padding:40px 20px;
  text-align:center;
  color:#666;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .carousel-item{
    min-width:100%;
  }

.hero{
  position:relative;

  min-height:92vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0 30px;

  overflow:hidden;

  background:
    radial-gradient(circle at 20% 20%,
    rgba(98,0,234,0.18),
    transparent 25%),

    radial-gradient(circle at 80% 70%,
    rgba(255,109,0,0.15),
    transparent 25%),

    var(--bg);
}

/* Decorative floating shapes */
.hero::before,
.hero::after{
  content:"";

  position:absolute;

  border-radius:50%;

  filter:blur(80px);

  opacity:0.45;
}

.hero::before{
  width:280px;
  height:280px;

  background:var(--purple);

  top:-60px;
  left:-80px;
}

.hero::after{
  width:240px;
  height:240px;

  background:var(--orange);

  bottom:-80px;
  right:-60px;
}

  .hero h1{
    font-size:3.5rem;
  }

  .section{
    padding:90px 20px;
  }

  .nav-toggle-label{
    display:block;
    color:#fff;
    font-size:1.5rem;
    cursor:pointer;
  }

  .nav-links{
    position:absolute;

    top:100%;
    right:0;

    flex-direction:column;

    background:#111;

    width:220px;

    padding:25px;

    display:none;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-links{
    display:flex;
  }

#process .content-card,
.contact-section .content-card{
  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(8px);
}

#process h2,
.contact-section h2{
  color:#ffffff;
}

/* Dark text inside cards on dark sections */

#process .content-card,
.contact-section .content-card{
  color:#111;
}

#process .content-card p,
#process .content-card h3,
#process .content-card .step-number,
.contact-section .content-card p,
.contact-section .content-card h3{
  color:#111;
}

}
