@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');


        /* ===== GLOBAL STYLES ===== */
        :root {
            --primary: #ff9bb3; /* Soft baby pink */
            --secondary: #d8a7b1; /* Dusty pink */
            --light: #fff5f7; /* Very light pink */
            --dark: #8a4f5e; /* Deep pink for contrast */
            --text: #4a4a4a; /* Soft dark gray */
            --accent: #f8e1e7; /* Light pink accent */
        }
        
        body {
            margin: 0;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: var(--text);
            line-height: 1.6;
            scroll-behavior: smooth;
            background-color: #fff5f7;
        }
		
		html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Every section after hero is white */
body > section:not(#home) {
  background: #fff5f7 !important;
}

#hero-caption {
  margin-top: -150px;   /* pull it upwards */
  margin-bottom: -150px;
}

        
        /* ===== NAVIGATION ===== */
/* Base Nav Styles */
nav {
    background: white;
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.logo-img {
    height: 80px;
    width: auto;
    margin-top: 5px;
    filter: brightness(0);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #000;
}

/* Burger Menu Styles (single declaration) */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    margin-left: auto; /* Added here instead of media query */
}

.bar {
    width: 100%;
    height: 3px;
    background: #333; /* Changed from #fff to visible color */
    transition: all 0.3s ease;
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav.active {
    right: 0;
}

.burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex; /* Only need to override display here */
    }
}


        
        /* ===== SECTION STYLES ===== */
        section {
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* ===== TYPOGRAPHY ===== */
        #home h1 {
  display: inline;
  background: rgba(0,0,0,0.75);   /* slightly softer than 0.8 */
  color: #fff;
  border-radius: 8px;             /* smoother pill edges */
  line-height: 1.3;               /* tighter, headline feel */
  font-size: 2.75rem;             /* a little less bulky */
  font-weight: 300;               /* ✅ lighter thickness */
  font-family: 'Poppins', sans-serif;  /* ✅ cleaner font */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

#home h2 {
  font-size: 1.6rem;
  font-weight: 350; /* Lighter than h1 but still readable */
  color: white;
  margin-top: 10px;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 350; /* More visible than 250 */
  margin-top: 2rem;
}

p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* per-line highlight */
.line-highlight {
  background: #000;       /* solid black */
  color: #fff;            /* white text for contrast */
  padding: 0.75em 1em;    /* breathing space inside */
  border-radius: 6px;     /* softer edges */
  display: block;         /* ensures block-level layout */
  margin: 1em 0;          /* spacing between paragraphs */
  line-height: 1.6;       /* improve readability */
}

        
        /* ===== BUTTONS ===== */
        .btn {
            background: var(--dark);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 20px;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(216, 167, 177, 0.4);
        }

.btn--special {
  background: #ff9bb3;   /* green */
  color: #fff;
}

.btn--special:hover {
  background: #8a4f5e;   /* darker green */
}

/* Make buttons sit next to each other */
#home .home-content a.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
  width: auto !important;              /* override any width:100% */
}

/* Second button: pink + desktop spacing */
#home .home-content a.btn + a.btn{
  margin-left: 24px;                   /* more space on desktop */
  background: var(--header-pink, #f7aabc);
  border: 1px solid var(--header-pink, #f7aabc);
  color: #fff;
}

/* Constant glow behind the FIRST button */
#home .home-content a.btn:first-of-type{
  box-shadow:
    0 0 36px 12px var(--header-pink, #f7aabc), /* pink halo */
    0 10px 30px rgba(0,0,0,.25);               /* subtle depth */
}
#home .home-content a.btn:first-of-type:hover{
  box-shadow:
    0 0 36px 12px var(--header-pink, #f7aabc),
    0 10px 30px rgba(0,0,0,.25);
}

.btn-glow {
  box-shadow:
    0 0 18px 6px var(--header-pink, #f7aabc),  /* softer halo */
    0 6px 18px rgba(0,0,0,.2);                 /* lighter depth */
  position: relative;
  z-index: 1;
  margin: 20px;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px 8px var(--header-pink, #f7aabc),
    0 8px 20px rgba(0,0,0,.25);
}


/* Mobile: keep side-by-side but smaller */
@media (max-width: 560px){
  #home .home-content > a.btn{
    width: calc(50% - 8px) !important;  /* two per row */
    padding: 10px 12px;
    font-size: 0.95rem;
    margin-top: 12px;
    vertical-align: top;
  }
}
        
/* ===== REASONS TO MODEL SECTION ===== */
#reasons {
  background: var(--light);
  padding: 4rem 2rem;
  background: #fff;
}

.intro-text {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #444;
}

/* Timeline layout */
.timeline {
  padding: 3rem 2rem;
  background: #fff;
  position: relative;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== DESKTOP TIMELINE ===== */
@media (min-width: 769px) {
  .timeline-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
  }

  .timeline-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #eee;
    transform: translateX(-50%);
    z-index: 1;
  }

  .step {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    position: relative;
  }

  .step.left {
    text-align: right;
    align-items: flex-end;
  }

  .step.right {
    text-align: left;
    align-items: flex-start;
  }

  .step .icon {
    font-size: 1.8rem;
    color: #f9a8d4;
    margin-bottom: 0.5rem;
  }

  .step .text h4 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    color: #111;
  }

  .step .text p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .timeline-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* More spacing between each step */
    padding: 0 1.5rem;
  }

  .timeline-steps::before {
    left: 20px;
  }

  .step {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 1rem;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    background: none;         /* No background */
    border: none;             /* No border */
    box-shadow: none;         /* No shadow */
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .step.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .step .icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
  }

  .step .text h4 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    color: #111;
  }

  .step .text p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }
}
/* ===== FAQ SECTION ===== */
#faq {
  background: white;
  padding: 60px 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 15px;
}

.faq-question {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
  padding: 20px 0;
  padding-right: 40px; /* Leave room for the + icon */
  position: relative;
  line-height: 1.4;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--dark);
  pointer-events: none;
}

.faq-question.active:after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 10px 0;
  animation: fadeIn 0.3s ease;
  color: var(--dark);
}

.faq-answer p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive tweak if needed */
@media (max-width: 768px) {
  .faq-container {
    padding: 0 15px;
  }
}

/* --- Compact square icon row --- */
.contact-info{
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;                 /* space between tiles */
}

/* each contact tile */
.contact-info .contact-method{
  margin: 0;
  padding: 0;
}

.contact-info .contact-method a{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none !important;
  color: var(--dark);
}

/* the square around the icon (tight + even) */
.contact-info .contact-method a i{
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;              /* perfect square */
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--accent);
  margin: 0;                 /* override any right-margin */
  line-height: 1;
  font-size: 26px;           /* icon size */
  color: var(--primary);
}

/* label beneath the square */
.contact-info .contact-method a span{
  font-size: .8rem;
  color: #333;
}

/* hover affordance */
.contact-info .contact-method a:hover i{
  border-color: var(--primary);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  transform: translateY(-2px);
  transition: .15s ease;
}


/* extra-small phones: slightly smaller squares */
@media (max-width: 420px){
  .contact-info .contact-method a i{
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

.contact-info{
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}
  
.footer-social{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:12px;
}
.footer-social a{
  display:grid; place-items:center;
  width:36px; height:36px;
  border-radius:8px;
  border:1px solid var(--accent);
  background:#fff;
  color:#fff; /* icon color handled by font-awesome currentColor */
}
.footer-social i{ color: var(--dark); font-size:18px; line-height:1; }

/* Make the three footer text links white (not the icon tiles) */
footer > a,
footer > a:visited{
  color: #fff !important;
  text-decoration: none;
}
footer > a:hover{ text-decoration: underline; }

/* Separator dots */
footer > span{ color: rgba(255,255,255,0.6); }

        /* ===== BACKGROUND SECTIONS ===== */
        #home {
            background: linear-gradient(rgba(255, 155, 179, 0.7), rgba(138, 79, 94, 0.6)), 
                        url('https://images.unsplash.com/photo-1590845947676-fa2576f401d2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        #apply {
            background: #fff5f7;
        }
        
        /* ===== FORM STYLES ===== */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-group input, 
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--accent);
            border-radius: 5px;
            font-family: inherit;
            background-color: #fcf9f9;
        }
        
        /* Style for file uploads */
        .form-group input[type="file"] {
            padding: 6px;
        }
        
        /* Honeypot field (spam protection) */
        .form-group.honey {
            position: absolute;
            left: -9999px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        /* Font Awesome Icons (for contact section) */
        .fa {
            display: inline-block;
            width: 20px;
            text-align: center;
        }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: white;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-links span {
    color: rgba(255,255,255,0.5);
}
/* DM-style Testimonials */
.dm-testimonials {
  background: #fff5f7;
  padding: 4rem 2rem;
  text-align: center;
}

.dm-testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.dm-convo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.bubble {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 90%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.bubble.left {
  flex-direction: row;
  align-self: flex-start;
}

.bubble.right {
  flex-direction: row-reverse;
  align-self: flex-end;
}

.avatar {
  background: var(--primary);
  color: white;
  font-weight: bold;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.message {
  background: white;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
}

.message p {
  margin: 0 0 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.testimonial-form h3 {
  color: rgba(0, 0, 0, 0.494);
}


.message .name {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
}

/* Animation Trigger */
@media (prefers-reduced-motion: no-preference) {
  .bubble {
    will-change: transform, opacity;
  }
}


/* NAVIGATION BAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 155, 179, 0.95);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
}

nav > div {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--light);
    transform: translateY(-2px);
}

/* Logo text */
.logo-text {
    color: white;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
 nav > div {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
    margin-right: 20px;
  }

  .logo-container {
    margin-bottom: 0;
  }
}

/* ===== HOME BACKGROUND ===== */
#home {
  position: relative;           /* already present later; keep it */
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;             /* neutral base behind the hero image */
  overflow: hidden;
}

/* New hero background layer (dark overlay) */
/* Default (desktop & tablet) hero background */
.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    url('desktop-model-working-on-laptop.webp') center / cover no-repeat;
  z-index: 0;
}

/* Mobile-specific hero background */
@media (max-width: 768px) {
  #home {
    padding-top: 90px; /* moves hero text down */
  }

  .hero-background {
    top: 90px; /* moves background image down */
    height: calc(100% - 80px);
    background:
      linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url('mobile-camgirl-works-on-laptop.webp') center / cover no-repeat;
  }
}

/* Ensure hero text is above */
.home-content {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

/* Paragraph stays block-level; only spacing here */
.hero-caption {
  margin: 0 0 1.5rem 0;   /* space above the button */
}




/* Prevent horizontal scroll and ensure full width */
html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}


  .mobile-cta {
    padding: 10px 0;
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
    text-align: center;
  }



#home::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
/* ===== CALCULATOR SECTION ===== */
.calculator-section {
  background: #fff5f7;
  padding: 1rem 1.5rem 10rem;
}

/* Calculator Section as a glowing card */
.calculator-section .container {
  max-width: 700px;                         /* a bit wider to fit the header + form */
  background: var(--light);                 /* soft pink background */
  border-radius: 20px;                      /* rounded corners */
  box-shadow: 0 0 35px rgba(255, 155, 179, 0.6); /* pink glow */
  padding: 2rem;
  margin: 0 auto;                           /* center the card */
}

/* Header inside the card */
.calculator-section .header {
  background: transparent;                  /* no fill */
  color: var(--dark);                       /* readable dark text */
  text-align: center;
  padding: 1rem 0;
}

.calculator-section .header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calculator-section .header p {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  color: var(--text);
}


/* Calculator Body */
.calculator {
  padding: 2.5rem 2rem;
}

.input-group {
  margin-bottom: 1.8rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 155, 179, 0.2);
}

/* Rate Selector */
.rate-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 per row */
  gap: 15px;
  margin-top: 10px;
}

/* Remove the mobile override that sets 1 column */
@media (max-width: 768px) {
  .rate-selector {
    grid-template-columns: repeat(2, 1fr); /* still 2 per row */
  }
}


.rate-option {
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.rate-option:hover {
  border-color: var(--primary);
  background: white;
}

.rate-option.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.rate-option .rate-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.rate-option .rate-amount {
  font-size: 1.2rem;
  color: #666;
}

.rate-option.selected .rate-amount {
  color: white;
}

/* Custom Rate Input */
.custom-rate {
  margin-top: 1rem;
  display: none;
}

.custom-rate.show {
  display: block;
}

/* Calculate Button */
.calculate-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 155, 179, 0.2);
}

/* Results Box */
.results {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f9cefe 0%, #c85e6d 100%);
  border-radius: 15px;
  color: white;
  display: none;
}

.results.show {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.earnings-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.earning-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

.earning-item .period {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.3rem;
}

.earning-item .amount {
  font-size: 1.3rem;
  font-weight: 700;
}

/* Disclaimer */
.disclaimer {
  display: none; /* hidden by default */
  margin-top: 2rem;
  padding: 1.2rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.disclaimer h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1rem;
}

.disclaimer p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.disclaimer.show {
  display: block; /* reveal when class is added */
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .calculator-section .container {
    border-radius: 15px;
    margin: 0 10px;
  }

  .calculator {
    padding: 2rem 1.2rem 4rem;
  }

  .header {
    padding: 2rem 1.2rem;
  }
}

/* ===== STICKY APPLY BAR ===== */
  .sticky-apply-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #8a4f5e;
    text-align: center;
    z-index: 900;
  }
  .sticky-apply-bar a {
    color: #fff;
    display: block;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
  }
 /* Rounded top (not a bubble), no transition = no bounce */
  .sticky-apply-bar{
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -6px 20px rgba(0,0,0,.12);
    will-change: transform; /* smoother without causing bounce */
  }

  /* Reserve just enough space for the fixed bar on mobile only */
  @media (max-width:768px){
    body { padding-bottom: var(--cta-safe-space, 0px); }
  }

  /* Cookie banner + modal (Blueberry) */
#bb-cookie-bar{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 14px 16px;
  width: min(680px, 92vw);
  z-index: 99999;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
  font-size: 14px;
}
#bb-cookie-bar .bb-cookie-actions{ display:flex; gap:8px; align-items:center; }
#bb-cookie-bar .bb-cookie-text a{ color: var(--dark); text-decoration: underline; }
.bb-btn{
  background: var(--dark); color:#fff; border:none; border-radius:8px;
  padding: 8px 14px; cursor:pointer;
}
.bb-btn.ghost{ background:#eee; color:#333; }
.bb-link{ background:none; border:none; color: var(--dark); text-decoration: underline; cursor:pointer; padding: 0 6px; }

/* Modal */
#bb-cookie-modal{ position:fixed; inset:0; z-index:100000; }
#bb-cookie-modal .bb-modal-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.55); }
#bb-cookie-modal .bb-modal{
  position:relative; z-index:1; background:#fff; border-radius:16px;
  width:min(720px, 94vw); margin: 8vh auto; padding: 10px 0 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.bb-modal-header{ display:flex; justify-content:space-between; align-items:center; padding: 12px 18px; border-bottom:1px solid var(--accent); }
.bb-modal-header h2{ margin:0; color: var(--dark); font-size: 1.2rem; }
.bb-close{ font-size: 24px; background:none; border:none; cursor:pointer; color:#333; }
.bb-modal-body{ padding: 12px 18px; display:grid; gap:14px; }
.bb-cat{ border:1px solid var(--accent); border-radius:12px; padding: 12px; background:#fff; }
.bb-cat-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:6px; }
.bb-badge{ font-size:12px; color:#333; background:#eee; padding:3px 8px; border-radius:999px; }
.bb-modal-footer{ padding: 12px 18px; display:flex; justify-content:flex-end; gap:10px; border-top:1px solid var(--accent); }

/* Toggle switch */
.bb-switch{ position:relative; width:44px; height:24px; display:inline-block; }
.bb-switch input{ display:none; }
.bb-slider{
  position:absolute; inset:0; background:#ddd; border-radius:999px; transition: .2s;
}
.bb-slider:before{
  content:""; position:absolute; height:18px; width:18px; left:3px; top:3px;
  background:#fff; border-radius:50%; transition:.2s; box-shadow:0 1px 2px rgba(0,0,0,.2);
}
.bb-switch input:checked + .bb-slider{ background: var(--dark); }
.bb-switch input:checked + .bb-slider:before{ transform: translateX(20px); }

/* Mobile */
@media (max-width: 560px){
  #bb-cookie-bar{ grid-template-columns: 1fr; gap:10px; }
  .bb-modal{ margin: 4vh auto; }
}

/* --- Mobile: force two-up, allow text wrap, shrink size --- */
@media (max-width: 560px){
  #home .home-content > a.btn{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px) !important; /* two per row */
    min-width: 0;
    padding: 8px 10px;                  /* smaller padding */
    font-size: 0.85rem;                 /* smaller text */
    line-height: 1.2;
    white-space: normal !important;     /* allow label to wrap */
    word-break: break-word;             /* prevent overflow */
    vertical-align: top;
    margin-top: 12px;
  }
  #home .home-content > a.btn + a.btn{
    margin-left: 20px !important;       /* gap between the two */
  }
}

/* Extra-tight phones (e.g., 320px) */
@media (max-width: 360px){
  #home .home-content > a.btn{
    padding: 7px 8px;
    font-size: 0.8rem;
  }
}

/* Make anchored sections land below the sticky nav */
#benefits { scroll-margin-top: 90px; }

#contact{
  min-height: auto !important;
  padding: 50px 16px 150px !important;                 /* 50px top/bottom */
}

#contact h2{ margin: 0 0 20px; }

section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
section:first-of-type {
  margin-top: 0;
}

/* Tighten the join between Calculator → Dream section */
.calculator-section{
  padding-bottom: 8px;      /* was big; trims the white band */
  margin-bottom: 3rem;         /* no extra gap below the section */
}
.calculator-section .container{
  margin-bottom: 0;         /* ensure the card itself doesn't add gap */
}

/* Dream section starts immediately */
#dream-section{
  background:#fff;          /* keep white background */
  margin-top: 0;            /* no outside gap above */
  padding-top: 100px;        /* small breathing space only */
}
/* Start the dream section close, without overlapping */
#dream-section{
  padding-top: 50px;     /* gentle nudge up */
  margin-top: 0;         /* no negative margins */
}
/* General tidy: no extra space after last paragraph or results box */
#results{ margin-bottom: 0; }
.disclaimer{ margin-bottom: 0; }
#dream-section .line-highlight:last-child{ margin-bottom: 0; }

/* Comments (inside testimonials): remove extra space */
.testimonial-form{
  margin-top: 16px !important;   /* was 40px inline */
  margin-bottom: 0 !important;
}

/* Testimonials section: slimmer bottom to avoid a band of space */
#testimonials,
.dm-testimonials{
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}

/* Kill the gap above the next sales section */
#dream-section,
#dream-training{
  margin-top: -20px !important;
}

/* If anything still sneaks in, zero the margin between these two sections specifically */
#testimonials + #dream-section,
#testimonials + #dream-training{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#uk-faq {
  margin-top: -80px;   /* pull it upwards */
}

#apply {
  margin-top: -100px;   /* adjust the value to taste */
}

#contact {
  margin-top: -200px;   /* pull it upwards */
}

#home .home-content  {
  margin-top: 80px;
}

#benefits {
  margin-top: 60px;
}

#apply h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

#home h1 {
  margin-top: 40px;   /* adjust to taste */
}

#benefits h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

