@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Funnel+Display:wght@300..800&family=Space+Grotesk:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

*:not(.about) {
    max-width: 100%;
}

*:not(.checkout-layout) {
    max-width: 100%;
}

.about {
    max-width: none !important;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Funnel Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #111729;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    color: black;
}


p {
    font-family: 'Funnel Display', sans-serif;
}

/* Header Styles */
.site-header {
    color: #f2f2f2;
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    width: 100%;
}

/* Ensure header is sticky on desktop */
@media (min-width: 769px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        width: 100%;
    }
}

/* Fix anchor link jumping behind sticky header */
section {
    scroll-margin-top: 150px; /* Header height + small buffer */
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: transparent;
    transition: background 0.3s ease;
    z-index: -1;
}

.site-header.scrolled::before {
    background: rgba(17, 23, 41, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Funnel Display', sans-serif;
    text-decoration: none;
    color: #f2f2f2;
    flex-shrink: 0;
}

.logo img {
    width: 200px;
    height: auto;
    min-width: 60px;
    max-width: 100px;
}

.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: #f2f2f2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: "Funnel Display", sans-serif;
    display: inline-block;
}

.nav-menu li a:hover {
    transform: translateY(-3px) !important;
}

.nav-divider {
    color: #ff44f8;
    font-size: 14px;
    font-weight: 800;
    user-select: none;
}

.contact-btn {
    padding: 10px 25px;
    font-weight: 700 !important;
    color: #f2f2f2;
    border: 3px solid;
    border-image: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255)) 1;
    cursor: poFunnel Display;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Funnel Display', sans-serif;
    font-size: 14px !important;
}

.contact-btn:hover {
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
}

.hero-btn {
    padding: 10px 45px;
    font-weight: 700 !important;
    color: #f2f2f2;
    border: 3px solid;
    border-image: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255)) 1;
    cursor: poFunnel Display;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Funnel Display', sans-serif;
    font-size: 14px !important;
}

.hero-btn:hover {
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
}


/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: poFunnel Display;
    padding: 8px;
}

.nav-toggle span {
    width: 20px;
    height: 3px;
    background: #f2f2f2;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - Split Layout */
.hero {
    padding-top:15rem;
    padding-bottom: 8rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
}

.grid-texture {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: calc(100% + 70px);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask: 
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%),
        linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 15%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.3) 85%, rgba(0,0,0,0) 100%);
    mask-composite: Funnel Displaysect;
    -webkit-mask: 
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%),
        linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 15%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.3) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-composite: source-in;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.hero-content h1 {
    font-size: 56px;
font-weight: 900;
margin-bottom: 10px;
font-family: "Funnel Display", sans-serif;
color: #f2f2f2;
line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    color: #b0bbde;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.security-graphic {
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.security-graphic::before {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.security-graphic::after {
    position: absolute;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)); }
}

/* Section Labels */
.section-label {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0px auto 10px;
    width: fit-content;
    color: rgb(255, 68, 248);
}


/* Stats */
.stats {
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
    overflow-x: hidden;
}

.stats .section-label {
    display: block;
    text-align: center;
    margin: 0 auto 30px auto;
    font-family: "Funnel Display", sans-serif;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:40px;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 70px;
    background: linear-gradient(45deg, rgb(255, 68, 248) 25%,rgb(27, 77, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: "Funnel Display", sans-serif;
}

.stat-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Funnel Display", sans-serif;
    color: #f2f2f2;
}


.stat-item p {
    color: #b0bbde;
}


/* Features Grid Section */
.features-grid {
    position: relative;
    margin-bottom: 8rem;
    width: 100%;
    overflow: visible;
}

.features-header .section-label {
    text-align: left;
    margin: 0 0 15px 0;
    font-family: "Funnel Display", sans-serif;
}

.features-grid-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.features-grid-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #f2f2f2;
    font-family: 'Funnel Display', sans-serif;
}

.features-grid-subtitle {
    font-size: 20px;
    color: #b0bbde;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-row {
    display: grid;
    align-items: center;
}

.features-row:last-child {
    margin-bottom: 0;
}

/* Row 1: Two equal containers */
.features-row-1 {
    grid-template-columns: 1fr 1fr;
}

.features-row-1 .features-content {
    padding:50px
}

/* Row 2: Two equal containers */
.features-row-2 {
    grid-template-columns: 1fr 1fr;
}

.features-row-2 .features-content {
    grid-column: 2;
}

.features-row-2 .features-header {
    grid-column: 1;
}

/* Two-column layout: Header/Content on left, Features on right */
.features-row-2-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.features-right {
    padding-right: 100px;
    width: 100%;
    box-sizing: border-box;
}

.features-left .gradient {
  --size: 550px;

  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

/* Row 3: Three equal sections */
.features-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.features-section {
    border: 1px solid #2d3c6c;
    padding: 40px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow-wrap: break-word;
}

.features-icon {
    display: flex;
    width: 60px;
    height: auto;
    padding-bottom: 20px;
}

.features-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.features-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f2f2f2;
    margin-bottom: 15px;
    font-family: 'Funnel Display', sans-serif;
}

.features-section p {
    font-size: 16px;
    line-height: 24px;
    color: #b0bbde;
    margin: 0;
    font-weight: 300;
}

/* Benefits Section - Same styling as features-row-3 */
.benefits-grid {
    position: relative;
    margin-bottom: 10rem;
    width: 100%;
    overflow-x: hidden;
}

.benefits-grid-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding-bottom: 40px;
}

.benefits-header .section-label {
    color: rgba(255, 68, 248, 1);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.benefits-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #f2f2f2;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Funnel Display', sans-serif;
}

.benefits-header p {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    box-sizing: border-box;
}

.benefits-section {
    border: 1px solid #2d3c6c;
    padding: 40px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow-wrap: break-word;
}

.benefits-icon {
    display: flex;
    width: 60px;
    height: auto;
    padding-bottom: 20px;
}

.benefits-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.benefits-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f2f2f2;
    margin-bottom: 15px;
    font-family: 'Funnel Display', sans-serif;
}

.benefits-section p {
    font-size: 16px;
    line-height: 24px;
    color: #b0bbde;
    margin: 0;
    font-weight: 300;
}


.features-header h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #f2f2f2;
    font-weight: 700;
    line-height: 1.2em;
    font-family: "Funnel Display", sans-serif;
}

.features-header p {
    font-size: 18px;
    line-height: 24px;
    color: #b0bbde;
    font-weight: 300;
}

.features-content p {
    font-size: 18px;
    line-height: 24px;
    color: #b0bbde;
    font-weight: 300;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #b0bbde;
    font-size: 16px;
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #00ffff;
    font-weight: bold;
    font-size: 18px;
}


.image-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
border: 1px solid rgb(30, 41, 59);
}

.image-title-row img {
    width: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.image-title-row h3 {
    font-size: 20px;
    color: #f2f2f2;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    margin-bottom: 8rem;
    overflow-x: hidden;
    background: rgb(21, 28, 50);
padding: 60px;
}

.testimonials-header .section-label {
    text-align: left;
    margin: 0 0 15px 0;
}

.testimonials-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    gap: 40px;
}

.testimonials-left {
    width: 100%;
    box-sizing: border-box;
    padding-right:100px;
    position: relative;
}

.testimonials-left .gradient {
  --size: 550px;

  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.testimonials-right {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 50px;
}

.testimonials-right .gradient {
  --width: 800px;
  --height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--width);
  height: var(--height);
  filter: blur(calc(var(--height) / 3));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.testimonials-right .stats-grid {
    max-width: none;
    margin: 0;
    padding: 50px;
}

.testimonials-right .testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonials-right .testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonials-right .testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonials-right .testimonial-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.testimonials-right .testimonial-text {
    margin-bottom: 30px;
}

.testimonials-right .testimonial-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #b0bbde;
    font-style: italic;
    margin: 0;
}

.testimonials-right .testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonials-right .testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f2f2f2;
    margin: 0 0 4px 0;
    font-family: 'Funnel Display', sans-serif;
}

.testimonials-right .testimonial-author span,
.testimonials-right .testimonial-author p {
    font-size: 14px;
    color: #b0bbde;
    font-family: 'Funnel Display', sans-serif;
    margin: 0;
}

.testimonials-right .testimonial-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 30px;
}

.testimonials-right .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: poFunnel Display;
    transition: background 0.3s ease;
}

.testimonials-right .nav-dot.active {
    background: #ff44f8;
}

.testimonials-right .nav-dot:hover {
    background: #ff44f8;
}

.testimonials-header {
    text-align: left;
}

.testimonials-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #f2f2f2;
    margin-bottom: 16px;
    font-family: "Funnel Display", sans-serif;
}

.testimonials-header p {
    font-size: 18px;
    color: #b0bbde;
    margin: 0 auto;
    font-weight: 300;
    line-height: 24px;
}

.testimonials-section {
    display: inline-block;
    width: calc(33.33% - 20px);
    margin-right: 20px;
    margin-bottom: 30px;
    vertical-align: top;
}

.testimonials-section:last-child {
    margin-right: 0;
}

.testimonials-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f2f2f2;
    margin-bottom: 15px;
    font-family: 'Funnel Display', sans-serif;
}

.testimonials-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #b0bbde;
    margin: 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.testimonial-text {
    margin-bottom: 40px;
}

.testimonial-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #b0bbde;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: flex-start;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f2f2f2;
    margin: 0 0 4px 0;
}

.author-info span {
    font-size: 14px;
    color: #b0bbde;
}

.testimonial-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: poFunnel Display;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #ff44f8;
}

.nav-dot:hover {
    background: #ff44f8;
}

/* Pricing Section - Fixed for Better Screen Fit */
.pricing {
    width: 100%;
    margin-bottom: 10rem;
    padding-top: 30px;
}

.pricing .section-label {
    margin: 0 auto 10px auto;
}

.pricing-header {
    margin-bottom: 120px;
    max-width: 1320px;
    margin: 0 auto 125px auto;
    text-align: center;
}

.pricing-header h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-family: "Funnel Display", sans-serif;
    line-height: 1.2;
    color: #f2f2f2;
    font-weight: 700;
}

.pricing-header p {
    color: #b0bbde;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1320px;
    margin: 50px auto 0;
    position: relative;
}

.pricing-grid .gradient {
  --size: 600px;

  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.pricing-card {
    border: 1px solid #2d3c6c;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.pricing-card.featured {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    color: #f2f2f2;
}

.delivery-text {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f2f2f2;
    color: #111729;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
    z-index: 10;
}


.plan-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2d3c6c;
}

.plan-header .price-container {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 0;
}

.plan-header h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Funnel Display", sans-serif;
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: #f2f2f2;
    margin-bottom: 0;
    font-family: "Funnel Display", sans-serif;
}

.price-period {
    color: #b0bbde;
    font-size: 14px;
    font-family: "Funnel Display", sans-serif;
}

.plan-best-for {
    margin-top: 15px;
}

.plan-best-for h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ff44f8;
    margin-bottom: 8px;
    font-family: "Funnel Display", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-best-for p {
    font-size: 14px;
    color: #b0bbde;
    margin: 0;
    line-height: 1.4;
    font-family: "Funnel Display", sans-serif;
}

.plan-features {
    flex: 1;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #f2f2f2;
    font-size: 16px;
    line-height: 24px;
    font-family: "Funnel Display", sans-serif;
    position: relative;
}

.benefits-check {
    color: #ff44f8 !important;
    -webkit-text-fill-color: #ff44f8 !important;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 1px solid #b0bbde;
    border-radius: 50%;
    cursor: help;
    font-size: 8px;
    color: #b0bbde;
    flex-shrink: 0;
    position: relative;
    margin: auto 0;
}

.tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 12px;
    background: rgb(21, 28, 50) !important;
    background-color: rgb(21, 28, 50) !important;
    color: #f2f2f2 !important;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 300px;
    width: max-content;
    z-index: 1000;
    border: 1px solid #2d3c6c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: tooltip-fade-in 0.2s ease-out;
    font-weight: normal;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
}

.tooltip-icon:hover::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 6px;
    border: 6px solid transparent;
    border-right-color: rgb(21, 28, 50);
    z-index: 1001;
}

/* Ensure tooltips in featured pricing card also use the correct background */
.pricing-card.featured .tooltip-icon:hover::after,
.featured .tooltip-icon:hover::after,
.pricing-card.featured .plan-features .tooltip-icon:hover::after,
.pricing-card.featured .feature .tooltip-icon:hover::after {
    background: rgb(21, 28, 50) !important;
    background-color: rgb(21, 28, 50) !important;
}

.pricing-card.featured .tooltip-icon:hover::before,
.featured .tooltip-icon:hover::before,
.pricing-card.featured .plan-features .tooltip-icon:hover::before,
.pricing-card.featured .feature .tooltip-icon:hover::before {
    border-right-color: rgb(21, 28, 50) !important;
}


@keyframes tooltip-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta {
    margin-bottom: 2rem;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f2f2f2;
    line-height: 1.2;
    font-family: "Funnel Display", sans-serif;
    background: linear-gradient(90deg, rgb(255, 68, 248) 30%, rgb(27, 77, 255) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 20px;
    color: #b0bbde;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Funnel Display", sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff44f8, #1b4dff);
    color: white;
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 248, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #f2f2f2;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Contact Section */
.contact {
    background: #111729;
    padding: 80px 0;
    color: #f2f2f2;
    position: relative;
}

.contact .gradient {
  --size: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-content {
    padding-right: 0;
}

.contact-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-family: "Funnel Display", sans-serif;
    line-height: 1.2;
    color: #f2f2f2;
    font-weight: 700;
}

.contact-content p {
    color: #b0bbde;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    width:500px;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-button {
    padding: 10px 45px;
    font-weight: 700;
    color: #f2f2f2;
    border: 3px solid;
    border-image: linear-gradient(45deg, rgb(255, 68, 248), rgb(27, 77, 255)) 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Funnel Display', sans-serif;
    background: transparent;
    border-radius: 0;
    font-size: 14px;
}

.contact-button:hover {
    background: linear-gradient(45deg, rgb(255, 68, 248), rgb(27, 77, 255));
}

/* Contact Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .contact-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .contact-content h2 {
        font-size: 28px;
    }
}

.feature.highlight {
    color: #fff;
}


.plan-button {
    display: inline-block;
    text-align: center;
    padding: 10px 25px;
    font-weight: 700;
    color: #f2f2f2;
    border: 3px solid;
    border-image: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255)) 1;
    cursor: poFunnel Display;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Funnel Display', sans-serif;
    font-size: 14px;
    background: transparent;
}

.plan-button:hover {
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
}

.featured-button {
    padding: 10px 25px;
    font-weight: 700;
    color: #f2f2f2;
    border: 3px solid;
    border-image: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255)) 1;
    cursor: poFunnel Display;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Funnel Display', sans-serif;
    font-size: 14px;
    background: transparent;
}

.featured-button:hover {
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 5rem;
}

.cta-section .section-label {
    margin: 0 auto 15px auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Funnel Display", sans-serif;
    color: #f2f2f2;
    font-weight: 900;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 20px;
    color: #b0bbde;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.primary-cta {
    padding: 10px 45px;
    font-weight: 700 !important;
    color: #f2f2f2;
    border: 3px solid;
    border-image: linear-gradient(45deg, rgb(0, 255, 255), rgb(255, 0, 255)) 1;
    cursor: poFunnel Display;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Funnel Display', sans-serif;
}

.primary-cta:hover {
    background: linear-gradient(45deg, rgb(0, 255, 255), rgb(255, 0, 255));
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}


/* Logo Slider Section */
.logo-slider {
    background: transparent;
    overflow: hidden;
    margin-bottom: 10rem;
}

.slider-label {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 15px;
    color: #8892b0;
    font-weight: 400;
    text-transform: uppercase;
}

.slider-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    mask: linear-gradient(to right, transparent, black 300px, black calc(100% - 300px), transparent);
    -webkit-mask: linear-gradient(to right, transparent, black 300px, black calc(100% - 300px), transparent);
}

.slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200px * 12); /* 6 logos * 2 (duplicated) * width */
}

.slide {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide img {
    max-width: 120px;
    max-height: 60px;
    transition: all 0.3s ease;
    object-fit: contain;
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6)); /* Move by width of 6 logos */
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .slide {
        flex: 0 0 150px;
    }
    
    .slider-track {
        width: calc(150px * 12);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 6));
        }
    }
    
    .slide img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-slider {
        padding: 40px 0;
        margin-bottom: 5rem;
    }
    
    .slide {
        flex: 0 0 120px;
    }
    
    .slider-track {
        width: calc(120px * 12);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 6));
        }
    }
    
    .slide img {
        max-width: 80px;
        max-height: 40px;
    }
}

/* Stats Section */
.stats-section {
    margin-bottom: 12rem;
}

.stats-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 50px;
    font-weight: 900;
    color: #f2f2f2;
    margin-bottom: 10px;
    font-family: 'Funnel Display', sans-serif;
    background: linear-gradient(90deg,rgba(255, 68, 248, 1) 30%, rgba(27, 77, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f2f2f2;
    margin-bottom: 8px;
    font-family: 'Funnel Display', sans-serif;
}

.stat-item p {
    font-size: 16px;
    color: #b0bbde;
    margin: 0;
    font-family: 'Funnel Display', sans-serif;
    line-height: 1.4;
}


/* Kicker Section */
.kicker {
    margin-bottom: 8rem;
}

.kicker-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.kicker-content {
    text-align: left;
}

.kicker-content .section-label {
    color: rgba(255, 68, 248, 1);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Funnel Display', sans-serif;
}

.kicker-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1.2;
    font-family: 'Funnel Display', sans-serif;
    background: linear-gradient(45deg, rgb(255, 68, 248),rgb(27, 77, 255));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.kicker-content p {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Funnel Display', sans-serif;
}

.kicker-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kicker-action .contact-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}


/* About Section */
.about {
    width: 100vw !important;
    max-width: none !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 8rem;
    background: rgb(21, 28, 50);
    padding:80px;
}

.about-content .section-label {
    text-align: left;
    margin: 0 0 15px 0;
    font-family: "Funnel Display", sans-serif;
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 40px;
    align-items: center;
}


.about-grid {
    grid-column: 1 / 2;
    grid-row: 1;
    padding-right: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.about-grid .gradient {
  --size: 550px;

  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.about-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 20px 0px;
    position: relative;
    z-index: 2;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.about-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.about-content-wrapper h3 {
    font-size: 20px;
    color: #f2f2f2;
    margin: 0;
    font-family: 'Funnel Display', sans-serif;
    font-weight: 600;
}

.about-content-wrapper p {
    color: #b0bbde;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.about-content {
    grid-column: 2 / 3;
    grid-row: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-family: "Funnel Display", sans-serif;
    line-height: 1.2;
    color: #f2f2f2;
    font-weight: 700;
}

.about-content p {
    color: #b0bbde;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
}



/* Responsive Design for Stats */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item h2 {
        font-size: 36px;
    }
    
    .stat-item h3 {
        font-size: 16px;
    }
    
    .stat-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 60px 20px;
        margin-bottom: 4rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-item h2 {
        font-size: 32px;
    }
    
    .stat-item h3 {
        font-size: 15px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
}


/* Responsive Design for Kicker */
@media (max-width: 768px) {
    .kicker-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .kicker-content h2 {
        font-size: 36px;
    }
    
    .kicker-action {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .kicker {
        margin-bottom: 4rem;
        padding: 0 30px;
    }
    
    .kicker-container {
        padding: 40px 0;
        gap: 25px;
    }
    
    .kicker-content h2 {
        font-size: 28px;
    }
    
    .kicker-content p {
        font-size: 16px;
    }
    
    .kicker-action .contact-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}


/* Responsive Design for About */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        grid-column: 1;
        grid-row: 2;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .about-content {
        grid-column: 1;
        grid-row: 1;
    }
    
    .about-item {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
    
    .about-content-wrapper {
        gap: 8px;
    }
    
    .about-icon {
        width: 40px;
        height: 40px;
        justify-content: flex-start;
    }
    
    .about-icon img {
        width: 30px;
        height: 30px;
    }
    
    .about-content-wrapper h3 {
        font-size: 18px;
    }
    
    .about-content-wrapper p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .about-content {
        padding: 50px 20px;
        text-align: left;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 70px 30px;
        margin-bottom: 3rem;
    }
    
    .about-grid {
        padding: 0px;
        gap: 20px;
    }
    
    .about-item {
        padding: 0px;
        gap: 12px;
        flex-direction: column;
        text-align: left;
    }
    
    .about-content-wrapper {
        gap: 6px;
    }
    
    .about-icon {
        width: 35px;
        height: 35px;
        justify-content: flex-start;
    }
    
    .about-icon img {
        width: 50px;
        height: 50px;
    }
    
    .about-content-wrapper h3 {
        font-size: 22px;
    }
    
    .about-content-wrapper p {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .about-content {
        padding: 0px 0px;
        text-align: left;
    }
    
    .about-content h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 18px;
    }
}
        
/* Footer Styles */
.site-footer {
    background: #111729;
    color: #f2f2f2;
    margin-top: auto;
}

.footer-container {
     max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
}

.footer-section h4 {
    color: #f2f2f2;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Funnel Display', sans-serif;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgb(148, 163, 184);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #00ffff;
}

.social-links {
    display: flex;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 20px 10px;
    border-radius: 6px;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    font-size: 14px;
}

.footer-bottom-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
    border-top: 1px solid rgb(51, 65, 85);
}

.footer-bottom p {
    color: rgb(148, 163, 184);
    font-size: 12px;
    margin: 0;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 12px;
    font-weight: 300;
}

.footer-links a {
    color: rgb(148, 163, 184);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

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

.box {   
    position: relative;
    background: white;
}

.box::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    transform: skewX(2deg) skewY(4deg);
    background: linear-gradient(315deg, #00ccff, #0e1538,#d400d4);
}

.box::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    transform: skewX(2deg) skewY(4deg);
    background: linear-gradient(315deg, #00ccff, #0e1538,#d400d4);
    filter: blur(50px);
}

.box span {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background:#111729;
    z-index: 10;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gradient {
  --size: 750px;

  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(90deg,rgba(255, 68, 248, 1) 0%, rgba(27, 77, 255, 1) 100%);
  transform: translate(-50%, -50%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

@media (min-width: 720px) {
  .gradient {
    --size: 700px;
  }
}

/* Responsive Design */
@media (max-width: 1320px) {
    .hero-container,
    .stats-grid,
    .stats-container,
    .benefits,
    .features-grid-container,
    .kicker-container,
    .about-container,
    .pricing,
    .footer-container,
    .footer-bottom-container,
    .header-container {
        max-width: 1320px;
    }
}

@media (max-width: 1200px) {
    .hero-container,
    .stats-grid,
    .stats-container,
    .benefits,
    .features-grid-container,
    .kicker-container,
    .about-container,
    .pricing,
    .footer-container,
    .footer-bottom-container,
    .header-container {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .benefits {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .benefits-section {
        padding: 35px 25px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin: 50px auto 0;
    }
}

@media (max-width: 600px) {
    .benefits {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
        width: 100%;
    }
    
    .benefits-grid-container {
        padding: 0 10px;
        max-width: 100vw;
    }
    
    .benefits-section {
        padding: 25px 15px;
        margin: 0;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .site-header {
        padding: 0 30px;
    }
    
    /* Hide hero image on mobile */
    .hero-visual {
        display: none;
    }
    
    /* Make hero container single column on mobile */
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    /* Section label mobile styling */
    .section-label {
        font-size: 12px;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
        z-index: 99999;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(16, 23, 39, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 99998 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        animation: slideInFromLeft 0.3s ease-out !important;
    }
    
    /* Position hamburger menu in top right when active */
    .nav-toggle.active {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 99999 !important;
        border-radius: 8px !important;
        padding: 12px !important;
        transition: all 0.3s ease !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Hide hamburger lines when active and show X */
    .nav-toggle.active span {
        display: none !important;
    }
    
    .nav-toggle.active::before {
        content: 'X' !important;
        color: #f2f2f2 !important;
        font-size: 18px !important;
        font-weight: bold !important;
        font-family: 'Funnel Display', sans-serif !important;
    }
    
    .nav-toggle.active:hover {
        transform: scale(1.1) !important;
    }

    @keyframes slideInFromLeft {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }
    
    @keyframes slideOutToLeft {
        from { transform: translateX(0); }
        to { transform: translateX(-100%); }
    }
    
    /* Menu closing animation */
    .nav-menu.closing {
        animation: slideOutToLeft 0.3s ease-out !important;
    }
    
    .nav-menu.active li {
        display: block !important;
    }
    
    .nav-menu.active a {
        display: block !important;
        padding: 10px 30px !important;
        margin: 10px 0 !important;
        /* background: rgba(255, 255, 255, 0.1) !important; */
        /* border: 2px solid rgba(255, 255, 255, 0.2) !important; */
        border-radius: 15px !important;
        color: #f2f2f2 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-align: center !important;
        min-width: 180px !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-menu.active .nav-divider {
        display: none !important;
    }

    /* Hero Mobile */
    .hero {
        padding: 80px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        z-index: 10;
        position: relative;
    }
    
    .hero .gradient {
        --size: 400px;
        opacity: 0.2;
    }
    
    .hero-visual {
        text-align: center;
    }
    
    .hero-visual img {
        width: 300px !important;
        height: 300px !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Stats Mobile */
    .stats {
        padding: 40px 15px;
        width: 100%;
        overflow-x: hidden;
        text-align: center;
    }
    
    .stats .section-label {
        text-align: center;
        margin: 0 auto 30px auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    .stat-item {
        text-align: left !important;
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .stat-item h2 {
        font-size: 48px;
        word-break: break-word;
        text-align: left !important;
    }
    
    .stat-item h3 {
        font-size: 18px;
        word-break: break-word;
        text-align: left !important;
    }
    
    .stat-item p {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
        text-align: left !important;
    }

    /* Benefits Mobile */
    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0;
        width: 100%;
    }
    
    .benefits-grid-container {
        padding: 0 15px;
        max-width: 100vw;
    }
    
    .benefits-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .benefits-header h2 {
        font-size: 36px;
    }
    
    .benefits-header p {
        font-size: 16px;
    }
    
    .benefits-section {
        padding: 25px 15px;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    /* Features Mobile */
    
    /* Features Grid Mobile */
    .features-grid {
        padding: 60px 0;
    }
    
    .features-grid-container {
        padding: 0 15px;
        max-width: 100vw;
        overflow: visible;
    }
    
    .features-grid-title {
        font-size: 36px;
    }
    
    .features-grid-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }
    
    .features-row,
    .features-row-1,
    .features-row-2,
    .features-row-2-column,
    .features-row-3 {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
        width: 100%;
    }
    
    .features-row-1 .features-header,
    .features-row-1 .features-content,
    .features-row-2 .features-header,
    .features-row-2 .features-content,
    .features-row-3 .features-header,
    .features-row-3 .features-content,
    .features-left,
    .features-right {
        grid-column: 1;
        width: 100%;
        margin: 0;
        max-width: none;
    }
    
    .features-right {
        padding: 0;
        order: 1 !important;
    }
    
    .features-left {
        padding: 30px 15px;
        text-align: left;
        order: 2 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Features section uses flexbox layout on mobile */
    .features-row-2-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .features-header {
        padding: 30px 15px;
        text-align: left;
        order: 3;
    }
    
    .features-header h2 {
        font-size: 32px;
    }
    
    .features-header p {
        font-size: 16px;
    }
    
    .features-section {
        padding: 25px 15px;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 0px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        max-width: 100vw;
    }
    
    .testimonials-left {
        padding: 30px 15px;
        text-align: left;
        order: 2;
    }
    
    .testimonials-right {
        padding: 30px 15px;
        text-align: left;
        order: 1;
    }
    
    .testimonials-right .stats-grid {
        padding: 20px 0;
    }
    
    /* On mobile, show features-right first, then features-left */
    .features-content {
        order: 3;
        padding: 30px 15px;
    }

    /* Pricing Mobile */
    .pricing-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .pricing-header h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .pricing-header p {
        font-size: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin: 50px auto 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0px 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Hero Mobile Small */
    .hero {
        padding: 150px 20px 30px;
    }
    
    .hero-visual img {
        width: 250px !important;
        height: 250px !important;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    /* Stats Mobile Small */
    .stats {
        padding: 30px 10px;
        width: 100%;
        overflow-x: hidden;
        text-align: center;
    }
    
    .stats .section-label {
        text-align: center;
        margin: 0 auto 25px auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    .stat-item {
        text-align: left !important;
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .stat-item h2 {
        font-size: 40px;
        word-break: break-word;
        text-align: left !important;
    }
    
    .stat-item h3 {
        font-size: 22px;
        word-break: break-word;
        text-align: left !important;
    }
    
    .stat-item p {
        font-size: 18px;
        line-height: 1.3;
        word-break: break-word;
        text-align: left !important;
    }
    
    .pricing-header h2 {
        font-size: 30px;
    }
    
    .pricing-header p {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 40px;
    }
    
    .delivery-text {
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .pricing {
        padding: 30px 30px 0px 30px;
    }

    /* Benefits Mobile Small */
    .benefits-grid-container {
        padding: 0 30px;
        max-width: 100vw;
    }
    
    .benefits-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .benefits-header h2 {
        font-size: 28px;
    }
    
    .benefits-header p {
        font-size: 15px;
    }
    
    .benefits {
        margin: 0;
        gap: 30px;
    }
    
    .benefits-section {
        padding: 40px;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    .benefits-section h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .benefits-section p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Features Grid Mobile Small */
    .features-grid-container {
        padding: 0 30px;
        max-width: 100vw;
        overflow: visible;
    }

    .features-grid {
        margin-bottom: 2rem;
    }
    
    .features-grid-title {
        font-size: 28px;
    }
    
    .features-left {
        padding: 20px 0px;
    }
    
    .features-header {
        padding: 0px 0px;
    }
    
    .features-header h2 {
        font-size: 30px;
    }
    
    .features-header p {
        font-size: 16px;
    }
    
    .features-content {
        padding: 20px 0px;
    }
    
    .features-section {
        padding: 40px;
        margin: 0;
    }
    
    .features-section h3 {
        font-size: 22px;
    }
    
    .features-section p {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Testimonials Mobile Small */
    .testimonials-container {
        padding: 50px 30px;
        gap: 20px;
    }
    
    .testimonials-left {
        padding: 20px 10px;
        order: 2;
    }
    
    .testimonials-right {
        padding: 20px 10px;
        order: 1;
    }
    
    .testimonials-header h2 {
        font-size: 30px;
    }
    
    .testimonials-right .stats-grid {
        padding: 15px 0;
        gap: 70px;
    }
    
    .features-list li {
        font-size: 16px;
    }
    
    /* Alternative approach - hide text and use pseudo-element */
    .feature span.benefits-check,
    .plan-features .feature span.benefits-check,
    span.benefits-check {
        font-size: 0 !important;
        position: relative !important;
        display: inline-block !important;
        width: 16px !important;
        height: 16px !important;
    }
    
    .feature span.benefits-check::before,
    .plan-features .feature span.benefits-check::before,
    span.benefits-check::before {
        content: '✔' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        font-size: 16px !important;
        color: #ff44f8 !important;
        -webkit-text-fill-color: #ff44f8 !important;
        display: block !important;
        line-height: 1 !important;
    }
    
    .features-row,
    .features-row-1,
    .features-row-2,
    .features-row-2-column,
    .features-row-3 {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    /* Override for features-row-2-column to show features-right first */
    .features-row-2-column {
        flex-direction: column !important;
    }
}

/* FORCE TOOLTIP BACKGROUND - FINAL OVERRIDE */
html body .tooltip-icon:hover::after,
html body .pricing-card .tooltip-icon:hover::after,
html body .pricing-card.featured .tooltip-icon:hover::after,
html body .featured .tooltip-icon:hover::after {
    background: rgb(21, 28, 50) !important;
    background-color: rgb(21, 28, 50) !important;
}

html body .tooltip-icon:hover::before,
html body .pricing-card .tooltip-icon:hover::before,
html body .pricing-card.featured .tooltip-icon:hover::before,
html body .featured .tooltip-icon:hover::before {
    border-right-color: rgb(21, 28, 50) !important;
}

/* Fix for transform scale affecting tooltip rendering */
.pricing-card.featured .tooltip-icon:hover::after {
    background: rgb(21, 28, 50) !important;
    background-color: rgb(21, 28, 50) !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    transform: translateY(-50%) scale(0.909) !important; /* Compensate for parent scale(1.1) */
}

.pricing-card.featured .tooltip-icon:hover::before {
    border-right-color: rgb(21, 28, 50) !important;
    opacity: 1 !important;
    z-index: 10000 !important;
    transform: translateY(-50%) scale(0.909) !important; /* Compensate for parent scale(1.1) */
}

/* Disable CSS tooltips for featured pricing card (JavaScript will handle them) */
.pricing-card.featured .tooltip-icon:hover::after,
.pricing-card.featured .tooltip-icon:hover::before {
    display: none !important;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    background: rgb(21, 28, 50);
    margin-top: 150px;
    margin-bottom: 100px;
}

.legal-header {
    padding: 40px 40px 0px;
    text-align: center;
}

.legal-header h1 {
font-size: 2em;
}

.legal-content {
    border-radius: 12px;
    padding: 40px;
}

.legal-content h2 {
    color: #f2f2f2;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid #2d3c6c;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    color: #f2f2f2;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p, .legal-content li {
    color: #b0bbde;
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 10px 0 20px 20px;
}

.effective-date {
    font-style: italic;
    color: #f2f2f2;
}

/* Logo Link Styles */
.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo a:hover {
    text-decoration: none;
}