:root {
    /* Primary (60%) */
    --primary-1: #2F3C7E;
    --primary-2: #5B6CFF;
  
    /* Secondary (40%) */
    --secondary-1: #EF4444;
    --secondary-2: #F97316;
  
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2F3C7E, #5B6CFF);
    --gradient-secondary: linear-gradient(135deg, #EF4444, #F97316);
  
    /* Text */
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #FFFFFF;
  
    /* Backgrounds */
    --bg-light: #FFFFFF;
    --bg-soft: #F8FAFC;
  }

  /* ===================================================================================================
   HERO SECTION — CORRECT MODEL
   ===================================================================================================== */

.hero-section {
  position: relative;
  margin-top: var(--nav-height);
  color: #FFFFFF;
  overflow: hidden;
}

/* Full-screen ONLY on large screens */
@media (min-width: 1200px) {
  .hero-section {
    min-height: calc(100dvh - var(--nav-height));
    min-height: calc(100svh - var(--nav-height));
    min-height: calc(100vh - var(--nav-height));
  }
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/static/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 767px) {
  .hero-bg {
    background-image: none;
  }


  }

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
}

/* Content */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;

  /* CONTENT-DRIVEN HEIGHT */
  padding: clamp(3rem, 6vh, 6rem) 1.25rem clamp(3rem, 6vh, 5rem);
}

.hero-content {
  max-width: 900px;
}

/* Typography (unchanged) */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight { color:#F97316 ; }

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* Audience */
.hero-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}


/* Responsive */
@media (max-width: 992px) {
  .hero-audience {
    grid-template-columns: 1fr;
  }

  .hero-title br {
    display: none;
  }
}

/* ==================================================================================================================== */
  /* 2 SECTION */
/* ==================================================================================================================== */
  

/* CREDIBILITY SECTION */
.credibility-section {
    background: var(--bg-soft);
    padding: 2rem 0;
  }
  
  .credibility-header {
    max-width: 720px;
    margin-bottom: 4rem;
  }
  
  .credibility-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .credibility-header p {
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* TIMELINE */
  .timeline {
    position: relative;
    padding-left: 2rem;
    max-width: 900px;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      var(--primary-1),
      var(--primary-2)
    );
  }
  
  /* ITEM */
  .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
  }
  
  .timeline-dot {
    position: absolute;
    left: -2px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--gradient-secondary);
    border-radius: 50%;
  }
  
  .timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  
  .timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
  }

/* ========================================================================================
   SECTION 3 — VALUE CARDS
   ======================================================================================== */

.values-cards-section {
  padding: 2rem 0;
  background: #ffffff;
}

.values-header {
  max-width: 780px;
  margin-bottom: 3.5rem;
}

.values-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.values-header p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* CARD LAYOUT */
.values-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

/* CARD */
.value-card {
  position: relative;
  padding: 2.4rem 2.2rem;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    #ffffff,
    #f8fafc
  );
  box-shadow:
    0 20px 40px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform-style: preserve-3d;
  will-change: transform;
}

/* NUMBER */
.value-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.12;
}

/* TEXT */
.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 992px) {
  .values-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-cards {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 2rem;
  }
}




/* ===============================================================================================
   SECTION 4 – BUILD & LEAD (ICON CARDS)
   =============================================================================================== */

.build-section,
.build-section * {
  box-sizing: border-box;
}

.build-section {
  padding: 6rem 0;
}

/* CONTAINER */
.build-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.build-header {
  max-width: 760px;
  margin-bottom: 4rem;
}

/* GRID */
.build-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* CARD */
.build-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  text-align: left;
  border-top: 6px solid transparent;
  box-shadow: 0 15px 40px rgba(15,23,42,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.build-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15,23,42,0.12);
}

/* ICON */
.build-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #ffffff;
}

/* ICON COLORS */
.lane-enterprise .build-icon { background: var(--primary-1); }
.lane-product .build-icon    { background: var(--secondary-1); }
.lane-devices .build-icon    { background: var(--primary-2); }
.lane-tools .build-icon      { background: var(--secondary-2); }

/* TEXT */
.build-card h3 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.build-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.build-card li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* BORDER ACCENT */
.lane-enterprise { border-color: var(--primary-1); }
.lane-product    { border-color: var(--secondary-1); }
.lane-devices    { border-color: var(--primary-2); }
.lane-tools      { border-color: var(--secondary-2); }

/* ===============================
   RESPONSIVE
   =============================== */

/* TABLET */
@media (max-width: 1200px) {
  .build-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .build-section {
    padding: 4rem 0;
  }

  .build-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .build-card {
    padding: 2rem;
  }
}


  /*============================================================================================ */
  /* 5 SECTION */
  /*============================================================================================ */
  /* SIGNATURE WINS */
.wins-section {
    background: var(--bg-light);
    padding: 2rem 0;
  }
  
  .wins-header {
    max-width: 760px;
    margin-bottom: 4rem;
  }
  
  .wins-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .wins-header p {
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* ROWS */
  .win-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
  }
  
  .win-row.reverse {
    direction: rtl;
  }
  
  .win-row.reverse > * {
    direction: ltr;
  }
  
  /* CONTENT */
  .win-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }
  
  .win-content p {
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* VISUAL */
  
.win-visual {
    border-radius: 18px;
    overflow: hidden;
  }
  

  .win-visual img {
    width: 400px;
    height: 400px;
    border-radius: 20%;
    object-fit: cover;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .win-row {
      grid-template-columns: 1fr;
    }
  }

  
/* ========================================================================================================== */
/* 6 SECTION */
/* ========================================================================================================== */
  /* WHY CLIENTS CHOOSE ME */
  .choose-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
  }
  
  .choose-right img {
    width: 100%;
    max-width: 350px;
    opacity: 0.9;
    height: 500px;
    border-radius: 18px;
    
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .choose-layout {
      grid-template-columns: 1fr;
    }
  
    .choose-right {
      display: block; /* hide visual on mobile */
    }
  }
  
/* ========================================================================================================= */
/* 7 SECTION */
/* ========================================================================================================= */
/* ENGAGEMENT SECTION */

/* ===============================
   ENGAGEMENT MODELS – KINETIC STACK
   =============================== */

   .engagement-section {
    padding: 7rem 0;
    background:
      radial-gradient(1200px 400px at 10% -10%, rgba(79,70,229,0.12), transparent 60%),
      radial-gradient(1200px 400px at 90% 110%, rgba(16,185,129,0.12), transparent 60%),
      #ffffff;
  }
  
  .engagement-header {
    max-width: 760px;
    margin-bottom: 4rem;
  }
  
  .engagement-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .engagement-header p {
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* STACK */
  .engagement-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  /* BASE ITEM */
  .engagement-item {
    position: relative;
    padding: 3rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow:
      0 10px 30px rgba(15,23,42,0.06),
      inset 0 1px 0 rgba(255,255,255,0.6);
    transition: 
      transform 0.45s cubic-bezier(.22,.61,.36,1),
      box-shadow 0.45s cubic-bezier(.22,.61,.36,1);
    overflow: hidden;
    cursor: pointer;
  }
  
  /* GLOW LAYER (DIFFERENT PER ITEM) */
  .engagement-item::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
  }
  
  /* INDIVIDUAL GRADIENT IDENTITIES */
  .engagement-item:nth-child(1)::before {
    background: linear-gradient(
      135deg,
      rgba(239,68,68,0.25),
      rgba(79,70,229,0.25)
    );
  }
  
  .engagement-item:nth-child(2)::before {
    background: linear-gradient(
      135deg,
      rgba(79,70,229,0.30),
      rgba(16,185,129,0.30)
    );
  }
  
  .engagement-item:nth-child(3)::before {
    background: linear-gradient(
      135deg,
      rgba(16,185,129,0.30),
      rgba(14,165,233,0.30)
    );
  }
  
  /* CONTENT */
  .engagement-item * {
    position: relative;
    z-index: 1;
  }
  
  .engagement-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }
  
  .engagement-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .engagement-item p {
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.75rem;
  }
  
  /* HOVER / ACTIVE */
  .engagement-item:hover,
  .engagement-item.active {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
      0 30px 70px rgba(15,23,42,0.18),
      inset 0 1px 0 rgba(255,255,255,0.7);
  }
  
  .engagement-item:hover::before,
  .engagement-item.active::before {
    opacity: 1;
  }
  
  /* STACK INTERACTION (DESKTOP ONLY) */
  @media (hover: hover) {
    .engagement-stack:hover .engagement-item:not(:hover) {
      transform: scale(0.97);
      opacity: 0.7;
    }
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .engagement-section {
      padding: 5rem 0;
    }
  
    .engagement-item {
      padding: 2rem;
    }
  
    .engagement-stack:hover .engagement-item:not(:hover) {
      transform: none;
      opacity: 1;
    }
  }

/* ==================================================================================================== */
  /* 8 SECTION */
/* ==================================================================================================== */
 
/*SOCIAL PROOF & AUTHORITY */

.authority-section {
    padding: 6rem 0;
    background:
      linear-gradient(180deg, #ffffff, #f8fafc);
  }
  
  .authority-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
  }
  
  /* LEFT */
  .authority-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .authority-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
  }
  
  /* LIST */
  .authority-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .authority-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  /* DOT */
  .authority-list .dot {
    width: 10px;
    height: 10px;
    margin-top: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--primary-1),
      var(--secondary-1)
    );
    flex-shrink: 0;
  }
  
  /* RIGHT — SCARCITY */
  .authority-right {
    position: sticky;
    top: 120px;
  }
  
  .authority-scarcity {
    border-radius: 24px;
    padding: 3rem;
    background:
      radial-gradient(circle at top right, rgba(79,70,229,0.25), transparent 60%),
      linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
    box-shadow: 0 40px 90px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .scarcity-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .authority-scarcity p {
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  /* ACTIVE STATES */
  .authority-section.is-visible .authority-list li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .authority-section.is-visible .authority-list li:nth-child(1) { transition-delay: 0.1s; }
  .authority-section.is-visible .authority-list li:nth-child(2) { transition-delay: 0.2s; }
  .authority-section.is-visible .authority-list li:nth-child(3) { transition-delay: 0.3s; }
  .authority-section.is-visible .authority-list li:nth-child(4) { transition-delay: 0.4s; }
  
  .authority-section.is-visible .authority-scarcity {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* MOBILE */
  @media (max-width: 992px) {
    .authority-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .authority-right {
      position: static;
    }
  }

/* ================================================================================================= */
  /* 9 SECTION */
/* ================================================================================================= */
  /*FAST FACTS – FUN & JOY*/

.facts-section {
    padding: 6rem 0;
    background:
      radial-gradient(circle at top left, rgba(79,70,229,0.12), transparent 60%),
      radial-gradient(circle at bottom right, rgba(16,185,129,0.12), transparent 60%),
      #ffffff;
  }
  
  .facts-header {
    max-width: 720px;
    margin-bottom: 4rem;
  }
  
  .facts-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }
  
  .facts-header p {
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* GRID */
  .facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  /* CARD */
  .fact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow:
      0 10px 30px rgba(15,23,42,0.06),
      inset 0 1px 0 rgba(255,255,255,0.7);
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1),
                box-shadow 0.35s cubic-bezier(.22,.61,.36,1);
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  
  /* POP COLOR BAR */
  .fact-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(
      90deg,
      var(--primary-1),
      var(--secondary-1)
    );
  }
  
  /* NUMBER */
  .fact-number {
    font-size: 2.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.75rem;
    background: linear-gradient(
      135deg,
      var(--primary-1),
      var(--secondary-1)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .fact-number {
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  .fact-number.pop {
    transform: scale(1);
    opacity: 1;
  }
  
  
  /* LABEL */
  .fact-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
  }
  
  /* TEXT */
  .fact-card p {
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  /* HOVER FUN */
  .fact-card:hover {
    transform: translateY(-6px) rotate(-0.3deg);
    box-shadow: 0 30px 60px rgba(15,23,42,0.15);
  }
  
  /* WIDE CARDS */
  .fact-card.wide {
    grid-column: span 2;
  }
  
  /* MOBILE */
  @media (max-width: 992px) {
    .facts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .fact-card.wide {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 576px) {
    .facts-grid {
      grid-template-columns: 1fr;
    }
  
    .fact-card.wide {
      grid-column: span 1;
    }
  }
  

/* ====================================================================================== */
  /* 10 SECTION */
/* ======================================================================================= */
  

/*TRUST & DELIVERY — COLORFUL*/

.trust-section {
    padding: 7rem 0;
    background:
      radial-gradient(circle at 10% 20%, rgba(79,70,229,0.18), transparent 60%),
      radial-gradient(circle at 90% 80%, rgba(16,185,129,0.18), transparent 60%),
      linear-gradient(180deg, #ffffff, #f8fafc);
  }
  
  .trust-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }
  
  /* LEFT */
  .trust-left h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .trust-intro {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
  }
  
  /* RIGHT STACK */
  .trust-right {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }
  
  /* ITEM */
  .trust-item {
    position: relative;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
      0 20px 40px rgba(15,23,42,0.08),
      inset 0 1px 0 rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
  }
  
  /* COLOR STRIPE */
  .trust-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(
      180deg,
      var(--primary-1),
      var(--secondary-1)
    );
  }
  
  /* ICON */
  .trust-icon {
    font-size: 1.1rem;
    font-weight: 700;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(
      135deg,
      var(--primary-1),
      var(--secondary-1)
    );
    color: #ffffff;
    flex-shrink: 0;
  }
  
  /* TEXT */
  .trust-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  /* MOBILE */
  @media (max-width: 992px) {
    .trust-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  
/* ==================================================================================== */
  /* 11 SETION  */
/* ===================================================================================== */
  /*FINAL CTA — CONVERSION MOMENT */

.cta-section {
    padding: 3rem 0;
    /* background:
      radial-gradient(circle at 10% 20%, rgba(79,70,229,0.25), transparent 60%),
      radial-gradient(circle at 90% 80%, rgba(239,68,68,0.25), transparent 60%),
      linear-gradient(180deg, #0f172a, #020617);
    color: #ffffff; */
  }
  
  .cta-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }
  
  /* LEFT */
  .cta-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-intro {
    line-height: 1.7;
    opacity: 0.85;
    max-width: 520px;
  }
  
  /* RIGHT */
  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  /* BLOCK */
  .cta-block {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  }
  
  /* LABEL */
  .cta-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    display: inline-block;
    margin-bottom: 1.25rem;
  }
  
  /* LIST */
  .cta-list {
    padding-left: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  /* ACTIONS */
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* BUTTONS */
  .cta-btn {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  /* PRIMARY */
  .cta-btn.primary {
    background: linear-gradient(
      135deg,
      var(--primary-1),
      var(--secondary-1)
    );
    color: #ffffff;
  }
  
  /* SECONDARY */
  .cta-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #020202;
  }
  
  /* OUTLINE */
  .cta-btn.outline {
   background: linear-gradient(
      135deg,
      var(--primary-1),
      var(--secondary-1)
    );
    color: #ffffff;
  }
  
  /* HOVER */
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  }
  
  /* MOBILE */
  @media (max-width: 992px) {
    .cta-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .cta-left h2 {
      font-size: 2.2rem;
    }
  }





/* ===============================
   VARIABLES
================================ */

:root {
  --nav-height: 80px;
  --nav-bg: rgba(2, 6, 23, 0.92);
  --nav-bg-solid: #050135;
  --nav-accent: #2563eb;
  --nav-text: #ffffff;
}

@media (max-width: 576px) {
  :root {
    --nav-height: 70px;
  }
}

/* ===============================
   HEADER & NAV
================================ */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.site-nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Scrolled state */
.site-nav.scrolled {
  background: var(--nav-bg-solid);
}

/* ===============================
   CONTAINER
================================ */

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LOGO
================================ */

.nav-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
}

/* ===============================
   MENU
================================ */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffffff;
}

/* Underline */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--nav-accent);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ===============================
   CTA BUTTON
================================ */

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 44px;
  padding: 0 22px;

  border-radius: 999px;
  background: var(--nav-accent);

  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;

  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.75);
}

/* ===============================
   MOBILE NAV
================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: #020617;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right 0.35s ease;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-top: 1rem;
  }
}

/* Safety */
body {
  overflow-x: hidden;
}




/* ==============================================================================================
   FOOTER
   ============================================================================================== */

.site-footer {
  padding: 3rem 0;
    background:
      radial-gradient(circle at 10% 20%, rgba(79,70,229,0.25), transparent 60%),
      radial-gradient(circle at 90% 80%, rgba(239,68,68,0.25), transparent 60%),
      linear-gradient(180deg, #0f172a, #020617);
    color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

/* COLUMNS */
.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

/* BRAND */
.footer-brand p {
  max-width: 420px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* EMAIL */
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6px 0;
  color: #ffffff; /* keep old font color */
}

.footer-left{
  position: absolute;
  left: 0;
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.footer-left a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center {
  margin: 0;
  text-align: center;
  color: #ffffff;
}

.footer-right {
  position: absolute;
  right: 0;
  padding-right: 20px;
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}



/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  /* Footer bottom mobile fix */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-left {
    position: static;
    padding-right: 0;
    font-size: 13px;
  }
  .footer-right {
    position: static;
    padding-right: 0;
    font-size: 13px;
  }
}


/* ======================================================================== */
/* BOOK_FORM (PAGE) */
/* ========================================================================= */

/*FULL PAGE FORM – FINAL STABLE*/

* {
  box-sizing: border-box;
}

.form-section.full-page-form {
  min-height: 100vh;
  background: #020617;
}

/* MAIN WRAPPER */
.form-layout {
  min-height: 100vh;
  display: flex;
}

/* ===============================
   LEFT SIDE (DARK)
   =============================== */
.form-side {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.form-side h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.form-side p {
  font-size: 1.05rem;
  max-width: 420px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* ===============================
   RIGHT SIDE (WHITE PANEL)
   =============================== */
.form-panel {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

/* FORM */
.discovery-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* FORM GROUP */
.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
  color: #020617;
  background: #ffffff;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* FIX: OFFSET FOR FIXED NAVBAR */
.form-section.full-page-form {
  padding-top: var(--nav-height);
}


/* ===============================
   CAPTCHA 
   =============================== */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.captcha-row input {
  width: 64px;
  height: 44px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;

  background: #e5e7eb;
  color: #020617 !important;

  border: 1px solid #cbd5f5;
  border-radius: 10px;

  opacity: 1 !important;
}

.captcha-symbol {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2563eb;
}

.captcha-hint {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #64748b;
}

/* ===============================
   BUTTON
   =============================== */
.submit-btn {
  margin-top: 1.2rem;
  padding: 0.95rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  background: #2563eb;
  cursor: pointer;
}

/* ===============================
   RESPONSIVE (ALL DEVICES)
   =============================== */

/* Tablets */
@media (max-width: 1024px) {
  .form-side {
    padding: 3rem;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .form-layout {
    flex-direction: column;
  }

  .form-side {
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
  }

  .form-panel {
    padding: 2.5rem 1.5rem;
  }

  .discovery-form {
    max-width: 100%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .form-side h1 {
    font-size: 2rem;
  }

  .captcha-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}




/* ===============================
   ROOT COLORS (Already in Your File)
================================ */
:root {
  --primary-1: #2F3C7E;
  --primary-2: #5B6CFF;

  --secondary-1: #EF4444;
  --secondary-2: #F97316;

  --gradient-primary: linear-gradient(135deg, #2F3C7E, #5B6CFF);
  --gradient-secondary: linear-gradient(135deg, #EF4444, #F97316);

  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #FFFFFF;

  --bg-light: #FFFFFF;
  --bg-soft: #F8FAFC;
}

/* ===============================
   BASE BODY STYLE
================================ */
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-soft);
  color: var(--text-dark);
  line-height: 1.8;
}

/* ===============================
   TERMS PAGE SECTION
================================ */
.terms-conditions {
  padding: 80px 20px;
}

/* Main Container Box */
.terms-conditions .container {
  max-width: 900px;
  margin: auto;
  background: var(--bg-light);

  padding: 60px;
  border-radius: 16px;

  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

/* ===============================
   PAGE TITLE
================================ */
.terms-conditions h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 10px;
}

/* Updated Date */
.updated-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 35px;
}

/* ===============================
   PARAGRAPHS
================================ */
.terms-conditions p {
  font-size: 16px;
  margin-bottom: 18px;
  color: var(--text-dark);
}

/* Highlighted Words */
.terms-conditions strong {
  color: var(--primary-1);
  font-weight: 600;
}

/* ===============================
   SECTION HEADINGS
================================ */
.terms-conditions h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-2);

  margin-top: 45px;
  margin-bottom: 15px;

  position: relative;
  padding-left: 14px;
}

/* Left Accent Line */
.terms-conditions h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;

  width: 4px;
  height: 75%;

  background: var(--gradient-primary);
  border-radius: 8px;
}

/* ===============================
   LISTS
================================ */
.terms-conditions ul {
  padding-left: 22px;
  margin: 15px 0 25px;
}

.terms-conditions ul li {
  font-size: 15.5px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* ===============================
   LINKS (Optional)
================================ */
.terms-conditions a {
  color: var(--secondary-1);
  font-weight: 500;
  text-decoration: none;
}

.terms-conditions a:hover {
  text-decoration: underline;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .terms-conditions {
    padding: 50px 15px;
  }

  .terms-conditions .container {
    padding: 35px 25px;
    border-radius: 12px;
  }

  .terms-conditions h1 {
    font-size: 28px;
  }

  .terms-conditions h2 {
    font-size: 18px;
  }

  .terms-conditions p,
  .terms-conditions ul li {
    font-size: 14.5px;
  }
}
