@font-face {
  font-family: 'PulpDisplay-ExtraBold';
  src: url('../webfonts/webFonts/PulpDisplay-ExtraBold/font.woff2') format('woff2'), url('../webfonts/webFonts/PulpDisplay-ExtraBold/font.woff') format('woff');
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}
#what-it-is {
  scroll-margin: 50px;
}
#benefits {
  scroll-margin: 150px;
}
#pricing {
  scroll-margin: 150px;
}
#contact {
  scroll-margin: 100px;
}

#how-it-works-header {
  scroll-margin: 120px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  /* position: relative; */
  min-height: 100%;
}

body {
  overflow-x:hidden;
}

.page-content-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  overflow: visible;
}

/* Modern Header Styling */
.modern-header {
  position: relative;
  z-index: 1000;
}

.modern-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  width: 100vw;
  left: 0;
  right: 0;
}

.modern-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.modern-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2c3e50 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.modern-brand:hover {
  transform: translateY(-1px);
  color: #3498db !important;
}

.brand-logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.brand-text {
  font-family: 'PulpDisplay-ExtraBold', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.5px;
}

.modern-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.toggler-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-toggler:hover .toggler-line {
  background: #3498db;
}

.modern-nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none !important;
}


.modern-nav-link i {
  font-size: 0.85rem;
  opacity: 0.8;
}

.btn-modern-cta {
  background: linear-gradient(135deg, #32cabb, #2980b9) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}

.btn-modern-cta:hover {
  background: linear-gradient(135deg, #2980b9, #3498db) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  color: white !important;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .modern-navbar {
    padding: 0.5rem 0;
  }
  
  /* Hide burger menu button and navigation menu on mobile */
  .modern-toggler,
  .navbar-toggler {
    display: none !important;
  }
  
  .navbar-collapse,
  #navbarMain {
    display: none !important;
  }
  
  .navbar-nav {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .modern-nav-link {
    margin: 2px 0;
    justify-content: center;
  }
  
  .btn-modern-cta {
    margin-top: 1rem;
    justify-content: center;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
}

/* How It Works Styling - Based on Vue Component */
.page-how-it-works {
    position: relative;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.tyre-track-background {
    position: absolute;
    top: -50px; /* Start slightly above container to account for header overlap */
    left: 0;
    width: 100%;
    height: calc(100% + 100px); /* Extend beyond container height */
    min-height: calc(100vh + 100px);
    z-index: 0;
    pointer-events: none;
    color: rgba(128, 128, 128, 0.07);
    overflow: visible;
    transition: all 0.3s ease;
}

/* Track line styles for better visibility */
.track-line {
    transition: stroke-dasharray 0.5s ease-out,
                opacity 0.5s ease-out;
}

.how-it-works-header {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4a90e2, #2c5282);
    color: white;
    transform: skewY(-2deg);
    margin: -4rem -2rem 2rem -2rem;
    width: calc(100% + 4rem);
    position: relative;
    left: -2rem;
    z-index: 2;
}

.how-it-works-header .container {
    transform: skewY(2deg);
}

.how-it-works-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.how-it-works-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.modular-sections {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: visible;
}

.sections-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    min-height: 884vh;
    overflow: visible;
}

.content-sections .content-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.content-sections .content-section:first-child {
    padding-top: 0;
    min-height: calc(100vh - 8rem);
}

.content-sections .content-section:last-child {
    padding-bottom: 0;
    min-height: calc(100vh - 8rem);
}

.content-sections .content-section.active {
    opacity: 1;
}

.visual-column {
    position: relative;
    height: 884vh;
    width: 600px;
    overflow: visible;
}

.visual-column .column-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-column .visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 10;
    /* JavaScript will handle positioning dynamically */
}

.content-section .section-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #32CABBFF;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section .section-badge i {
    font-size: 1.2rem;
}

.content-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #32CABBFF;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.content-section .section-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.content-section .section-features ul {
    font-size: 1.2rem;
    list-style: none;
    padding: 0;
}

.content-section .section-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #333;
}

.content-section .section-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.visual-column .visual-container {
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.visual-column .image-transition-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: visible;
}

.visual-column .banner-image {
    width: 100%;
    height: 400px;
    object-fit: fill;
    object-position: center;
    background: #f8f9fa;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.visual-column .banner-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.mobile-image-container {
    display: none;
    margin: 2rem auto;
    max-width: 600px;
    animation: fadeIn 0.5s ease-out;
}

.mobile-visual-wrapper {
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.mobile-feature-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: fill;
    object-position: center;
    background: #f8f9fa;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-feature-image:active {
    transform: scale(0.98);
}

.cta-section {
    background: linear-gradient(135deg, #4a90e2, #2c5282);
    color: white;
    padding: 6rem 0 8rem 0;
    transform: skewY(2deg);
    margin: 2rem -2rem -2rem -2rem;
    width: calc(100% + 4rem);
    position: relative;
    left: -2rem;
    z-index: 2;
}

.cta-section .container {
    transform: skewY(-2deg);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 1340px) {
    .sections-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .content-sections {
        padding: 0 1.5rem;
    }

    .content-sections .content-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .content-sections .content-section:first-child {
        padding-top: 2rem;
        min-height: auto;
    }

    .content-sections .section-title {
        font-size: 2rem;
    }

    .visual-column {
        display: none;
    }

    .mobile-image-container {
        display: block;
        margin: 1rem auto;
    }

    .modular-sections {
        padding-bottom: 2rem;
    }

    .how-it-works-header {
        padding: 4rem 0;
        transform: skewY(-1.5deg);
        margin: -3rem -1rem 1rem -1rem;
        width: calc(100% + 2rem);
        left: -1rem;
    }

    .how-it-works-title {
        font-size: 2.5rem;
    }

    .how-it-works-subtitle {
        font-size: 1.1rem;
    }

    .how-it-works-header .container {
        transform: skewY(1.5deg);
    }

    .cta-section {
        padding: 4rem 0 6rem 0;
        transform: skewY(1.5deg);
        margin: 1rem -1rem -3rem -1rem;
        width: calc(100% + 2rem);
        left: -1rem;
    }

    .cta-section .container {
        transform: skewY(-1.5deg);
    }

    .cta-title {
        font-size: 2rem;
    }
}

.header-container {
    display: flex;
    flex-wrap: inherit;
    padding-right: 0;
    padding-left: 0;
}
.splash-text {
  padding-left: 5rem !important;
}
.shake {
  animation: shake 0.5s;
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.footer {
  background: #111424;
  position: relative;
  z-index: 10;
}

/* Social media icons styling */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

/* Mobile responsive adjustments for social icons */
@media (max-width: 767.98px) {
  .social-icon img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}

@media (max-width: 575.98px) {
  .social-icon img {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }
}
.contact {
  background: #1F2233;
  position: relative;
  z-index: 10;
}
.contact-img {
  height: 277px;
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-left: 6rem;
}
.contact-main-text {
  font-family: 'PulpDisplay-ExtraBold';
  color:  #FFFFFF;
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 2.8125rem;
  letter-spacing: -0.01em;
}
.unstyled-button {
  padding: 0;
  border: none;
  background: none;
}
.navigation-item {
  font-family: Palanquin;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.3125rem;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}
.footer-copyright-text {
  font-family: Palanquin;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  padding-right: 3rem;
}
.pricing-card-white {
  background: #FFFFFF;
  border: 0.0625rem solid #E3E3E3;
  box-sizing: border-box;
  box-shadow: 0px 10px 19px rgba(0, 0, 0, 0.04);
  border-radius: 2.5rem;
  height: 480px;
  max-width: 23.125rem;
  min-width: 23.125rem;
  border-radius: 2.5rem;
}
.pricing-card-dark {
  background: #1F2233;
  border: 0.0625rem solid #E3E3E3;
  box-sizing: border-box;
  box-shadow: 0px 10px 19px rgba(0, 0, 0, 0.04);
  border-radius: 2.5rem;
  height: 480px;
  max-width: 23.125rem;
  min-width: 23.125rem;
  border-radius: 2.5rem;
}
.column {
  max-width: 500px;
  padding: 1rem;
}
.border-box {
  margin-left: 26px;
  margin-right: 26px;
  border: 5px dashed #32cabb;
  border-radius: 300px;
}
.card-title {
  font-family: 'PulpDisplay-ExtraBold';
  text-align: center;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: center;
}
.card-title-dark {
  font-family: 'PulpDisplay-ExtraBold';
  text-align: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: center;
}
.large-text {
  font-family: 'PulpDisplay-ExtraBold';
  width: 480px;
  font-weight: 800;
  font-size: 4.0625rem;
  line-height: 4.6rem;
  letter-spacing: -0.03em;
  background: linear-gradient(158.09deg, #177c72 -9.6%, #32cabb 83.68%), #FFFFFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.card-sub-title-dark {
  font-family: 'Palanquin';
  text-align: center;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.card-description-dark {
  font-family: Palanquin;
  padding: 0 3rem;
  text-align: center;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
}
.card-title-dark {
  font-family: 'PulpDisplay-ExtraBold';
  text-align: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: center;
}
.footer-line {
  border-bottom: 0.0625rem solid #FFFFFF;
  margin-top: 40px;
  margin-bottom: 40px;
}
.line {
  width: 80vw;
  border-bottom: 0.0625rem solid #E3E3E3;
}
.card-line {
  border-bottom: 0.0625rem solid #E3E3E3;
}
.image-div {
  height: 6rem;
}
.call-to-discuss-button {
  font-family: 'Palanquin';
  width: 182px;
  height: 4rem;
  background: linear-gradient(158.09deg, #002143 -9.6%, #32cabb 83.68%), #1F2233;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  border-radius: 2.2rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.trial-api-key-button {
  font-family: 'Palanquin';
  width: 270px;
  height: 4rem;
  background: linear-gradient(158.09deg, #002143 -9.6%, #32cabb 83.68%), #1F2233;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  border-radius: 2.2rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.close-example-button {
  font-family: 'Palanquin';
  width: 250px;
  height: 4rem;
  background: linear-gradient(158.09deg, #002143 -9.6%, #32cabb 83.68%), #1F2233;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  border-radius: 2.2rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.call-to-discuss-button-dark {
  font-family: 'Palanquin';
  width: 182px;
  height: 4rem;
  background: linear-gradient(236.48deg, #58FDE8 -15.35%, #068373 146.69%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  border-radius: 2.2rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
.royal-mail {
  width: 310px;
}
.card-description {
  font-family: Palanquin;
  padding: 0 3rem;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
}
.card-description-alt {
  font-family: Palanquin;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
}
.pricing-icon {
  height: 50%;
}
.links-div {
  position: relative;
  top: 0.75rem;
}
.main-slogan-text {
  font-family: 'PulpDisplay-ExtraBold';
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  line-height: 129%;
  letter-spacing: -0.03em;
  color: #000000;
  margin-top: 8rem;
}
.description-text {
  font-family: Palanquin;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.03em;
}
@media (max-width: 991px) {
  .splash-text {
    padding-left: 1rem !important;
  }
  .main-slogan-text {
    margin-top: 1rem;
  }
  .description-text {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: none; 
    }
    .more-round-padding {
      padding-right:12rem;
      padding-top:10rem;
    }
    .px-lg-5 {
        padding-right: 0rem;
        padding-left: 0rem;
    }
    .mx-lg-5 {
        margin-right: 0rem;
        margin-left: 0rem;
    }
    .main-slogan-text {
        padding-top: 15px;
        padding-right: 3em;
    }
    .description-text {
        padding-right: 3.5em;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: none;
    }
    .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .px-lg-5 {
        padding-right: 0rem;
        padding-left: 0rem;
    }
    .mx-lg-5 {
        margin-right: 0rem;
        margin-left: 0rem;
    }
    .left-column {
        border-right: none!important;
        border-top-left-radius: 40px!important;
        border-bottom-left-radius: 40px!important;

        border-right: none!important;
        border-top-right-radius: 0px!important;
        border-bottom-right-radius: 0px!important;
    }
}
.splash {
  position: relative;
  z-index: 10;
}

/* Add margin to hero row specifically */
.splash .row {
  margin-top: 80px !important;
    padding-top: 50px;
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: none;
    }
    .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .px-lg-5 {
        padding-right: 0rem;
        padding-left: 0rem;
    }
    .mx-lg-5 {
        margin-right: 0rem;
        margin-left: 0rem;
    }
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: none;
    }
    .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .px-lg-5 {
        padding-right: 0rem;
        padding-left: 0rem;
    }
    .mx-lg-5 {
        margin-right: 0rem;
        margin-left: 0rem;
    }
}
.menu-link {
    font-family: 'Palanquin';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 33px;
    text-align: center;
    /* min-width: 100px; */
}
.contact-input {
  color: #fff;
  font-family: 'Palanquin';
  background-color: #1F2233;
  min-width: 100% !important;
  padding-right: 0.625rem !important;
  max-width: 41.5625rem;
  font-size: 1.125rem;
  /* line-height: 1.5625rem !important; */
  box-sizing: border-box;
  height: 3.8125rem;
  outline: 0;
  border-width: 0 0 1px;
  border-color: #FFFFFF;
  padding-left: 0 !important;

}
.contact-input:focus {
  border-width: 0 0 1px;
  border-color: #32cabb;
}
.send-message-button {
  font-family: 'Palanquin';
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 40px;
  border: 0;
  width: 232px;
  height: 4.0625rem;
  background: linear-gradient(158.09deg, #002143 -9.6%, #32cabb 83.68%), #1F2233;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  border-radius: 2.1875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.send-message-button:hover {
  transform: translateY(-1px);
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3);
}

.send-message-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.send-message-button.contact-success {
  background: linear-gradient(158.09deg, #28a745 -9.6%, #20c997 83.68%);
  animation: successPulse 0.6s ease-out;
}

.send-message-button.contact-success:hover {
  background: linear-gradient(158.09deg, #28a745 -9.6%, #20c997 83.68%);
  transform: translateY(-1px);
}

/* Error state */
.send-message-button.contact-error {
  background: linear-gradient(158.09deg, #dc3545 -9.6%, #fd7e14 83.68%);
  animation: errorShake 0.5s ease-out;
}

.send-message-button.contact-error:hover {
  background: linear-gradient(158.09deg, #dc3545 -9.6%, #fd7e14 83.68%);
  transform: translateY(-1px);
}

/* Animation keyframes */
@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}


.form-clearing {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.form-cleared {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-label {
  font-family: 'Palanquin';
  font-style: normal;
  font-weight: 400;
  width: 34.25rem;
  font-size: 1.25rem;
  line-height: 2.75rem;
  letter-spacing: 0.09em;
  top: 0.3125rem;
  text-transform: uppercase;
  color: #FFFFFF;
}
.contact-input-message {
  font-family: 'Palanquin';
  color: #fff;
  background-color: #1F2233;
  min-width: 100% !important;
  padding-right: 0.625rem !important;
  max-width: 41.5625rem;
  font-size: 1.125rem;
  line-height: 1.5625rem !important;
  height: 6.8125rem;
  box-sizing: border-box;
  outline: 0;
  border-width: 0 0 1px;
  border-color: #FFFFFF;
  padding-left: 0 !important;
}
.contact-input-message:focus {
  border-width: 0 0 1px;
  border-color: #32cabb;
}
.navbar-light .navbar-nav .nav-link {
    color: #000000;
}
.nav-link {
  color: #000000;
}
.box {
  border: 1px solid black;
  background-color: grey;
  width: 350px;
  height: 250px;
}
.feature-menu-link.header-free-trial {
    min-width: 155px;
    max-width: 155px;
    height: 49px;
    border: 3px solid #1F2233;
    border-radius: 30px;
    text-align: center;
    color: #000000;
}
.feature-menu-link.for-devs-button {
  min-width: 220px;
  max-width: 220px;
  height: 49px;
  border: 3px solid #1F2233;
  border-radius: 30px;
  text-align: center;
  color: #000000;
}

.feature-menu-link .menu-link {
    font-weight: 600;
    padding-top: 4px;
    padding-bottom: 0;
}
.splitter-title {
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  font-size: 24px;
  line-height: 45px;
  letter-spacing: -0.03em;
  color: #000000;
}
.splitter-text {
  font-family: 'Palanquin';
  font-style: normal;
  font-weight: 400;
}
.tabs-div {
  border-right: 1px solid #D9D9D9;
  padding: 10px 0 10px 0;
}
.unique-tabs {
  margin: 16px 16px 16px 65px;
  min-height: 385px;
}
.tabs-div-for-code {
  position: relative;
  height: 720px;
  padding: 10px 0 10px 0;
  border: 1px solid #E3E3E3 !important;
  box-sizing: border-box !important;
  border-top-left-radius: 40px !important;
  border-bottom-left-radius: 40px !important;
}
.tabs-div-for-code-sm {
  position: relative;
  width: 100%;
  padding: 10px 0 0 0;
  border: 1px solid #E3E3E3 !important;
  box-sizing: border-box !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}
.tab-button-code-sm {
  margin-left: 16px;
  text-align: center;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  text-align: left;
  font-size: 1.5rem;
  line-height: 45px;
  letter-spacing: -0.03em;
  height: 90px;
  border-radius: 0;
}
.code-panel {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  line-height: 1.7rem;
  overflow: hidden;
  white-space: normal;
  width: 100%;
  height: 720px;
  background: linear-gradient(0deg, #1F2233, #1F2233), linear-gradient(0deg, #202020, #202020), linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-radius: 0px 40px 40px 0px;
  margin-right: 300px;
}
.code-panel-sm {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  line-height: 1.7rem;
  overflow: hidden;
  white-space: normal;
  height: 720px;
  background: linear-gradient(0deg, #1F2233, #1F2233), linear-gradient(0deg, #202020, #202020), linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-radius: 0px 0px 20px 20px;
}
.line-number {
  color: #5D5D5D;
  border-right: 1px solid #5D5D5D;
  text-align: center;
}
.code-symbol {
  color: white;
}
.code-symbol-green {
  color: lightgreen;
}
.tab-1 {
  padding-left: 1rem;
}
.tab-2 {
  padding-left: 2rem;
}
.tab-3 {
  padding-left: 3rem;
}
.tab-4 {
  padding-left: 4rem;
}
.code-property {
  color: #002143;
}
.code-value {
  color: #32cabb;
}
.tab-button {
  text-align: center;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  text-align: left;
  font-size: 1.5rem;
  line-height: 45px;
  letter-spacing: -0.03em;
  height: 90px;
  border-radius: 0;
  width: 300px;
}
.tab-button-code {
  margin-left: 16px;
  text-align: center;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  text-align: left;
  font-size: 1.5rem;
  line-height: 45px;
  letter-spacing: -0.03em;
  height: 90px;
  border-radius: 0;
  width: 300px;
}
.splitter-title-dark {
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  font-size: 24px;
  line-height: 45px;
  letter-spacing: -0.03em;
  color: white;
}
.card-dark {
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-radius: 0.5rem;
  background: #1F2233;
}
.card-light {
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-radius: 0.5rem;
  background: #F9F9F9;
}
.dark-description {
  color: white;
  font-family: 'Palanquin';
}
.light-description {
  color: #000000;
  font-family: 'Palanquin';
}
.language-img {
  position: absolute;
  bottom: 0;
}
.tabs-div.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  border-radius: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: #002143;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  text-align: left;
  font-size: 1.5rem;
  line-height: 45px;
  letter-spacing: -0.03em;
  background-color: #FFFFFF;
  border-right: 3px solid #002143;
}
.tabs-div-for-code .nav-link.active, .nav-pills .show>.nav-link {
  border: 0;
  color: black;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  text-align: left;
  font-size: 1.5rem;
  line-height: 45px;
  letter-spacing: -0.03em;
  background-color: #FFFFFF;
  border-right: 5px solid #002143;
  border-radius: 0;
  border-bottom: 1px solid #E3E3E3;
}
.tabs-div-for-code-sm .nav-link.active, .nav-pills .show>.nav-link {
  border: 0;
  color: black;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  text-align: left;
  font-size: 1.5rem;
  line-height: 45px;
  letter-spacing: -0.03em;
  background-color: #FFFFFF;
  border-bottom: 5px solid #002143;
  border-radius: 0;
}
/* Landing Section */
.ellipse {
  height: 4.6875rem;
  width: 13.75rem;
  border: 0.25rem dashed #32cabb;
  border-radius: 50%;
  padding-block: 0.625rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile responsive adjustments for ellipse and splash buttons */
@media (max-width: 767.98px) {
  .main-slogan-text {
    font-size: 28px;
    line-height: 1.2;
  }
  
  /* Adjust splash row margin for mobile navbar */
  .splash .row {
    margin-top: 40px !important;
      padding-left: 10px;
      padding-right: 10px;
  }
  
  /* Center splash buttons on mobile */
  .splash .row.d-flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .integrate-now-button {
    width: 200px;
    font-size: 20px;
    margin: 0 auto;
  }
  
  .how-does-it-work-button {
    width: 200px;
    font-size: 20px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .ellipse {
    width: auto;
    min-width: 8rem;
    height: auto;
    min-height: 3rem;
    padding: 0.5rem 1rem;
    font-size: 0.9em;
  }
  .main-slogan-text {
    font-size: 24px;
    line-height: 1.15;
  }
  
  /* Smaller splash buttons for small screens */
  .integrate-now-button {
    width: 180px;
    font-size: 18px;
    line-height: 50px;
  }
  
  .how-does-it-work-button {
    width: 180px;
    font-size: 18px;
    line-height: 50px;
  }
}

@media (max-width: 480px) {
  .ellipse {
    width: auto;
    min-width: 7rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.85em;
  }
  .main-slogan-text {
    font-size: 22px;
    line-height: 1.1;
  }
  
  /* Extra small splash buttons */
  .integrate-now-button {
    width: 160px;
    font-size: 16px;
    line-height: 45px;
  }
  
  .how-does-it-work-button {
    width: 160px;
    font-size: 16px;
    line-height: 45px;
  }
}
.left-column {
  background-color: #FFFFFF;
  border-top: 1px solid #E3E3E3;
  border-left: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-right: 1px solid #E3E3E3;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.right-column {
  border-top: 1px solid #E3E3E3;
  border-right: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  height: 800px;
  background: linear-gradient(158.09deg, #002143 -9.6%, #32cabb 83.68%), radial-gradient(46.22% 46.78% at 74.2% 57.61%, rgba(226, 77, 159, 0.378) 0%, rgba(244, 120, 92, 0.07) 100%);
}
.integrate-now-button {
  box-sizing: border-box !important;
  border-radius: 35px !important;
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(236.48deg, #58FDE8 -15.35%, #068373 146.69%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  width: 220px;
  line-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group-text {
  height: 108px;
}
.input-group {
  padding: 0;
}
.input-group-text.postcode-input-button {
  background: linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  border-color: #E3E3E3;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  border-radius: 300px;
  height: 108px;
}
.input-group-text.postcode-input-icon {
  background: linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  border-color: #E3E3E3;
  border-style: solid;
  border-width: 1px 0 1px 1px;
  border-radius: 300px;
  height: 108px;
}
.postcode-input {
  font-family: 'PulpDisplay-ExtraBold';
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 30px;
  width: 975px;
  height: 108px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  box-sizing: border-box;
  border: 1px solid #E3E3E3;
  border-right: none;
  border-left: none;
  border-radius: 300px;
}
.results-input {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 25px;
  width: 552px;
  height: 61px;
  background: linear-gradient(0deg, #f8f8f8, #f8f8f8),
    linear-gradient(
      269.84deg,
      rgba(226, 77, 159, 0.1) -2.26%,
      rgba(244, 120, 92, 0.037) 52.87%
    );
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  border-radius: 40px;
}
.results-input-short {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 25px;
  width: 250px;
  margin-right: 50px;
  height: 61px;
  background: linear-gradient(0deg, #f8f8f8, #f8f8f8),
    linear-gradient(
      269.84deg,
      rgba(226, 77, 159, 0.1) -2.26%,
      rgba(244, 120, 92, 0.037) 52.87%
    );
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  border-radius: 40px;
}
.input-label-address-results {
  font-family: 'Palanquin';
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #000000;
}
.postcode-select {
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 40px;
  font-size: 30px;
  width: 975px;
  height: 108px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-radius: 300px;
}
.input-div {
  width: 975px;
}
.try-it-button {
  /* box-sizing: border-box !important; */
  border-radius: 35px !important;
  font-size: 22px;
  font-weight: 600;
  /* padding-left: 16px; */
  background: linear-gradient(236.48deg, #58FDE8 -15.35%, #068373 146.69%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  line-height: 55px;
  width: 150px;
}
.how-does-it-work-button {
  border: 3px solid #1F2233 !important;
  box-sizing: border-box !important;
  border-radius: 35px !important;
  font-size: 22px;
  font-weight: 600;
  width: 227px;
  line-height:55px;
}
.mobile {
  position: relative;
  height: 700px;
  right: 250px;
  margin-top:50px
}
.free-trial-button {
  width: 70px;
}
.paper-plane-line {
  position: relative;
  width: 200px;
  right: 282px;
  top: -680px;
}
.paper-plane {
  position: relative;
  width: 45px;
  right: 515px;
  top: -700px;
}
.primary-colour {
  color: #E24D9F;
}
.try-it-text {
  font-family: 'PulpDisplay-ExtraBold';
  padding-top: 10px;
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}
.main-title {
  text-align: center;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
  padding: 1.5rem;
}
.main-title-dark {
  color: #fff;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
}
.main-title-light {
  color: #000000;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 2.5rem;
  letter-spacing: -0.01em;
}
#feature {
  width: 350px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'PulpDisplay-ExtraBold';
  max-width: 650px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.feature-subtitle {
  color: #E24D9F;
  font-family: 'PulpDisplay-ExtraBold';
  max-width: 650px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.description {
  font-family: Palanquin;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
}
.feature-icon {
  height: 100px;
}
.card-sub-title {
  font-family: 'Palanquin';
  text-align: center;
  font-weight: 400;
  font-size: 1.9375rem;
  line-height: 2.8rem;
  text-align: center;
  letter-spacing: -0.01em;
}
.try-it-text {
  font-family: 'PulpDisplay-ExtraBold';
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 2.8125rem;
}

.feature-link {
    width: 194px !important;
    height: 49px;
    border: 3px solid #1F2233;
    border-radius: 30px;
    text-align: center;
}

.feature-link .link {
  font-family: 'Palanquin';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
  text-decoration: none;
}
.title {
  font-family: 'PulpDisplay-ExtraBold';
  position: relative;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 2.8rem;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000000;
}
.input-pin {
  width: 100%;
}
.sub-title {
  text-align: center;
  font-family: 'PulpDisplay-ExtraBold';
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: -0.03em;
  background: linear-gradient(119.47deg, #002143 -21.36%, #32cabb 108.65%), #000000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.invalid-feedback {
  margin-left: 5px;
  color: #ff606e;
}
.error {
  background-color: #ff606e;
  color: white;
  width: 220px;
}
.success {
  background-color: #21BA45;
  color: white;
  width: 220px;
}
/* input {
  margin-inline-start: 50px;
} */
.call-us-button {
  font-family: 'Palanquin';
  font-style: normal;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.5rem;
  border: 0;
  height: 4rem;
  background: linear-gradient(236.48deg, #58fde8 -15.35%, #068373 146.69%),
    #1f2233;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.21);
  border-radius: 2.2rem;
  width: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-or-text {
  color: white;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.h1-custom {
    color: #32cabb;
    font-family: PulpDisplay-ExtraBold;
    font-weight: 400;
    font-size: 3rem;
    letter-spacing: normal;
    line-height: 3.125rem;
}
.w-3rem {
    width: 3rem;
}

.code-panel-dev {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  line-height: 1.7rem;
  overflow: hidden;
  white-space: normal;
  width: 100%;
  background: linear-gradient(0deg, #1F2233, #1F2233), linear-gradient(0deg, #202020, #202020), linear-gradient(0deg, #F8F8F8, #F8F8F8), linear-gradient(269.84deg, rgba(226, 77, 159, 0.1) -2.26%, rgba(244, 120, 92, 0.037) 52.87%);
  border: 1px solid #E3E3E3;
}
.mt-7 {
    margin-top:7rem;
}
.section-link-sm a {
    font-size: 1rem;
    text-decoration: none;
    line-height:1.15rem;
}

.circle-sm {
    width: 2.1rem;
    height: 2.1rem;
    line-height:1.75rem;
    border-radius:50%;
}
.circle-sm img {
    height: 2.5rem;
}
.bg-psl {
    background-color: #47e0d1 !important;
}
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.semi-bold {
    font-weight: 600 !important;
}

.fs-13 {
    font-size:1.3rem !important;
    line-height:2.5rem !important;

}

.try-it-control-row {
    height:75px;
}

.price-terms {
    height:10rem;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}

    blockquote:before {
        color: #ccc;
        content: open-quote;
        font-size: 4em;
        line-height: 0.1em;
        margin-right: 0.25em;
        vertical-align: -0.4em;
    }

    blockquote p {
        display: inline;
    }

/* Video Modal Styles - Apple-style */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.video-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.9);
}

.video-modal-title {
    margin: 0;
    font-family: 'PulpDisplay-ExtraBold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.video-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.video-modal-body {
    padding: 32px;
    background: rgba(255, 255, 255, 0.95);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.video-placeholder-content {
    text-align: center;
    color: #6c757d;
}

.video-placeholder-icon {
    opacity: 0.5;
    margin-bottom: 16px;
}

.video-placeholder-text {
    font-family: 'PulpDisplay-ExtraBold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #495057;
}

.video-placeholder-subtext {
    font-family: 'Palanquin', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    margin: 0;
    opacity: 0.7;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-modal {
        padding: 8px;
        align-items: center;
        justify-content: center;
    }
    
    .video-modal-content {
        border-radius: 20px;
        max-height: 95vh;
        width: calc(100% - 16px);
        margin: 0;
        max-width: 95vw;
    }
    
    .video-modal-header {
        padding: 20px 24px 16px 24px;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .video-modal-title {
        font-size: 1.1rem;
    }
    
    .video-modal-body {
        padding: 0 24px 32px 24px;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .video-placeholder {
        min-height: 200px;
        border-radius: 12px;
    }
    
    .video-placeholder-icon {
        width: 48px;
        height: 48px;
    }
    
    .video-placeholder-text {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .video-placeholder-subtext {
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
    .video-modal {
        padding: 4px;
        align-items: center;
        justify-content: center;
    }
    
    .video-modal-content {
        border-radius: 16px;
        max-height: 92vh;
        width: calc(100% - 8px);
        margin: 0;
        max-width: 98vw;
    }
    
    .video-modal-header {
        padding: 16px 20px 12px 20px;
    }
    
    .video-modal-title {
        font-size: 1rem;
    }
    
    .video-modal-close {
        padding: 6px;
    }
    
    .video-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .video-modal-body {
        padding: 0 16px 24px 16px;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .video-placeholder {
        min-height: 180px;
        border-radius: 10px;
    }
    
    .video-placeholder-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .video-placeholder-text {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .video-placeholder-subtext {
        font-size: 0.85rem;
    }
}