/*
  Main stylesheet for Create Grow Profit landing page
  - Styles navigation, hero, sections, cards, footer, and responsive behavior
*/

/* ========== Base Styles ========== */
body {
  /* Remove default margin, set base font and background */
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
}

section {
  /* Padding for top/bottom, no bottom margin */
  padding: 80px 0 60px 0;
  margin-bottom: 0;
}

/* ========== Hero Section ========== */
.hero {
  /* Gradient background, white text, vertical centering, shadow */
  background: linear-gradient(120deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  padding-bottom: 120px;
  position: relative;
  padding-top: 120px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(80,80,180,0.13);
}

/* ========== Navigation Bar ========== */
.navbar {
  /* Fixed at top, dark background, blur, shadow, flex layout */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(34, 34, 34, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4vw 22px 4vw;
  box-sizing: border-box;
  margin: 0;
  transition: background 0.3s;
  overflow-x: hidden;
}

.navbar.scrolled {
  /* Slightly darker background when scrolled */
  background: rgba(34, 34, 34, 0.97);
}

.logo {
  /* Brand logo styles */
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
  margin-right: 40px;
  padding-right: 40px;
  border-right: 2px solid rgba(255,255,255,0.18);
  text-shadow: 0 2px 8px rgba(80,80,180,0.10);
}
.logo span {
  /* Highlighted part of logo */
  color: #ffd700;
}

.nav-links {
  /* Navigation links (desktop) */
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  max-width: 100%;
  justify-content: flex-end;
  width: auto;
  box-sizing: border-box;
  margin-left: 40px;
  font-family: 'Montserrat', sans-serif;
}

.nav-links li {
  /* Each nav item */
  display: flex;
  align-items: center;
}

.nav-links a {
  /* Nav link styles */
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  padding: 8px 14px;
  border-radius: 12px;
  display: inline-block;
  border: none;
}
.nav-links a:hover {
  /* Hover effect for nav links */
  color: #ffd700;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 2px 8px rgba(80,80,180,0.10);
}

.nav-links .nav-contact {
  /* Special style for Contact button in nav */
  background: #ffd700;
  color: #222;
  font-weight: 900;
  border-radius: 30px;
  padding: 10px 20px;
  margin-left: 10px;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(80,80,180,0.13);
  border: none;
}
.nav-links .nav-contact:hover {
  /* Hover effect for Contact button */
  background: #fff;
  color: #2575fc;
  box-shadow: 0 6px 24px rgba(80,80,180,0.18);
}

.hamburger {
  /* Hamburger menu (hidden on desktop, shown on mobile) */
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 18px;
}
.hamburger span {
  /* Hamburger bars */
  height: 4px;
  width: 32px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== Hero Content ========== */
.hero-content {
  /* Centered content in hero section */
  text-align: center;
  margin-top: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content h1 {
  /* Main headline */
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.subtitle {
  /* Subtitle under headline */
  font-size: 1.3rem;
  margin-bottom: 32px;
  font-weight: 400;
}
.cta-buttons {
  /* Container for CTA buttons */
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.btn {
  /* General button styles */
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.btn.primary {
  /* Primary button (yellow) */
  background: #ffd700;
  color: #222;
}
.btn.primary:hover {
  background: #fff;
  color: #2575fc;
}
.btn.secondary {
  /* Secondary button (outline) */
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}
.btn.secondary:hover {
  background: #ffd700;
  color: #222;
}

/* ========== Section Containers ========== */
.process-section, .case-study-section, .featured-videos-section, .free-guide-section, .resources-section {
  /* Card-like section containers */
  background: #f7f8fa;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(80,80,180,0.07);
  padding: 80px 4vw 60px 4vw;
}
.process-section h2, .case-study-section h2, .featured-videos-section h2, .free-guide-section h2, .resources-section h2 {
  /* Section headings */
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 48px;
  font-weight: 900;
  letter-spacing: 1px;
}

.steps, .testimonials, .video-gallery, .resources-links {
  /* Flex layout for cards/testimonials/videos/resources */
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.step, .testimonial, .video-item {
  /* Card size for steps, testimonials, videos */
  width: 340px;
  min-width: 260px;
  max-width: 95vw;
  padding: 40px 24px;
}

.case-study-content, .free-guide-content, .resources-links {
  /* Centered content for case studies, guides, resources */
  max-width: 700px;
  margin: 0 auto;
}
.case-study-content p, .free-guide-content p {
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.resources-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 24px;
}

/* ========== Featured Videos ========== */
.featured-videos-section {
  margin-bottom: 40px;
}
.video-gallery {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.video-item {
  /* Card for each video */
  background: #f7f8fa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(80,80,180,0.07);
  padding: 24px 16px 16px 16px;
  width: 360px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-item p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #222;
}
.video-item iframe {
  border-radius: 12px;
  width: 100%;
  height: 203px;
  box-shadow: 0 2px 8px rgba(80,80,180,0.08);
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  /* Gradient background for testimonials */
  background: linear-gradient(120deg, #f7b42c 0%, #fc575e 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(80,80,180,0.07);
}
.testimonials-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 48px;
  font-weight: 900;
  letter-spacing: 1px;
}
.testimonials {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.testimonial {
  /* Card for each testimonial */
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 28px 24px;
  width: 360px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px rgba(80,80,180,0.07);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial span {
  display: block;
  margin-top: 12px;
  font-size: 0.98rem;
  color: #fff8;
}

/* ========== Footer ========== */
.footer {
  /* Main footer styles */
  background: #222;
  color: #fff;
  padding: 48px 0 0 0;
  font-size: 1.1rem;
  margin-top: 80px;
}
.footer-content {
  /* Layout for footer content */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8vw 32px 8vw;
  border-bottom: 1px solid #333;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-social a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}
.footer-links a:hover, .footer-social a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0 0 0;
  color: #aaa;
  font-size: 1rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  /* Adjust section padding and width for smaller screens */
  .process-section, .case-study-section, .featured-videos-section, .free-guide-section, .resources-section, .testimonials-section {
    max-width: 98vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 1100px) {
  /* Tighter navbar and nav-links, smaller logo */
  .navbar {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .nav-links {
    max-width: 100%;
    gap: 1.2rem;
    margin-left: 16px;
  }
  .logo {
    font-size: 1.7rem;
    margin-right: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 900px) {
  /* Stack sections, show hamburger, mobile nav styles */
  .steps, .testimonials, .footer-content, .video-gallery, .resources-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
    padding: 14px 2vw 14px 2vw;
    align-items: flex-start;
  }
  .nav-links {
    display: none !important;
  }
  .nav-links.open {
    /* Show nav links as block on mobile when open */
    border: 2px solid #ffd700 !important;
    display: block !important;
    background: #fff;
    width: 100%;
    position: static;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .nav-links.open li {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
  }
  .nav-links a, .nav-links .nav-contact {
    /* Mobile nav link styles */
    color: #222;
    background: none;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    text-align: center;
    padding: 16px 0;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .nav-links a:last-child, .nav-links .nav-contact:last-child {
    border-bottom: none;
  }
  .nav-links .nav-contact {
    border-radius: 30px;
    background: #ffd700;
    color: #222;
    font-weight: 900;
    padding: 12px 0;
    margin: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .logo {
    font-size: 1.2rem;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .hamburger {
    display: flex !important;
    z-index: 2100;
  }
  .video-item, .testimonial {
    width: 95vw;
    min-width: 0;
  }
  .video-item iframe {
    width: 100%;
    height: 220px;
  }
  .mobile-menu-overlay {
    display: none !important;
  }
}
@media (max-width: 600px) {
  /* Further adjustments for very small screens */
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .step, .testimonial, .video-item {
    width: 98vw;
    min-width: 0;
  }
  .footer-content {
    padding: 0 4vw 24px 4vw;
  }
  .video-item iframe {
    height: 180px;
  }
}

/* ========== Special Navbar and Hero Variants ========== */
.white-navbar {
  /* White background navbar variant */
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  color: #222;
}
.white-navbar .logo {
  color: #222;
}
.white-navbar .logo span {
  color: #ffd700;
}
.white-navbar .nav-links a {
  color: #222;
}
.white-navbar .nav-links a:hover {
  color: #2575fc;
  background: #f7f8fa;
}
.white-navbar .nav-links .nav-contact {
  background: #ffd700;
  color: #222;
}
.white-navbar .nav-links .nav-contact:hover {
  background: #2575fc;
  color: #fff;
}
.white-navbar .hamburger span {
  background: #222;
}

/* ========== Coke Hero Variant ========== */
.coke-hero {
  /* Special hero section with gradient and overlays */
  background: linear-gradient(120deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  box-shadow: 0 8px 32px rgba(80,80,180,0.13);
  overflow: hidden;
}
.coke-hero .hero-content {
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.coke-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  white-space: nowrap;
}
.coke-hero .subtitle {
  margin-bottom: 36px;
  background: rgba(255,255,255,0.85);
  color: #222;
  display: inline-block;
  padding: 18px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(80,80,180,0.08);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 90vw;
  text-align: center;
}
@media (max-width: 700px) {
  .coke-hero .hero-content .subtitle {
    padding: 12px 8px;
    font-size: 1rem;
  }
}
.hero-cta {
  /* Large yellow CTA button in hero */
  background: #ffd700;
  color: #222;
  font-weight: 900;
  border-radius: 40px;
  padding: 20px 48px;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(80,80,180,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.hero-cta:hover {
  background: #fff;
  color: #2575fc;
  box-shadow: 0 8px 32px rgba(80,80,180,0.18);
}
.hero-bg-pattern {
  /* Subtle pattern overlay in hero */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
  opacity: 0.12;
  z-index: 1;
}

/* ========== Decorative Dividers ========== */
.divider {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* ========== Coke Section/Card Styles ========== */
.coke-section {
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(80,80,180,0.07);
  padding: 80px 4vw 60px 4vw;
}
.card-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.card {
  background: #f7f8fa;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(80,80,180,0.13);
  padding: 48px 32px;
  margin-bottom: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 260px;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card:hover {
  box-shadow: 0 16px 48px rgba(80,80,180,0.18);
  transform: translateY(-4px) scale(1.03);
}
.card .icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 900;
}
.card p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ========== Coke Footer Variant ========== */
.footer.coke-footer {
  background: #222;
  color: #fff;
  padding: 48px 0 0 0;
  font-size: 1.1rem;
  margin-top: 80px;
}
.footer.coke-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8vw 32px 8vw;
  border-bottom: 1px solid #333;
}
.footer.coke-footer .footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer.coke-footer .footer-links, .footer.coke-footer .footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer.coke-footer .footer-links a, .footer.coke-footer .footer-social a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}
.footer.coke-footer .footer-links a:hover, .footer.coke-footer .footer-social a:hover {
  color: #fff;
}
.footer.coke-footer .footer-bottom {
  text-align: center;
  padding: 24px 0 0 0;
  color: #aaa;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .coke-section {
    max-width: 98vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .card-grid {
    gap: 1.2rem;
  }
  .logo {
    font-size: 1.7rem;
    margin-right: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
    padding: 14px 2vw 14px 2vw;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100vw;
    width: 100%;
    gap: 1.2rem;
    margin-left: 0;
    background: rgba(34,34,34,0.97);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px rgba(80,80,180,0.13);
    padding: 18px 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2000;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: left;
    padding: 0 24px;
  }
  .nav-links a, .nav-links .nav-contact {
    font-size: 1.2rem;
    padding: 14px 0;
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  .logo {
    font-size: 1.2rem;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .hamburger {
    display: flex !important;
    z-index: 2100;
  }
  .card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 32px 8px;
  }
  .coke-hero .hero-content {
    max-width: 90vw;
  }
  .coke-hero .hero-content h1 {
    font-size: 1.3rem;
    white-space: normal;
  }
}

/* ========== Hero Background Image and Overlays ========== */
.hero-bg-image {
  /* Full-bleed background image for hero */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('1748581114163.jpg') center center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.coke-hero::before {
  /* Gradient overlay for hero background */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(106,17,203,0.75) 0%, rgba(37,117,252,0.75) 100%);
  z-index: 1;
}
.coke-hero .hero-content {
  z-index: 2;
  position: relative;
}
.coke-hero .hero-bg-pattern {
  z-index: 1;
}

/* ========== Hero Video Container ========== */
.hero-video-container {
  width: 100%;
  max-width: 720px;
  margin: 32px auto 32px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-container iframe {
  width: 100%;
  height: 40vw;
  max-width: 640px;
  max-height: 360px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(80,80,180,0.13);
  background: #000;
}
@media (max-width: 700px) {
  .hero-video-container iframe {
    height: 56vw;
    max-height: 240px;
  }
}

.coke-hero .hero-content h1 {
  margin-bottom: 28px;
}
.coke-hero .hero-content .subtitle {
  margin-bottom: 36px;
}
.hero-video-container {
  margin-top: 24px;
  margin-bottom: 40px;
}

/* Responsive: Show each hero subtitle step on its own line in mobile view */
@media (max-width: 700px) {
  .responsive-subtitle .subtitle-steps .step {
    display: block;
    margin-bottom: 4px;
  }
}

/* On desktop, keep steps inline (default) */
.responsive-subtitle .subtitle-steps .step {
  display: inline;
  margin-bottom: 0;
}

/* Only show .mobile-break <br> on mobile, hide on desktop */
.mobile-break { display: none; }
@media (max-width: 700px) {
  .mobile-break { display: initial; }
}

/* Robust centering for .hero-subsubtitle as one unbroken line */
.hero-subsubtitle {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin: 24px 0 24px 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
@media (min-width: 900px) {
  .hero-subsubtitle {
    /* Remove previous centering attempts */
    display: block;
    margin: 24px 0 24px 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
}

/* Force hero h1 to be perfectly centered in all cases */
.coke-hero .hero-content h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  max-width: 100%;
  white-space: normal !important;
}

/* Reduce hero h1 font size moderately to help prevent line breaks */
.coke-hero .hero-content h1 {
  font-size: 1.85rem;
}

/* Increase hero-content max-width on desktop to allow h1 to fit on one line */
@media (min-width: 1100px) {
  .coke-hero .hero-content {
    max-width: 100vw;
    width: 100%;
  }
  .coke-hero .hero-content h1 {
    display: block;
    width: 100%;
    white-space: nowrap;
    font-size: 2rem;
  }
}

/* Restore original hero h1 font size */
.coke-hero .hero-content h1 {
  font-size: 2.2rem;
}

/* Remove the media queries for h1 font size */

/* Reduce hero h1 font size on desktop to prevent line break */
@media (max-width: 900px) {
  /* Slightly smaller on tablets/small screens */
  .coke-hero .hero-content h1 {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  /* Even smaller on mobile */
  .coke-hero .hero-content h1 {
    font-size: 1.1rem;
  }
}

/* Force hero h1 to stay on a single line on desktop */
.coke-hero .hero-content h1 {
  white-space: nowrap;
}

/* Ensure hero subsubtitle and CTA button are stacked, centered, and not full width */
.hero-subsubtitle,
.btn.hero-cta {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}

/* Mini-cards row in hero section (CREATE, GROW, PROFIT) */
.hero-mini-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  margin: 28px 0 32px 0;
}
.mini-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(80,80,180,0.08);
  padding: 27px 33px 21px 33px;
  min-width: 165px;
  max-width: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mini-icon {
  font-size: 2.55rem;
  margin-bottom: 12px;
}
.mini-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #2575fc;
  margin-bottom: 4px;
}
.mini-sublabel {
  font-size: 0.98rem;
  color: #222;
  opacity: 0.85;
}
@media (max-width: 700px) {
  .hero-mini-cards {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .mini-card {
    min-width: 70vw;
    max-width: 90vw;
    padding: 14px 8px 10px 8px;
  }
}

/* Lead Magnet Section Styles */
.lead-magnet-section {
  background: #f7f8fa;
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lead-magnet-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(80,80,180,0.07);
  padding: 40px 32px;
}
.lead-magnet-image {
  width: 520px;
  max-width: 80vw;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(80,80,180,0.13);
  background: #fff;
}
.lead-magnet-content {
  flex: 1;
  min-width: 220px;
}
.lead-magnet-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 18px;
}
.lead-magnet-text {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 28px;
  line-height: 1.6;
}
.lead-magnet-btn {
  background: #ffd700;
  color: #222;
  font-weight: 900;
  border-radius: 30px;
  padding: 16px 38px;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(80,80,180,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.lead-magnet-btn:hover {
  background: #2575fc;
  color: #fff;
  box-shadow: 0 8px 32px rgba(80,80,180,0.18);
}
@media (max-width: 900px) {
  .lead-magnet-inner {
    flex-direction: column;
    gap: 24px;
    padding: 24px 8px;
  }
  .lead-magnet-image {
    width: 90vw;
    max-width: 98vw;
  }
  .lead-magnet-content {
    width: 100%;
    min-width: 0;
  }
  .lead-magnet-title {
    font-size: 1.4rem;
  }
}

/* Success Stories (Video Testimonials) Section Styles */
.success-stories-section {
  position: relative;
  background: linear-gradient(90deg, rgba(255,215,0,0.10) 0%, rgba(255,215,0,1) 75%, rgba(255,215,0,1) 100%);
  border-top: 2px solid #e0e6ef;
  border-bottom: 2px solid #e0e6ef;
  padding: 80px 0 80px 0;
  overflow: hidden;
}
.success-stories-section::before {
  display: none !important;
}
.success-stories-section > * {
  position: relative;
  z-index: 1;
}
.success-stories-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 36px;
  text-align: center;
}
/* Use CSS grid for a 2x3 layout of video testimonials */
.video-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
  margin-top: 0;
}
@media (max-width: 900px) {
  .video-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.video-testimonial-item {
  max-width: 700px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(80,80,180,0.08);
  padding: 18px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-testimonial-item iframe {
  width: 680px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(80,80,180,0.08);
  background: #000;
}
.video-testimonial-item p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #222;
}
.video-testimonial-item a {
  color: #2575fc;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .video-testimonial-item iframe {
    width: 90vw;
    max-width: 680px;
    height: 50vw;
    max-height: 400px;
  }
}
@media (max-width: 900px) {
  .video-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .video-testimonial-item {
    max-width: 98vw;
  }
  .video-testimonial-item iframe {
    width: 98vw;
    max-width: 98vw;
    height: 56vw;
    max-height: 340px;
  }
}

/* Smaller 3-up testimonials grid for Video Group */
.vg-testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}
.vg-testimonials-grid .video-testimonial-item {
  width: auto !important;
  max-width: none !important;
  padding: 12px 10px 10px 10px !important;
}
.vg-testimonials-grid .video-testimonial-item iframe {
  width: 100% !important;
  height: 160px !important;
  max-width: 100% !important;
  display: block !important;
}
@media (max-width: 900px) {
  .vg-testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .vg-testimonials-grid .video-testimonial-item iframe {
    height: 56vw !important;
  }
}

/* White opaque container for all hero content */
.hero-content-container {
  background: rgba(255,255,255,0.6);
  border-radius: 28px;
  padding: 48px 36px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(80,80,180,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content-container,
.hero-content-container * {
  color: #222 !important;
}
@media (max-width: 900px) {
  .hero-content-container {
    padding: 24px 8px;
    max-width: 98vw;
  }
}

/* Prevent subtitle from breaking on desktop */
@media (min-width: 900px) {
  .no-break-desktop {
    white-space: nowrap;
  }
}

/* Ensure a visible line of space in the hero subtitle */
.subtitle-break {
  display: block;
  margin-bottom: 1em;
}

/* Ensure .hero-subsubtitle is always centered, even with nowrap */
.hero-subsubtitle {
  text-align: center !important;
}

/* Ensure .hero-subsubtitle is not restricted in width */
.hero-subsubtitle {
  max-width: none;
}

/* Only restrict .btn.hero-cta width */
.btn.hero-cta {
  max-width: 420px;
}

/* More Free Resources 2x2 grid layout */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  justify-items: center;
  align-items: start;
  margin-top: 36px;
  margin-bottom: 36px;
}
.resource-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 340px;
  width: 100%;
}
.resource-image {
  max-width: 1040px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(80,80,180,0.08);
  margin-bottom: 18px;
}
.resource-link-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.resource-link {
  display: block;
  margin-top: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2575fc;
  text-decoration: underline;
  text-align: center;
  width: 100%;
}
@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .resource-item {
    max-width: 98vw;
  }
  .resource-image {
    max-width: 98vw;
  }
}
.resource-item {
  max-width: 1040px;
  width: 100%;
}
@media (max-width: 1200px) {
  .resource-image {
    max-width: 80vw;
  }
  .resource-item {
    max-width: 80vw;
  }
}
@media (max-width: 900px) {
  .resource-image {
    max-width: 98vw;
  }
  .resource-item {
    max-width: 98vw;
  }
}

/* Reach Out Section Styles */
.reach-out-section {
  background: #ffd700;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80,80,180,0.07);
  max-width: 900px;
  margin: 48px auto 48px auto;
  padding: 48px 24px 36px 24px;
  text-align: center;
  color: #222;
}
.reach-out-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 18px;
}
.reach-out-text {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 18px;
}
.reach-out-socials {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.reach-out-socials li {
  font-size: 1.08rem;
  color: #222;
}
.reach-out-socials a {
  color: #2575fc;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 6px;
}
.reach-out-socials a:hover {
  color: #ffd700;
}
@media (max-width: 700px) {
  .reach-out-section {
    padding: 24px 6vw 18px 6vw;
    max-width: 98vw;
  }
  .reach-out-title {
    font-size: 1.3rem;
  }
  .reach-out-text {
    font-size: 1rem;
  }
  .reach-out-socials li {
    font-size: 1rem;
  }
}

/* Add full-width purple gradient background to Final CTA section */
.final-cta-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(120deg, rgba(106,17,203,0.82) 0%, rgba(37,117,252,0.82) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(80,80,180,0.07);
  border-radius: 0;
  padding: 64px 0 48px 0;
  z-index: 1;
  text-align: center;
}
.final-cta-section .hero-content-container,
.final-cta-section .subtitle,
.final-cta-section .hero-subsubtitle,
.final-cta-section .btn.hero-cta,
.final-cta-section p,
.final-cta-section span,
.final-cta-section a {
  color: #111 !important;
}
.final-cta-section a {
  color: #2575fc !important;
}
.final-cta-section a:hover {
  color: #6a11cb !important;
}
@media (max-width: 900px) {
  .final-cta-section {
    padding: 32px 0 24px 0;
    border-radius: 0;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
  }
}

/* Video Group hero overrides */
.video-group-hero .resources-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
}
.video-group-hero .resources-intro {
  font-size: 1.3rem;
}

/* Video Group page-specific tweaks */
.video-group-page .video-yellow-block {
  /* remove any dividing border between stacked yellow sections */
  border-top: none !important;
  border-bottom: none !important;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 0;
}
.video-group-page .video-yellow-last {
  /* ensure yellow carries to footer with no gap */
  padding-bottom: 32px;
}
.video-group-page .footer.coke-footer {
  margin-top: 0;
}

/* ===== Video Group Carousel ===== */
.vg-carousel {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.vgc-viewport {
  overflow: hidden;
  width: 100%;
}
.vgc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
  padding: 14px 0 24px 0;
}
.vgc-track .card {
  flex: 0 0 340px;
  max-width: 340px;
}
@media (max-width: 900px) {
  .vgc-track .card {
    flex-basis: 85vw;
    max-width: 85vw;
  }
}
.vgc-btn {
  background: rgba(255,255,255,0.9);
  color: #222;
  font-weight: 900;
  border: 2px solid #ffd700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(80,80,180,0.13);
}
.vgc-btn:hover { background: #ffd700; color: #222; }
.vgc-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.vgc-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
}
.vgc-dots button[aria-selected="true"] { background: #2575fc; }

/* 3D-style carousel variant (FitFlow-like) */
.vg-3d .vgc-viewport {
  height: 520px;
  position: relative;
  perspective: 1000px;
  width: 100%;
}
.vg-3d .vgc-track {
  position: relative;
  height: 100%;
  display: block;
  padding: 0;
}
.vg-3d .vgc-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease, z-index 0.6s;
  will-change: transform, opacity;
  box-sizing: border-box;
}
/* Override generic .card constraints inside carousel */
.vg-3d .vgc-slide.card {
  max-width: none !important;
  width: 420px !important;
}
.vg-3d .vgc-slide[data-index="0"] { transform: translate(-50%, -50%) translateZ(0) scale(1); z-index: 10; opacity: 1; }
.vg-3d .vgc-slide[data-index="1"] { transform: translate(calc(-50% + 130px), -50%) translateZ(-60px) scale(0.85); z-index: 6; opacity: 0.8; }
.vg-3d .vgc-slide[data-index="2"] { transform: translate(calc(-50% - 130px), -50%) translateZ(-60px) scale(0.85); z-index: 6; opacity: 0.8; }
.vg-3d .vgc-slide[data-index="3"] { transform: translate(calc(-50% + 220px), -50%) translateZ(-120px) scale(0.7); z-index: 3; opacity: 0.5; }
.vg-3d .vgc-slide[data-index="4"] { transform: translate(calc(-50% - 220px), -50%) translateZ(-120px) scale(0.7); z-index: 3; opacity: 0.5; }

@media (max-width: 900px) {
  .vg-3d .vgc-slide { width: 90vw; height: 90vw; }
  .vg-3d .vgc-slide.card { width: 90vw !important; max-width: none !important; }
  .vg-3d .vgc-slide[data-index="1"] { transform: translate(calc(-50% + 90px), -50%) translateZ(-40px) scale(0.9); }
  .vg-3d .vgc-slide[data-index="2"] { transform: translate(calc(-50% - 90px), -50%) translateZ(-40px) scale(0.9); }
  .vg-3d .vgc-slide[data-index="3"] { transform: translate(calc(-50% + 160px), -50%) translateZ(-80px) scale(0.75); }
  .vg-3d .vgc-slide[data-index="4"] { transform: translate(calc(-50% - 160px), -50%) translateZ(-80px) scale(0.75); }
}

.vg-3d .vgc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.vg-3d .vgc-prev { left: 8px; }
.vg-3d .vgc-next { right: 8px; }
.vg-3d .vgc-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 20; }

/* Larger emoji icons inside Video Group carousel cards */
.vg-3d .vgc-slide .icon {
  font-size: 5rem;
}

/* Full-width background image and purple overlay for resources section */
.resources-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px 0;
  z-index: 1;
}
.resources-section-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  min-height: 100%;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(106,17,203,0.82) 0%, rgba(37,117,252,0.82) 100%),
    url('cityscape-neon.png') center center/cover no-repeat;
  pointer-events: none;
}

/* Restore original resources-section-bg background and remove overlay */
.resources-section-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  min-height: 100%;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(106,17,203,0.82) 0%, rgba(37,117,252,0.82) 100%),
    url('cityscape-neon.png') center center/cover no-repeat;
  pointer-events: none;
}
/* Remove the .resources-section::before overlay */

.resources-section > *:not(.resources-section-bg) {
  position: relative;
  z-index: 2;
}
.resources-section .resources-title,
.resources-section .resources-intro {
  color: #fff;
}
.resources-section .resource-item {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(80,80,180,0.10);
  padding: 32px 18px 24px 18px;
  margin-bottom: 0;
}
.resources-section .resource-link {
  color: #2575fc;
}
.resources-section .resource-link:hover {
  color: #6a11cb;
} 