RESET
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f8;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 480px) {
   
    
    .btn-orange {
        font-size: 11px;
        padding: 5px 10px;
        white-space: nowrap; /* Prevent text from wrapping to two lines */
    }
}

/* CONTAINER */
.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* HEADER */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* LOGO */
.logo a {
    background: #f26522;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
}

/* Hover underline */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f26522;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.arrow {
    transition: transform 0.3s;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.simple-dropdown {
    position: absolute;
    top: 140%;
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
    display: none;
    animation: dropdown 0.3s ease;
}

.simple-dropdown a {
    padding: 12px 18px;
    display: block;
    font-size: 14px;
}

.simple-dropdown a:hover {
    background: #f4f6f8;
    color: #f26522;
}

.nav-dropdown:hover .simple-dropdown {
    display: block;
}

/* BUTTON */
.btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-orange {
    background: linear-gradient(135deg, #f26522, #ff8c42);
    color: #fff;
}

/* CTA animation */
.pulse {
    animation: pulse 2s infinite;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* ACTIVE HAMBURGER */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px,6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */
.mobile-btn {
    display: none;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    .desktop-btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 54px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 25px 0;
        transform: translateY(-120%);
        transition: 0.4s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

    .nav.active {
        transform: translateY(0);
    }

    .simple-dropdown {
        position: static;
        box-shadow: none;
        width: 100%;
        display: none;
        background: #f9fafb;
    }

    .nav-dropdown.open .simple-dropdown {
        display: block;
    }

    .mobile-btn {
        display: inline-block;
        margin-top: 15px;
    }
}

.nav a.active {
    color: #ff6600;
    font-weight: 600;
    position: relative;
}

.nav a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6600;
}


/* ANIMATIONS */
@keyframes dropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(242,101,34,.6); }
    70% { box-shadow: 0 0 0 14px rgba(242,101,34,0); }
    100% { box-shadow: 0 0 0 0 rgba(242,101,34,0); }
}


/* nav bar end */
/* WHO ARE YOU SECTION */
.who-are-you {
    padding: 80px 0;
    background: #f4f6f8;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2f4b73;
}

.section-subtitle {
    margin-top: 8px;
    font-size: 16px;
    color: #555;
}

/* Cards wrapper */
.who-cards {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


.who-card {
    max-width: 500px;
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* Top accent line */
.who-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #2f4b73;
    border-radius: 20px 20px 0 0;
}

.who-card.primary::before {
    background: #f26522;
}

/* Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* Icon */
.card-icon.small {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eef3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.who-card.primary .card-icon {
    background: #fff3ea;
}

/* Title */
.who-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2f4b73;
}

.who-card.primary h4 {
    color: #f26522;
}

/* Description */
.who-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* List */
.who-card ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.who-card ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    position: relative;
}

.who-card ul li::marker {
    color: #2f4b73;
}

.who-card.primary ul li::marker {
    color: #f26522;
}

/* Button */
.card-btn {
    display: inline-block;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 8px;
    background: #2f4b73;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.who-card.primary .card-btn {
    background: #f26522;
}

.card-btn:hover {
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .who-card {
        max-width: 100%;
        text-align: center;
    }

    .card-header {
        justify-content: center;
    }

    .who-card ul {
        text-align: left;
    }
}

:root {
  --primary: #2f4b7c;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --card-bg: #f9fafb;
  --border: #e5e7eb;
}

.problem-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.problem-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.problem-card {
  /* background: var(--card-bg); */
  /* border: 1px solid var(--border); */
  background-color: #F4F6FA;
  border-radius: 14px;
  padding: 2rem;
  text-align: left;
  transition: all 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-card .icon {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.problem-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    padding: 1.75rem;
  }
}


:root {
  --primary: #2f4b7c;
  --accent: #f58a07;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-soft: #f9fafb;
  --border-soft: #e5e7eb;
}

.confidence-section {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.confidence-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.confidence-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.confidence-subtitle {
  max-width: 760px;
  margin: 0 auto 3.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.confidence-card {
  /* background: var(--bg-soft); */
  /* border: 1px solid var(--border-soft); */
  background-color: #F4F6FA;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.confidence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.confidence-icon {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.confidence-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.confidence-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* CTA */
.confidence-cta {
  margin-top: 3.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #ffffff;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-button span {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.cta-button:hover {
  background: #e07c05;
  box-shadow: 0 12px 28px rgba(245, 138, 7, 0.35);
}

.cta-button:hover span {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .confidence-card {
    padding: 2rem 1.75rem;
  }
}

.how-it-works {
  padding: 4rem 1rem;
  background: #f9fafc;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: #1f3b63;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: #1f3b63;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.step-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.9rem 2.5rem;
  background: #f05a00;
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #d94f00;
  transform: translateY(-2px);
}


/* HERO */
/* .hero {
     background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
} */
.hero {
    position: relative;
    background-color: #1C2B4A;
    /* background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover; */
    color: #fff;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.6)
    ); */
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.search-box {
    background: #e9edf2;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-box input {
    padding: 12px;
    width: 300px;
    border-radius: 6px;
    border: none;
}

.popular {
    margin: 20px 0;
    font-size: 14px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.help {
    margin-top: 30px;
}

.help a {
    color: #fff;
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 20px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 34px;
    }

    .search-box input {
        width: 100%;
    }
}
/* SEARCH CARD */
.search-card {
    background: #e9ebef;
    border-radius: 14px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Top Row */
.search-top {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Input */
.search-input {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #5ed6e6, #0b57d0);
    padding: 12px 18px;
    border-radius: 10px;
    flex: 1;
    min-width: 260px;
}

.search-input input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    width: 100%;
}

.search-input input::placeholder {
    color: #eaf6ff;
}

.search-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}

/* Button */
.search-btn {
    background: #f57c00;
    color: #fff;
    border: none;
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn:hover {
    background: #e56f00;
}

/* Popular text */
.popular-text {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
}

/* Stats */
.search-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #222;
}

/* MOBILE */
@media (max-width: 768px) {
    .search-card {
        padding: 20px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .search-stats {
        gap: 15px;
        text-align: center;
    }
}
.faq{padding:88px 0;background:var(--light)}
.faq-header{text-align:center;margin-bottom:52px}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--white);border-radius:14px;border:1.5px solid var(--border);overflow:hidden;transition:border-color .2s}
.faq-item.open{border-color:rgba(244,98,42,.25)}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;cursor:pointer;gap:16px}
.faq-q-text{font-family:'Syne',sans-serif;font-weight:700;font-size:.95rem;color:var(--navy)}
.faq-icon{width:28px;height:28px;border-radius:50%;background:var(--light);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .3s}
.faq-item.open .faq-icon{background:var(--accent);transform:rotate(45deg)}
.faq-icon svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;color:var(--muted);transition:color .3s}
.faq-item.open .faq-icon svg{color:#fff}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-a-inner{padding:0 24px 20px;font-size:.9rem;color:var(--muted);line-height:1.75;border-top:1px solid var(--border)}
.faq-a-inner p{padding-top:16px}


/* --- Base Variables (Fallback) --- */
:root {
  --white: #ffffff;
  --border: #e2e8f0;
  --navy: #0f172a;
  --accent: #ff5722;
  --muted: #64748b;
  --light: #f8fafc;
  --text: #1e293b;
  --sh-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* --- Core Styles --- */
.trust { padding: 88px 0; background: var(--white); }
.trust-header { text-align: center; margin-bottom: 52px; padding: 0 20px; }

.trust-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-bottom: 40px; 
}

.trust-card { 
  border-radius: 20px; 
  padding: 32px 28px; 
  border: 1.5px solid var(--border); 
  transition: all .28s; 
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trust-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--sh-md); 
  border-color: rgba(244, 98, 42, .2); 
}

.trust-card-icon { 
  width: 52px; 
  height: 52px; 
  border-radius: 14px; 
  background: rgba(244, 98, 42, .08); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 18px; 
}

.trust-card-icon svg { 
  width: 26px; 
  height: 26px; 
  fill: none; 
  stroke: var(--accent); 
  stroke-width: 1.8; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
}

.trust-card h3 { 
  font-weight: 700; 
  font-size: 1.05rem; 
  color: var(--navy); 
  margin-bottom: 10px; 
}

.trust-card p { 
  font-size: .875rem; 
  color: var(--muted); 
  line-height: 1.7; 
}

.trust-disclaimer { 
  background: var(--light); 
  border-radius: 14px; 
  padding: 20px 24px; 
  border: 1.5px solid var(--border); 
  display: flex; 
  align-items: flex-start; 
  gap: 14px; 
  max-width: 760px; 
  margin: 0 auto; 
}

.disc-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.disc-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--muted); stroke-width: 2; }
.trust-disclaimer p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }
.trust-disclaimer strong { color: var(--text); }

/* --- Media Queries --- */

/* Tablet (2 columns or smaller 3 columns) */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr); /* Moves to 2 columns for better spacing */
    gap: 20px;
  }
  /* Optional: Make the 3rd card span full width on tablets if using a 2-col grid */
  .trust-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
  .trust-card:last-child .trust-card-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile (1 Column) */
@media (max-width: 768px) {
  .trust { padding: 60px 0; }
  
  .trust-header { margin-bottom: 32px; }
  .section-title { font-size: 1.75rem; }

  .trust-grid {
    grid-template-columns: 1fr; /* Stacked cards */
    gap: 16px;
  }

  .trust-card {
    padding: 24px;
    text-align: center; /* Centered layout looks better on mobile */
    align-items: center;
  }

  .trust-disclaimer {
    flex-direction: column; /* Stack icon and text */
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .disc-icon { margin-top: 0; margin-bottom: 8px; }
}


/* --- Base Styles & Variables (Fallback if not defined) --- */
:root {
    --white: #ffffff;
    --navy: #0f172a;
    --accent: #ff5722;
    --accent-2: #f4622a;
    --border: #e2e8f0;
    --muted: #64748b;
}

/* --- Existing Styles with Responsive Fixes --- */
.how { padding: 88px 0; background: var(--white); }
.how-header { text-align: center; margin-bottom: 52px; padding: 0 20px; }
.how-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }

.how-tab { 
    padding: 10px 28px; 
    border-radius: 100px; 
    border: 2px solid var(--border); 
    background: var(--white); 
    font-size: .9rem; 
    font-weight: 600; 
    color: var(--muted); 
    cursor: pointer; 
    transition: all .22s; 
    white-space: nowrap;
}

.how-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.how-panel { display: none; }
.how-panel.active { display: block; animation: fadeIn 0.4s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- The Grid & The Line --- */
.how-steps { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    position: relative; 
}

/* Horizontal Line (Desktop Only) */
.how-steps::before { 
    content: ''; 
    position: absolute; 
    top: 28px; 
    left: 10%; 
    right: 10%; 
    height: 2px; 
    background: linear-gradient(90deg, var(--accent), var(--accent-2)); 
    z-index: 0; 
}

.how-step { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    padding: 0 10px; 
    position: relative; 
    z-index: 1; 
}

.step-num { 
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    background: var(--white); 
    border: 3px solid var(--accent); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    font-size: .9rem; 
    color: var(--accent); 
    margin-bottom: 20px; 
    position: relative; 
    z-index: 1; 
    box-shadow: 0 0 0 8px var(--white); /* Masks the line behind the circle */
}

.step-icon { 
    width: 44px; 
    height: 44px; 
    background: rgba(244,98,42,.1); 
    border-radius: 11px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 14px; 
}

.step-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.how-step h3 { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.how-cta { text-align: center; margin-top: 48px; padding: 0 20px; }

/* --- Media Queries --- */

/* Tablet (2x2 Grid) */
@media (max-width: 1024px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
    
    /* Hide the horizontal line because it won't align in a 2x2 grid */
    .how-steps::before {
        display: none;
    }
}

/* Mobile (1 Column) */
@media (max-width: 640px) {
    .how { padding: 60px 0; }
    
    .how-steps {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .how-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex: 1; /* Tabs take equal width on small screens */
        text-align: center;
    }

    .how-header .section-title {
        font-size: 1.75rem;
    }

    .how-step {
        padding: 0;
    }

    /* Optional: Vertical line for mobile */
    .how-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 60px;
        left: 50%;
        width: 2px;
        height: 30px;
        background: var(--border);
        z-index: 0;
    }
}

.eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(244,98,42,.1);color:var(--accent);border-radius:100px;padding:5px 14px;font-size:.75rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;margin-bottom:16px}
.eyebrow::before{content:'';width:5px;height:5px;background:var(--accent);border-radius:50%}
.section-title{font-family:'Syne',sans-serif;font-size:clamp(1.9rem,3.5vw,2.8rem);font-weight:800;color:var(--navy);line-height:1.15;margin-bottom:14px}
.section-title em{font-style:normal;color:var(--accent)}
.section-sub{font-size:1.05rem;color:var(--muted);max-width:580px;line-height:1.75}
.section-sub.center{margin:0 auto;text-align:center}
.btn{display:inline-flex;align-items:center;gap:8px;border-radius:10px;padding:13px 26px;font-family:'DM Sans',sans-serif;font-size:.95rem;font-weight:600;cursor:pointer;border:none;text-decoration:none;transition:all .2s}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-h);transform:translateY(-2px);box-shadow:0 8px 24px rgba(244,98,42,.3)}
.btn-outline{background:transparent;color:var(--navy);border:2px solid var(--border)}
.btn-outline:hover{border-color:var(--navy);transform:translateY(-2px)}
.btn-ghost-white{background:rgba(255,255,255,.12);color:#fff;border:1.5px solid rgba(255,255,255,.25)}
.btn-ghost-white:hover{background:rgba(255,255,255,.2);transform:translateY(-2px)}

/* --- Base Styles & Variables (Adjust if you already have these) --- */
:root {
    --navy: #0f172a;
    --accent-2: #ff5722;
    --white: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* --- Section Styling --- */
.difference {
    padding: 88px 0;
    background: var(--navy);
}

.difference-header {
    text-align: center;
    margin-bottom: 52px;
}

.difference-header .section-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    font-weight: 900;
    margin-bottom: 15px;
}

.difference-header .section-sub {
    color: rgba(255, 255, 255, .6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Responsive Grid --- */
.diff-grid {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.diff-card {
    background: rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1.5px solid rgba(255, 255, 255, .08);
    transition: all .28s;
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensures all cards are same height */
}

.diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 98, 42, .1), transparent);
    opacity: 0;
    transition: opacity .3s;
    border-radius: inherit;
}

.diff-card:hover {
    border-color: rgba(244, 98, 42, .3);
    transform: translateY(-5px);
}

.diff-card:hover::before {
    opacity: 1;
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: rgba(244, 98, 42, .15);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diff-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--accent-2);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diff-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
}

.diff-cta {
    text-align: center;
}

/* --- Media Queries --- */

/* Tablet Layout (2 columns) */
@media (max-width: 1024px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Layout (1 column) */
@media (max-width: 640px) {
    .difference {
        padding: 60px 0;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .difference-header {
        margin-bottom: 32px;
    }

    .diff-card {
        padding: 24px;
    }

    /* Make the CTA button full width on small mobile if desired */
    .diff-cta a {
        display: block;
        width: 100%;
    }
}

/* Base Section Styling */
.problem {
  padding: 80px 20px;
  background-color: #f8fafc; /* Assuming var(--light) */
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.eyebrow {
  display: inline-block;
  background: #fff1f0;
  color: #ff5722; /* Assuming var(--accent) */
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: #0f172a; /* Assuming var(--navy) */
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-sub {
  font-size: 18px;
  color: #64748b; /* Assuming var(--muted) */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RESPONSIVE GRID SYSTEM */
.problem-grid {
  display: grid;
  /* Use auto-fit to allow cards to wrap naturally */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Card Styling */
.problem-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1.5px solid #e2e8f0; /* Assuming var(--border) */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ff5722;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.problem-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* TABLET & MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .problem {
    padding: 60px 15px;
  }
  
  .problem-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }
  
  /* On very small screens, make sure cards take full width */
  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

html{scroll-behavior:smooth}

:root{
  --navy:#0f1f3d;
  --navy-2:#162847;
  --navy-3:#1e3560;
  --accent:#f4622a;
  --accent-h:#d94e1f;
  --accent-2:#f9a13e;
  --sky:#4a9eff;
  --light:#f5f7fb;
  --white:#fff;
  --text:#1a2940;
  --muted:#6b7f99;
  --border:rgba(15,31,61,.09);
  --radius:20px;
  --radius-sm:12px;
  --sh-sm:0 2px 12px rgba(15,31,61,.08);
  --sh-md:0 8px 32px rgba(15,31,61,.12);
  --sh-lg:0 24px 64px rgba(15,31,61,.16);
}

/* --- Base Variables & Layout (Fallback) --- */
:root {
  --white: #ffffff;
  --navy: #0f172a;
  --border: #e2e8f0;
  --accent: #ff5722;
  --accent-2: #f4622a;
  --muted: #64748b;
  --text: #1e293b;
  --sh-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Styling --- */
.who { padding: 88px 0; background: var(--white); }
.who-header { text-align: center; margin-bottom: 52px; }

/* Responsive Grid */
.who-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; /* Desktop: 2 columns */
  gap: 24px; 
}

.who-card { 
  border-radius: 24px; 
  padding: 40px 36px; 
  border: 2px solid var(--border); 
  position: relative; 
  overflow: hidden; 
  transition: all .3s; 
  display: flex;
  flex-direction: column;
}

.who-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.who-card.business { background: var(--navy); }
.who-card.consultant { background: var(--white); }
.who-card.business:hover { border-color: var(--accent); }
.who-card.consultant:hover { border-color: var(--navy); }

/* Internal Typography & Elements */
.who-tag { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; display: inline-block; width: fit-content; }
.business .who-tag { background: rgba(244, 98, 42, .2); color: var(--accent-2); }
.consultant .who-tag { background: rgba(15, 31, 61, .08); color: var(--navy); }

.who-card h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.business h3 { color: #fff; }
.consultant h3 { color: var(--navy); }

.who-body { font-size: .95rem; line-height: 1.75; margin-bottom: 24px; }
.business .who-body { color: rgba(255, 255, 255, .7); }
.consultant .who-body { color: var(--muted); }

.who-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; padding: 0; }
.who-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; font-weight: 500; text-align: left; }
.business .who-bullets li { color: rgba(255, 255, 255, .85); }
.consultant .who-bullets li { color: var(--text); }

.who-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.business .who-check { background: rgba(244, 98, 42, .25); }
.consultant .who-check { background: rgba(45, 179, 112, .15); }
.who-check svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 3; }
.business .who-check svg { stroke: var(--accent-2); }
.consultant .who-check svg { stroke: #2db370; }

.who-bg-shape { position: absolute; bottom: -60px; right: -40px; width: 200px; height: 200px; border-radius: 50%; opacity: .05; pointer-events: none; }
.business .who-bg-shape { background: var(--accent); }
.consultant .who-bg-shape { background: var(--navy); }

/* --- Media Queries --- */

/* Tablet Adjustments */
@media (max-width: 992px) {
  .who-card { padding: 32px; }
  .who-grid { gap: 20px; }
}

/* Mobile Adjustments (Switch to Single Column) */
@media (max-width: 768px) {
  .who { padding: 60px 0; }
  .who-header { margin-bottom: 40px; }
  
  .who-grid { 
    grid-template-columns: 1fr; /* Stacked */
    max-width: 500px; /* Centered narrow stack looks better */
    margin: 0 auto;
  }

  .who-card { padding: 36px 24px; }
  
  /* Ensure the button is full-width on mobile */
  .who-card .btn {
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-title { font-size: 1.75rem; }
  .who-card h3 { font-size: 1.25rem; }
  .who-body { font-size: 0.9rem; }
  .who-bullets li { font-size: 0.85rem; }
}