@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700;900&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --brand-cyan: #00C9F3;
  --brand-yellow: #FFD81A;
  --brand-pink: #F6179D;
  --brand-black: #1D1D1B;
  --bg-off-white: #FAF9F7;
  --bg-cream: #f5f4ee;
  --border-gray: #DFDDDD;
  --text-primary: #1D1D1B;
  --text-secondary: #090909;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  /* Update to modern font stack */
  color: var(--text-primary);
  background-color: var(--bg-off-white);
  /* Slightly softer background */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.condensed {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

.text-pink {
  color: var(--brand-pink);
}

.text-cyan {
  color: var(--brand-cyan);
}

.bg-cream {
  background-color: var(--bg-cream);
}

.bg-gray {
  background-color: var(--bg-off-white);
}

.center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background-color: var(--brand-pink);
  color: white;
  padding: 12px 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 6px;
  /* slightly more rounded corners */
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* smoother transition */
  text-align: center;
  box-shadow: 0 4px 15px rgba(246, 23, 157, 0.3);
  /* Add glow effect */
}

.btn-primary:hover {
  background-color: #e5068a;
  transform: translateY(-2px);
  /* Lift effect */
  box-shadow: 0 6px 20px rgba(246, 23, 157, 0.4);
}

.btn-primary.large {
  font-size: 24px;
  font-weight: 900;
  padding: 15px 40px;
}

/* Header & Nav */
.main-header {
  background-color: white;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--brand-pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .help-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-black);
  line-height: 1.1;
}

.contact-info .number {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--brand-black);
  line-height: 1.1;
}

.header-divider {
  width: 2px;
  height: 45px;
  background-color: var(--brand-black);
}

.quote-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-action .quote-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.quote-action .instant {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-black);
  line-height: 1.1;
  text-transform: uppercase;
}

.quote-action .quote {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--brand-black);
  line-height: 1.1;
  text-transform: uppercase;
}

.btn-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--brand-pink);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(246, 23, 157, 0.3);
}

.btn-icon-circle img {
  width: 30px;
  height: 30px;
}

.btn-icon-circle:hover {
  background-color: #e5068a;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(246, 23, 157, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-menu {
  display: none;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border-top: 1px solid var(--border-gray);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-contact {
  padding: 15px 20px;
  background: var(--bg-cream);
}

/* Usps Strip */
.usp-bar {
  background-color: var(--brand-yellow);
  padding: 40px 0;
}

.usp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.usp-item {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.usp-item .stars {
  display: flex;
  gap: 2px;
}

.usp-item .stars img {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 27, 0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 96px;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  /* softer shadow */
}

.promo-box {
  display: inline-block;
  border: 4px solid var(--brand-pink);
  padding: 15px 30px;
  font-size: 40px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  margin-top: 20px;
}

.how-it-works {
  display: block;
  margin-top: 25px;
  color: white;
  text-decoration: underline;
  font-size: 18px;
}

.how-it-works.dark {
  color: var(--text-primary);
}

/* Core Sections */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

/* Intro */
.intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.intro-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.intro-image:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

.intro-image:hover img {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button img {
  width: 36px;
  height: 36px;
  margin-left: 6px;
  /* Adjust for play triangle */
  filter: brightness(0) invert(1);
}

.intro-image:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(246, 23, 157, 0.9);
  border-color: var(--brand-pink);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.15) !important;
}

.intro-text {
  text-align: left;
}

.intro-preheader {
  color: var(--brand-pink);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.intro-text h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.intro-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.7;
}

/* Products Grid */
.section-desc {
  max-width: 800px;
  font-size: 18px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--border-gray);
  border-radius: 8px;
  /* rounder corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* soft shadow */
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 18px;
  font-weight: 900;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 15px;
  color: #444;
}

/* Trusted Logos */
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.trusted-logos img {
  height: 60px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trusted-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--brand-yellow);
  text-align: center;
  padding: 100px 20px;
}

.cta-banner h2 {
  font-size: 96px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.cta-banner p {
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testi-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* more pronounced shadow */
  border-radius: 12px;
  /* rounder corners */
  transition: transform 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  /* lift on hover */
}

.testi-card .stars {
  color: #fbbc04;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testi-card p {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 25px;
}

.testi-card .author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 18px;
}

.testi-card .company {
  font-size: 16px;
}

/* FAQ */
.faq-header {
  margin-bottom: 40px;
}

.faq-header p {
  font-size: 18px;
  max-width: 600px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
}

.faq-question .icon {
  font-size: 24px;
  color: var(--brand-cyan);
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* Footer */
.main-footer {
  background-color: var(--brand-black);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.brand-col .address {
  color: #ccc;
  line-height: 1.8;
}

.links-col h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.links-col ul {
  list-style: none;
}

.links-col li {
  margin-bottom: 12px;
}

.links-col a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.links-col a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #888;
}

.footer-legal a {
  color: #888;
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }

  .cta-banner h2 {
    font-size: 64px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .desktop-nav,
  .contact-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 42px;
  }

  .promo-box {
    font-size: 24px;
    padding: 10px 20px;
  }

  .usp-container {
    flex-direction: column;
    text-align: center;
  }

  .usp-item {
    justify-content: center;
    width: 100%;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
  }

  .usp-item:last-child {
    border-bottom: none;
  }

  .intro-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}