
/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #333;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fd9644;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.navbar ul li {
    margin: 0 1rem;
}

.navbar ul li a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #fd9644;
}

.navbar .btn {
    background-color: #fd9644;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.navbar .btn:hover {
    background-color: #e86c10;
}

/* Homepage dark/glassy navbar variant to better match neo sections */
.navbar.neo {
  /* Semi-transparent dark gradient to harmonize with neo sections */
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(17,24,39,0.92) 35%, rgba(31,41,55,0.92) 100%);
  color: #f9fafb;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
}
.navbar.neo .logo { color: #f9fafb; }
.navbar.neo .navbar-nav .nav-link { color: #e5e7eb; }
.navbar.neo .navbar-nav .nav-link:hover { color: #ffffff; }
.navbar.neo .btn { background-color: #e67e22; color: #fff; }
.navbar.neo .btn:hover { background-color: #d35400; }
.navbar.neo .navbar-toggler { border-color: rgba(255,255,255,0.35); color: #fff; }
/* Ensure toggler icon is visible on dark bg */
.navbar.neo .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Dark glass dropdown to match navbar */
.navbar.neo .dropdown-menu {
  background: rgba(17,24,39,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}
.navbar.neo .dropdown-menu .dropdown-item { color: #e5e7eb; }
.navbar.neo .dropdown-menu .dropdown-item:hover { background: rgba(255,255,255,0.06); color: #ffffff; }



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    animation: slideInLeft 1.5s ease-out;
}


.hero-content h1 span {
    color: #fd9644;
    background: linear-gradient(135deg, #fcb045, #fd9644);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



@keyframes rotateText {
    0% {
        transform: rotate(0deg);
        color: #fd9644; /* fallback for older browsers */
        background: linear-gradient(135deg, #f8dcb4, #fd9644);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;  }
    25% {
        background: linear-gradient(135deg, #ffd3a1, #fda54d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 150%; 
    }
    50% {
        transform: rotate(180deg);
        background: linear-gradient(135deg, #fdeb71, #fd9644);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 180%;
    }
    75% {
        background: linear-gradient(135deg, #a8a19b, #b35508);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 200%;
    }
    100% {
        transform: rotate(360deg);
        background: linear-gradient(135deg, #10ca7d, #fd9644);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}



.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInRight 1.5s ease-out;
}

.hero-content .btn {
    background-color: #fd9644;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    animation: fadeInUp 2s ease-in-out;
}

.hero-content .btn:hover {
    background-color: #e86c10;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
}



.features {
    padding: 6rem 2rem;
    background-color: #fff;
    text-align: center;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}
/* Neo-styled Features section to match other sections (e.g., Deliverability Test) */
.features.neo { position: relative; background: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%); }
.features.neo .feature-grid { position: relative; z-index: 1; }
.features.neo h2, .features.neo .subtitle { color: #e5e7eb; }
.features.neo .feature-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.features.neo .feature-item:hover { border-color: rgba(255,255,255,0.18); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
/* Ensure feature item text is readable on dark background */
.features.neo .feature-item { color: #f3f4f6; }
.features.neo .feature-item h3 { color: #ffffff; }
.features.neo .feature-item p { color: #e5e7eb; }
.features.neo .learn-more { color: #e5e7eb; }
.features.neo .learn-more:hover { color: #ffffff; }

/* Also make text white on gradient-styled features section */
.features.features-gradient .feature-item h3 { color: #ffffff; }
.features.features-gradient .feature-item p { color: #ffffff; }
.features.features-gradient .learn-more { color: #f3f4f6; }
.features.features-gradient .learn-more:hover { color: #ffffff; }
/* Match card background/hover to recent features style */
.features.features-gradient .feature-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.features.features-gradient .feature-item:hover { border-color: rgba(255,255,255,0.18); box-shadow: 0 16px 36px rgba(0,0,0,.45); }

/* Floating orbs for Features section */
.ft-orb { position: absolute; filter: blur(22px); border-radius: 50%; opacity: .35; animation: ft-float 12s ease-in-out infinite; pointer-events: none; z-index: 0; }
/* .ft-orb.orb-a { width: 220px; height: 220px; background: #3b82f6; top: -40px; right: -40px; } */
.ft-orb.orb-b { width: 160px; height: 160px; background: #f97316; bottom: -50px; left: 12%; animation-delay: 2s; }
.ft-orb.orb-c { width: 140px; height: 140px; background: #10b981; top: 30%; left: -60px; animation-delay: 4s; }
@keyframes ft-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

.features h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.features .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(100%);
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

.learn-more {
    color: #fd9644;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.learn-more:hover {
    color: #e86c10;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Responsive */
@media (min-width: 768px) {
    .features h2 {
        font-size: 3rem;
    }
    .features .subtitle {
        font-size: 1.5rem;
    }
}


/* CTA Section */
.cta {
    background: linear-gradient(135deg, #fcb045, #fd9644);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn {
    background-color: #fff;
    color: #fd9644;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta .btn:hover {
    background-color: #e86c10;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #555;
    color: #fff;
    padding: 2rem;
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .footer-section {
    flex: 1 1 200px;
    margin: 1rem;
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer p,
.footer a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #fff;
}

.socials {
    display: flex;
    margin-top: 1rem;
}

.socials a {
    color: #ccc;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #fd9644;
}

/* Responsive */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .navbar ul li {
        margin: 0 1.5rem;
    }
}

        /* Testimonial Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    position: relative;
}

.testimonials h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #fd9644;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.testimonials .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.testimonial-card {
    background-color: #f9fafc;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    flex: 0 0 300px;
    padding: 2rem;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 100px;
}

.testimonial-content::before {
    content: '“';
    font-size: 3rem;
    color: #fd9644;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-content::after {
    content: '”';
    font-size: 3rem;
    color: #fd9644;
    position: absolute;
    bottom: -20px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

/* .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #fd9644;
} */

.testimonial-author img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px #f8f7f6, 0 0 30px #f57a15;
    animation: glow-border 1.5s infinite alternate;
}

@keyframes glow-border {
    0% {
        box-shadow: 0 0 0px #eceae9, 0 0 20px #f57a15;
    }
    100% {
        box-shadow: 0 0 10px #eceae9, 0 0 30px #f57a15;
    }
}


.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #333;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
}

@media (min-width: 768px) {
    .testimonial-slider {
        overflow: visible;
        flex-wrap: wrap;
        justify-content: center;
    }
    .testimonial-card {
        flex: 0 0 calc(33.333% - 2rem);
        margin-bottom: 2rem;
    }
}

/* Features Section Enhancement */
.features {
    padding: 6rem 2rem;
    background-color: #fff;
    text-align: center;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.features h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #fd9644;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.features .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-item {
    background-color: #f9fafc;
    border-radius: 16px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(100%);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.pricing h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #fd9644;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.pricing .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid #fd9644;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card .price .period {
    font-size: 1rem;
    color: #777;
}

.pricing-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    text-align: left;
}

.pricing-card ul li i {
    color: #fd9644;
    margin-right: 0.5rem;
}

.pricing-card ul li i.fa-times {
    color: #ccc;
}

.pricing-card .btn {
    background-color: #fd9644;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #e86c10;
}

.pricing-card .most-popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fd9644;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .feature-grid,
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
}



/* Ratings (before Pricing) */
.ratings {
  background: #ffffff;
  padding: 4rem 1rem;
}
.ratings-intro .ratings-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 150, 68, .12);
  color: #fd9644;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.ratings h3 { margin: 0; }

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 992px) {
  .ratings-grid { grid-template-columns: 1fr; }
}

.rating-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.score {
  --bg: #e7eaf0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    conic-gradient(var(--ring, #fd9644) calc(var(--val, 0) * 1%), var(--bg) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent 60%, #000 61%);
  mask: radial-gradient(farthest-side, transparent 60%, #000 61%);
  display: grid;
  place-items: center;
  transition: background 0.8s ease;
}
.score span {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
}

.rating-item .label h5 {
  margin: 0 0 4px 0;
  font-weight: 700;
  color: #000;
}
.rating-item .label small {
  color: #6b7280;
}



.dropdown-cta__title {
    font-family: 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.15;
    margin: 0;
    font-size: clamp(2rem, 1.2rem + 2.2vw, 3.25rem);
    background: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
    .dropdown-cta__title { font-size: 3rem; }
}
















:root {
  --faq-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --faq-card: rgba(255, 255, 255, 0.06);
  --faq-ring: rgba(230, 126, 34, 0.35);
  --faq-gradient: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--faq-bg);
  z-index: 1;
  padding-bottom: 12px;
}

.skewed { transform: skewY(-3deg); }
.unskew { transform: skewY(3deg); }

.faq-orb {
  position: absolute;
  filter: blur(20px);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
  opacity: 0.35;
}
.orb1 { width: 220px; height: 220px; background: #3b82f6; top: -40px; right: -40px; }
.orb2 { width: 180px; height: 180px; background: #f97316; bottom: -60px; left: 10%; animation-delay: 2s; }
.orb3 { width: 140px; height: 140px; background: #10b981; top: 30%; left: -60px; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.03); }
}

.faq-title {
  font-weight: 800;
  font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--faq-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-index { position: sticky; top: 80px; }
.faq-index a {
  display: block; padding: 8px 0; color: #e5e7eb; text-decoration: none;
}
.faq-index a:hover { color: #ffffff; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid .faq-card:nth-child(odd) { transform: translateY(6px); }
  .faq-grid .faq-card:nth-child(even) { transform: translateY(-6px); }
}
@media (min-width: 1200px) {
  .faq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.faq-card {
  position: relative;
  background: var(--faq-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 16px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  border-color: var(--faq-ring);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #f9fafb;
  font-weight: 600;
  font-size: 1.05rem;
  border: 0;
  padding: 6px 4px 10px;
  text-align: left;
  position: relative;
}
.q-label {
  flex: 0 0 36px;
  height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px;
  background: rgba(230, 126, 34, 0.18);
  color: #f59e0b; font-weight: 700;
}

.chevron {
  margin-left: auto;
  width: 18px; height: 18px;
  border-right: 2px solid #f9fafb;
  border-bottom: 2px solid #f9fafb;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}
.faq-question[aria-expanded="true"] .chevron { transform: rotate(135deg); }

.faq-answer {
  color: #e5e7eb;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin-top: 8px; padding-top: 10px;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 300ms ease, transform 300ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }








:root {
  --t-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --t-card: rgba(255, 255, 255, 0.07);
  --t-ring: rgba(230, 126, 34, 0.45);
  --t-gradient: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
}

/* Section wrapper */
.testimonials.neo {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--t-bg);
  color: #f9fafb;
}

/* Floating orbs */
.t-orb { position: absolute; filter: blur(20px); border-radius: 50%; opacity: .35; animation: float 10s ease-in-out infinite; }
.orb-a { width: 220px; height: 220px; background:#3b82f6; top:-40px; right:-40px; }
.orb-b { width: 160px; height: 160px; background:#f97316; bottom:-50px; left:10%; animation-delay: 2s; }
.orb-c { width: 140px; height: 140px; background:#10b981; top: 30%; left:-60px; animation-delay: 4s; }
@keyframes float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Vertical sticky title */
.t-side { min-height: 100%; }
.t-sticky { position: sticky; top: 90px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.t-tag { background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; padding:6px 10px; border-radius:9999px; }
.t-vertical {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-weight: 800; letter-spacing: .6px;
  background: var(--t-gradient); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  font-size: clamp(1.2rem, .8rem + 2vw, 2rem);
}

/* Slider */
.t-slider { position: relative; }
.t-viewport { overflow: hidden; }
.t-track { display: flex; gap: 22px; transition: transform 420ms ease; will-change: transform; }

/* Card */
.t-card {
  position: relative;
  min-width: clamp(280px, 68vw, 420px);
  min-height: clamp(280px, 60vh, 420px);
  background: var(--t-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.t-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 17px;
  background: linear-gradient(135deg, rgba(230,126,34,.28), rgba(255,255,255,0) 40%, rgba(59,130,246,.28));
  z-index: -1; opacity: .6; pointer-events: none;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.45); border-color: var(--t-ring); }

.t-quote { position: relative; z-index: 1; font-size: 2.625rem; line-height: 1.6; }
.t-quote::before {
  content:"“"; position:absolute; left:8px; top:14px; font-size:2rem; line-height:1; color:#e67e22; opacity:.35; z-index:-1;
}

.t-author { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.t-author img {
  border-radius: 50%; border: 2px solid #fd9644; box-shadow: 0 0 0 3px rgba(253,150,68,.18);
  animation: glow-border 2.8s ease-in-out infinite;
}
@keyframes glow-border {
  0%,100% { box-shadow: 0 0 0 3px rgba(253,150,68,.18); }
  50% { box-shadow: 0 0 0 6px rgba(253,150,68,.10); }
}
.t-author h4 { margin: 0; font-weight: 700; }
.t-author small { color: #e5e7eb; }

/* Controls */
.t-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 9999px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 150ms ease, transform 150ms ease;
}
.t-prev { left: -12px; z-index: 3;} .t-next { right: -12px; }
.t-nav:hover { background: rgba(255,255,255,.12); transform: translateY(-50%) scale(1.05); }

/* Dots */
.t-dots { display:flex; gap:8px; justify-content:center; margin-top: 12px; }
.t-dots button {
  width: 8px; height: 8px; border-radius:9999px; border:0; background: rgba(255,255,255,.35);
}
.t-dots button.is-active { background:#fd9644; }

/* Reveal on scroll (reuse) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 300ms ease, transform 300ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 767.98px) {
  .t-prev { left: 4px; } .t-next { right: 4px; }
}


:root{
  --p-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --p-card: rgba(255,255,255,0.07);
  --p-ring: rgba(230,126,34,0.5);
  --p-grad: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
}

/* Pricing neo */
.pricing.neo {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--p-bg);
  color: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
}
.pricing.neo .p-orb { position:absolute; filter: blur(24px); border-radius:50%; opacity:.35; animation: p-float 12s ease-in-out infinite; }
.pricing.neo .orb-1{ width:240px; height:240px; background:#3b82f6; top:-50px; right:-50px; }
.pricing.neo .orb-2{ width:180px; height:180px; background:#f97316; bottom:-60px; left:12%; animation-delay:2s; }
.pricing.neo .orb-3{ width:140px; height:140px; background:#10b981; top:30%; left:-60px; animation-delay:4s; }
@keyframes p-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-18px) scale(1.03)} }

.p-header .p-kicker{
  display:inline-block; padding:6px 12px; border-radius:9999px;
  background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; margin-bottom:10px;
}
.p-header .p-title{
  margin:0 0 6px; font-weight:800; font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--p-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

.p-grid{
  display:grid;
  gap:22px;
  grid-template-columns: 1fr;
}
@media(min-width:768px){ .p-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media(min-width:768px){
  .p-grid .p-card:nth-child(1){ transform: translateY(8px); }
  .p-grid .p-card:nth-child(3){ transform: translateY(14px); }
}

.p-card{
  position: relative;
  background: var(--p-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
}
/* .p-card::before{
  content:""; position:absolute; inset:-1px; border-radius:17px;
  background: conic-gradient(from 0deg, rgba(230,126,34,.4), rgba(59,130,246,.35), rgba(255,255,255,0) 70%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding:1px; z-index:0; animation: p-border 6s linear infinite;
} */
/* @keyframes p-border { to { transform: rotate(1turn); } } */

.p-card:hover{
  transform: translateY(-6px) rotateX(2deg);
  border-color: var(--p-ring);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.p-name{ margin:0 0 6px; font-weight:700; letter-spacing:.3px; }
.p-price{
  font-size: clamp(2rem, 1.1rem + 2.2vw, 3.2rem);
  font-weight: 800; line-height: 1;
  background: var(--p-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  margin-bottom: 8px;
}
.p-desc{ color:#e5e7eb; margin-bottom: 10px; }

.p-features{ list-style:none; padding:0; margin:0 0 14px; }
.p-features li{
  display:flex; align-items:center; gap:10px; padding:6px 0; border-bottom: 1px dashed rgba(255,255,255,.12);
}
.p-features li:last-child{ border-bottom:0; }
.p-features .fa-check{ color:#10b981; }
.p-features .fa-times{ color:#9ca3af; }

.pricing.neo .btn.btn-p{
  background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:700;
  padding:10px 16px; border-radius:10px;
  box-shadow: 0 6px 16px rgba(230,126,34,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.pricing.neo .btn.btn-p:hover{
  background:#d35400; border-color:#d35400; transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(211,84,0,.4);
}

/* Popular card emphasis */
.p-card.popular{
  z-index: 2;
  border-color: var(--p-ring);
  transform: translateY(-12px) scale(1.02);
}
.p-card.popular .p-price{ text-shadow: 0 6px 24px rgba(230,126,34,.18); }
.p-card.popular .most-popular{
  position:absolute; top:12px; right:12px;
  background: #111827; color:#f59e0b; border:1px solid rgba(245,158,11,.4);
  padding:6px 10px; border-radius:9999px; font-size:.8rem; font-weight:700;
}

/* Reveal on scroll */
.p-card.reveal{ opacity:0; transform: translateY(18px); }
.p-card.reveal.is-visible{ opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }



/* Ensure decorative layers never block clicks */
.pricing.neo .p-orb { pointer-events: none; z-index: 0; }
.p-card::before { pointer-events: none; }

/* Ensure content sits above orbs */
.pricing.neo .p-grid { position: relative; z-index: 1; }

/* Make buttons always clickable above effects */
.p-card .btn.btn-p { position: relative; z-index: 2; }

/* Optional: create a local stacking context for cards */
.p-card { isolation: isolate; }

.p-addon{
  margin-top: 26px;
  background: var(--p-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.p-addon__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.p-addon__badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:9999px;
  background: rgba(230,126,34,.18);
  color:#f59e0b;
  font-size:.78rem;
  font-weight:700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.p-addon__title{
  margin:0 0 6px;
  font-weight: 800;
}

.p-addon__desc{
  margin:0;
  color:#e5e7eb;
  max-width: 760px;
}

.pricing.neo .btn.btn-p.p-addon__cta{
  white-space: nowrap;
  align-self: center;
}

.p-addon__meter{
  border-top: 1px dashed rgba(255,255,255,.14);
  padding-top: 14px;
}

.p-addon__meter-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}

.p-addon__credits{
  font-size: 1.7rem;
  font-weight: 800;
}

.p-addon__price{
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--p-grad);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.p-addon__track-wrap{
  position: relative;
  padding-top: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

.p-addon__track{
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 35%, #f59e0b 68%, #e67e22 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.p-addon__thumb{
  position:absolute;
  left: 14.285%;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(59,130,246,.8);
  transform: translateX(-50%);
  transition: left .18s ease;
  pointer-events: none;
}

.p-addon__thumb i{
  font-size: 9px;
  color: #f59e0b;
  line-height: 1;
}

.p-addon__ticks{
  position: relative;
  height: 24px;
  margin-top: 10px;
  font-size: .86rem;
  color:#d1d5db;
}

.p-addon__tick{
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  text-align:center;
  font: inherit;
  cursor: pointer;
  transition: color .16s ease, transform .16s ease;
  white-space: nowrap;
}

.p-addon__tick:hover{
  color: #f9fafb;
  transform: translateX(-50%) translateY(-1px);
}

.p-addon__tick.is-active{
  color: #f59e0b;
  font-weight: 800;
}

.p-addon__price-points{
  position: relative;
  height: 20px;
  margin-top: 6px;
}

.p-addon__price-point{
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  text-align:center;
  white-space: nowrap;
  font-size: .78rem;
  color:#9ca3af;
  transition: color .16s ease, transform .16s ease;
}

.p-addon__price-point.is-active{
  color:#f9fafb;
  font-weight:700;
  transform: translateX(-50%) translateY(-1px);
}

.p-addon.reveal{ opacity:0; transform: translateY(18px); }
.p-addon.reveal.is-visible{ opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }

@media (max-width: 767.98px){
  .p-addon__head{
    flex-direction: column;
  }
  .pricing.neo .btn.btn-p.p-addon__cta{
    align-self: flex-start;
  }
  .p-addon__credits,
  .p-addon__price{
    font-size: 1.3rem;
  }
  .p-addon__ticks{
    font-size: .76rem;
    height: 20px;
  }
  .p-addon__price-points{ height: 16px; }
  .p-addon__price-point{
    font-size: .7rem;
  }
}






/* start of sequence section */


:root{
  --ms-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --ms-card: rgba(255,255,255,0.07);
  --ms-ring: rgba(230,126,34,0.45);
  --ms-grad: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
}

/* Section wrapper */
.feature-ms.neo {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--ms-bg);
  color: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%);
}

/* Orbs behind content (non-blocking) */
.feature-ms.neo .ms-orb { position:absolute; filter: blur(22px); border-radius:50%; opacity:.35; animation: ms-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.feature-ms.neo .orb-a { width:220px; height:220px; background:#3b82f6; top:-40px; right:-40px; }
.feature-ms.neo .orb-b { width:160px; height:160px; background:#f97316; bottom:-50px; left:12%; animation-delay:2s; }
.feature-ms.neo .orb-c { width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes ms-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Sticky vertical label */
.ms-side { min-height: 100%; }
.ms-sticky { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ms-tag { background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; padding:6px 10px; border-radius:9999px; }
.ms-vertical {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-weight: 800; letter-spacing: .6px;
  background: var(--ms-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  font-size: clamp(1.2rem, .8rem + 2vw, 2rem);
}

/* Header */
.ms-header { margin-bottom: 18px; }
.ms-title {
  margin:0; font-weight:800; font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--ms-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Canvas & path */
.ms-canvas { position: relative; min-height: 380px; margin: 8px 0 16px; z-index:1; }
.ms-path { position:absolute; inset:0; }
.ms-path .dash { stroke-dasharray: 12 10; animation: ms-dash 6s linear infinite; opacity:.9; }
@keyframes ms-dash { to { stroke-dashoffset: 220; } }

/* Cards along path (off-grid placement) */
.ms-card {
  position: absolute;
  max-width: 280px;
  background: var(--ms-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  isolation: isolate;
}
.ms-card:hover { transform: translateY(-4px); border-color: var(--ms-ring); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
.ms-card .ms-step {
  display:inline-flex; align-items:center; justify-content:center;
  height: 28px; min-width: 72px; padding: 0 10px;
  border-radius:9999px; background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; font-size:.85rem; margin-bottom:8px;
}
.ms-card h4 { margin: 0 0 6px; font-weight:700; }
.ms-card p { margin: 0; color:#e5e7eb; }

/* Non-conventional placements */
.ms-card.step1 { top: 8%; left: 4%; }
.ms-card.step2 { top: 46%; left: 22%; }
.ms-card.step3 { top: 18%; left: 56%; }
.ms-card.step4 { top: 62%; left: 74%; }

/* Reveal on scroll */
.ms-card.reveal { opacity:0; transform: translateY(18px); }
.ms-card.reveal.is-visible { opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }

/* CTA */
.btn.btn-ms{
  background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:700;
  padding:10px 16px; border-radius:10px; box-shadow: 0 6px 16px rgba(230,126,34,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative; z-index: 2;
}
.btn.btn-ms:hover{ background:#d35400; border-color:#d35400; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(211,84,0,.4); }

/* Mobile fallback: stack cards */
@media (max-width: 767.98px) {
  .ms-canvas { min-height: unset; }
  .ms-path { display:none; }
  .ms-card { position: relative; max-width: none; margin-bottom: 12px; }
  .ms-card.step1, .ms-card.step2, .ms-card.step3, .ms-card.step4 { top: auto; left: auto; }
}

/* end of sequence section */






/* start of warmup section */

:root{
  --wu-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --wu-card: rgba(255,255,255,0.07);
  --wu-ring: rgba(230,126,34,0.45);
  --wu-grad: linear-gradient(135deg, #3b82f6 0%, #10b981 40%, #f59e0b 70%, #e67e22 100%);
}

/* Section wrapper */
.feature-wu.neo {
  position: relative; overflow: hidden; padding: 96px 0;
  background: var(--wu-bg); color: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%);
}

/* Orbs behind content (non-blocking) */
.feature-wu.neo .wu-orb { position:absolute; filter: blur(22px); border-radius:50%; opacity:.35; animation: wu-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.feature-wu.neo .orb-a { width:220px; height:220px; background:#3b82f6; top:-40px; right:-40px; }
.feature-wu.neo .orb-b { width:160px; height:160px; background:#f59e0b; bottom:-50px; left:12%; animation-delay:2s; }
.feature-wu.neo .orb-c { width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes wu-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Sticky vertical label */
.wu-side { min-height: 100%; }
.wu-sticky { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.wu-tag { background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; padding:6px 10px; border-radius:9999px; }
.wu-vertical {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-weight: 800; letter-spacing: .6px;
  background: var(--wu-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  font-size: clamp(1.2rem, .8rem + 2vw, 2rem);
}

/* Header */
.wu-header { margin-bottom: 18px; }
.wu-title {
  margin:0; font-weight:800; font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--wu-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Canvas & wave */
.wu-canvas { position: relative; min-height: 360px; margin: 8px 0 16px; z-index:1; }
.wu-wave { position:absolute; inset:0; }
.wu-wave .dash { stroke-dasharray: 14 12; animation: wu-dash 7s linear infinite; opacity:.9; }
@keyframes wu-dash { to { stroke-dashoffset: 260; } }

/* Pulsing nodes (non-conventional markers) */
.wu-node { position:absolute; width:16px; height:16px; border-radius:50%; background:#e67e22; box-shadow: 0 0 0 0 rgba(230,126,34,.35); animation: wu-pulse 2.4s infinite; }
@keyframes wu-pulse { 0%{box-shadow:0 0 0 0 rgba(230,126,34,.35)} 70%{box-shadow:0 0 0 12px rgba(230,126,34,0)} 100%{box-shadow:0 0 0 0 rgba(230,126,34,0)} }
.wu-node.n1 { top: 64%; left: 14%; }
.wu-node.n2 { top: 42%; left: 38%; animation-delay: .2s; }
.wu-node.n3 { top: 28%; left: 62%; animation-delay: .4s; }
.wu-node.n4 { top: 56%; left: 82%; animation-delay: .6s; }

/* Cards along wave (off-grid placement) */
.wu-card {
  position: absolute;
  max-width: 280px;
  background: var(--wu-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  isolation: isolate;
}
.wu-card:hover { transform: translateY(-4px); border-color: var(--wu-ring); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
.wu-card .wu-step {
  display:inline-flex; align-items:center; justify-content:center;
  height: 28px; min-width: 72px; padding: 0 10px;
  border-radius:9999px; background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; font-size:.85rem; margin-bottom:8px;
}
.wu-card h4 { margin: 0 0 6px; font-weight:700; }
.wu-card p { margin: 0; color:#e5e7eb; }

/* Non-conventional placements */
.wu-card.step1 { top: 64%; left: 6%; }
.wu-card.step2 { top: 30%; left: 30%; }
.wu-card.step3 { top: 16%; left: 56%; }
.wu-card.step4 { top: 60%; left: 74%; }

/* Metrics chips */
.wu-metrics { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.wu-chip {
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px;
  border-radius:9999px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
}
.wu-chip .dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
.wu-chip .dot.d1 { background:#3b82f6; } .wu-chip .dot.d2 { background:#10b981; } .wu-chip .dot.d3 { background:#f59e0b; }

/* CTA */
.btn.btn-wu{
  background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:700;
  padding:10px 16px; border-radius:10px; box-shadow: 0 6px 16px rgba(230,126,34,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative; z-index: 2;
}
.btn.btn-wu:hover{ background:#d35400; border-color:#d35400; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(211,84,0,.4); }

/* Reveal on scroll */
.wu-card.reveal { opacity:0; transform: translateY(18px); }
.wu-card.reveal.is-visible { opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }

/* Safety: decorative layers never block clicks */
.feature-wu.neo .wu-orb { pointer-events: none; z-index: 0; }
.feature-wu.neo .wu-canvas { position: relative; z-index: 1; }
.wu-card::before { pointer-events: none; }
.wu-card, .btn.btn-wu { position: relative; z-index: 2; }

/* Mobile fallback: stack cards */
@media (max-width: 767.98px) {
  .wu-canvas { min-height: unset; }
  .wu-wave { display:none; }
  .wu-node { display:none; }
  .wu-card { position: relative; max-width: none; margin-bottom: 12px; }
  .wu-card.step1, .wu-card.step2, .wu-card.step3, .wu-card.step4 { top: auto; left: auto; }
}


/* end of warmup section */


/* start of validate section */



:root{
  --vl-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --vl-card: rgba(255,255,255,0.07);
  --vl-ring: rgba(230,126,34,0.45);
  --vl-grad: linear-gradient(135deg, #3b82f6 0%, #10b981 40%, #f59e0b 70%, #e67e22 100%);
}

/* Section wrapper */
.feature-vl.neo {
  position: relative; overflow: hidden; padding: 96px 0;
  background: var(--vl-bg); color: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%);
}

/* Orbs behind content (non-blocking) */
.feature-vl.neo .vl-orb { position:absolute; filter: blur(22px); border-radius:50%; opacity:.35; animation: vl-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.feature-vl.neo .orb-a { width:220px; height:220px; background:#3b82f6; top:-40px; right:-40px; }
.feature-vl.neo .orb-b { width:160px; height:160px; background:#f59e0b; bottom:-50px; left:12%; animation-delay:2s; }
.feature-vl.neo .orb-c { width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes vl-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Sticky vertical label */
.vl-side { min-height: 100%; }
.vl-sticky { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.vl-tag { background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; padding:6px 10px; border-radius:9999px; }
.vl-vertical {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-weight: 800; letter-spacing: .6px;
  background: var(--vl-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  font-size: clamp(1.2rem, .8rem + 2vw, 2rem);
}

/* Header */
.vl-header { margin-bottom: 18px; }
.vl-title {
  margin:0; font-weight:800; font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--vl-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Canvas & radial network */
.vl-canvas { position: relative; min-height: 380px; margin: 8px 0 16px; z-index:1; }
.vl-net { position:absolute; inset:0; }
.vl-net .dash { stroke-dasharray: 14 12; animation: vl-dash 7s linear infinite; opacity:.9; }
@keyframes vl-dash { to { stroke-dashoffset: 260; } }

/* Pulsing nodes */
.vl-node { position:absolute; width:16px; height:16px; border-radius:50%; background:#e67e22; box-shadow: 0 0 0 0 rgba(230,126,34,.35); animation: vl-pulse 2.4s infinite; }
@keyframes vl-pulse { 0%{box-shadow:0 0 0 0 rgba(230,126,34,.35)} 70%{box-shadow:0 0 0 12px rgba(230,126,34,0)} 100%{box-shadow:0 0 0 0 rgba(230,126,34,0)} }
/* positions relative to canvas */
.vl-node.n1 { top: 48%; left: 66%; }
.vl-node.n2 { top: 24%; left: 52%; animation-delay:.2s; }
.vl-node.n3 { top: 64%; left: 40%; animation-delay:.4s; }
.vl-node.n4 { top: 28%; left: 30%; animation-delay:.6s; }
.vl-node.n5 { top: 50%; left: 22%; animation-delay:.8s; }

/* Cards along network (off-grid placement) */
.vl-card {
  position: absolute;
  max-width: 280px;
  background: var(--vl-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  isolation: isolate;
}
.vl-card:hover { transform: translateY(-4px); border-color: var(--vl-ring); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
.vl-card .vl-step {
  display:inline-flex; align-items:center; justify-content:center;
  height: 28px; min-width: 72px; padding: 0 10px;
  border-radius:9999px; background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; font-size:.85rem; margin-bottom:8px;
}
.vl-card h4 { margin: 0 0 6px; font-weight:700; }
.vl-card p { margin: 0; color:#e5e7eb; }

/* Non-conventional placements */
.vl-card.step1 { top: 16%; left: 20%; }
.vl-card.step2 { top: 60%; left: 32%; }
.vl-card.step3 { top: 22%; left: 56%; }
.vl-card.step4 { top: 64%; left: 74%; }

/* Metrics chips */
.vl-metrics { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.vl-chip {
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px;
  border-radius:9999px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
}
.vl-chip .dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
.vl-chip .dot.d1 { background:#10b981; } .vl-chip .dot.d2 { background:#ef4444; } .vl-chip .dot.d3 { background:#f59e0b; }

/* CTA */
.btn.btn-vl{
  background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:700;
  padding:10px 16px; border-radius:10px; box-shadow: 0 6px 16px rgba(230,126,34,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative; z-index: 2;
}
.btn.btn-vl:hover{ background:#d35400; border-color:#d35400; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(211,84,0,.4); }

/* Reveal on scroll */
.vl-card.reveal { opacity:0; transform: translateY(18px); }
.vl-card.reveal.is-visible { opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }

/* Safety: decorative layers never block clicks */
.feature-vl.neo .vl-orb { pointer-events: none; z-index: 0; }
.feature-vl.neo .vl-canvas { position: relative; z-index: 1; }
.vl-card::before { pointer-events: none; }
.vl-card, .btn.btn-vl { position: relative; z-index: 2; }

/* Mobile fallback: stack cards */
@media (max-width: 767.98px) {
  .vl-canvas { min-height: unset; }
  .vl-net { display:none; }
  .vl-node { display:none; }
  .vl-card { position: relative; max-width: none; margin-bottom: 12px; }
  .vl-card.step1, .vl-card.step2, .vl-card.step3, .vl-card.step4 { top: auto; left: auto; }
}



/* end of validate section */




/* start of deliverability test section */


:root{
  --dt-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --dt-card: rgba(255,255,255,0.07);
  --dt-ring: rgba(230,126,34,0.45);
  --dt-grad: linear-gradient(135deg, #3b82f6 0%, #10b981 40%, #f59e0b 70%, #e67e22 100%);
}

/* Section wrapper */
.feature-dt.neo {
  position: relative; overflow: hidden; padding: 96px 0;
  background: var(--dt-bg); color: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%);
}

/* Orbs behind content (non-blocking) */
.feature-dt.neo .dt-orb { position:absolute; filter: blur(22px); border-radius:50%; opacity:.35; animation: dt-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.feature-dt.neo .orb-a { width:220px; height:220px; background:#3b82f6; top:-40px; right:-40px; }
.feature-dt.neo .orb-b { width:160px; height:160px; background:#f59e0b; bottom:-50px; left:12%; animation-delay:2s; }
.feature-dt.neo .orb-c { width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes dt-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Sticky vertical label */
.dt-side { min-height: 100%; }
.dt-sticky { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dt-tag { background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; padding:6px 10px; border-radius:9999px; }
.dt-vertical {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-weight: 800; letter-spacing: .6px;
  background: var(--dt-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  font-size: clamp(1.2rem, .8rem + 2vw, 2rem);
}

/* Header */
.dt-header { margin-bottom: 18px; }
.dt-title {
  margin:0; font-weight:800; font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--dt-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}

/* Canvas & radar */
.dt-canvas { position: relative; min-height: 400px; margin: 8px 0 16px; z-index:1; }
.dt-radar { position:absolute; inset:0; }
.dt-radar .dash { stroke-dasharray: 14 12; animation: dt-dash 7s linear infinite; opacity:.9; }
@keyframes dt-dash { to { stroke-dashoffset: 260; } }
.dt-radar .sweep { stroke-dasharray: 60 340; animation: dt-sweep 3.8s linear infinite; }
@keyframes dt-sweep { to { stroke-dashoffset: 400; } }

/* Pulsing seed nodes */
.dt-node { position:absolute; width:16px; height:16px; border-radius:50%; background:#e67e22; box-shadow: 0 0 0 0 rgba(230,126,34,.35); animation: dt-pulse 2.4s infinite; }
@keyframes dt-pulse { 0%{box-shadow:0 0 0 0 rgba(230,126,34,.35)} 70%{box-shadow:0 0 0 12px rgba(230,126,34,0)} 100%{box-shadow:0 0 0 0 rgba(230,126,34,0)} }
/* positions relative to canvas center (approx) */
.dt-node.n1 { top: 26%; left: 50%; }
.dt-node.n2 { top: 58%; left: 32%; animation-delay:.2s; }
.dt-node.n3 { top: 62%; left: 66%; animation-delay:.4s; }
.dt-node.n4 { top: 38%; left: 24%; animation-delay:.6s; }

/* Cards along radar (off-grid placement) */
.dt-card {
  position: absolute;
  max-width: 280px;
  background: var(--dt-card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  isolation: isolate;
}
.dt-card:hover { transform: translateY(-4px); border-color: var(--dt-ring); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
.dt-card .dt-step {
  display:inline-flex; align-items:center; justify-content:center;
  height: 28px; min-width: 72px; padding: 0 10px;
  border-radius:9999px; background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; font-size:.85rem; margin-bottom:8px;
}
.dt-card h4 { margin: 0 0 6px; font-weight:700; }
.dt-card p { margin: 0; color:#e5e7eb; }

/* Non-conventional placements */
.dt-card.step1 { top: 14%; left: 18%; }
.dt-card.step2 { top: 64%; left: 30%; }
.dt-card.step3 { top: 20%; left: 54%; }
.dt-card.step4 { top: 66%; left: 74%; }

/* Metrics chips */
.dt-metrics { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.dt-chip {
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px;
  border-radius:9999px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
}
.dt-chip .dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
.dt-chip .dot.d1 { background:#3b82f6; } .dt-chip .dot.d2 { background:#10b981; } .dt-chip .dot.d3 { background:#f59e0b; }

/* CTA */
.btn.btn-dt{
  background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:700;
  padding:10px 16px; border-radius:10px; box-shadow: 0 6px 16px rgba(230,126,34,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative; z-index: 2;
}
.btn.btn-dt:hover{ background:#d35400; border-color:#d35400; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(211,84,0,.4); }

/* Reveal on scroll */
.dt-card.reveal { opacity:0; transform: translateY(18px); }
.dt-card.reveal.is-visible { opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }

/* Safety: decorative layers never block clicks */
.feature-dt.neo .dt-orb { pointer-events: none; z-index: 0; }
.feature-dt.neo .dt-canvas { position: relative; z-index: 1; }
.dt-card::before { pointer-events: none; }
.dt-card, .btn.btn-dt { position: relative; z-index: 2; }

/* Mobile fallback: stack cards */
@media (max-width: 767.98px) {
  .dt-canvas { min-height: unset; }
  .dt-radar { display:none; }
  .dt-node { display:none; }
  .dt-card { position: relative; max-width: none; margin-bottom: 12px; }
  .dt-card.step1, .dt-card.step2, .dt-card.step3, .dt-card.step4 { top: auto; left: auto; }
}

/* end of deliverability test section */

/* start of feature section */


/* Gradient background only for the Features section with .features-gradient */
.features.features-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  color: #f9fafb; /* ensure contrast on dark bg */
}

/* keep existing spacing */
.features.features-gradient {
  padding-top: inherit;
  padding-bottom: inherit;
}

/* optional: keep headings readable on dark bg */
.features.features-gradient h2,
.features.features-gradient .subtitle { color: #f9fafb; }

/* end of feature section */


/* start of cta section */

:root{
  --cta-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --cta-grad: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
}

/* CTA neo */
.cta.neo {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--cta-bg);
  color: #f9fafb;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%);
}
.cta.neo.skewed { transform: skewY(-3deg); }
.cta.neo .unskew { transform: skewY(3deg); }

/* Orbs behind content */
.cta.neo .cta-orb { position:absolute; filter: blur(24px); border-radius:50%; opacity:.35; animation: cta-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.cta.neo .orb-a{ width:240px; height:240px; background:#3b82f6; top:-60px; right:-60px; }
.cta.neo .orb-b{ width:180px; height:180px; background:#f97316; bottom:-60px; left:12%; animation-delay:2s; }
.cta.neo .orb-c{ width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes cta-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Marquee */
.cta.neo .cta-marquee { position:absolute; inset:auto 0 0 0; height:48px; opacity:.15; pointer-events:none; z-index:0; }
.cta.neo .cta-marquee .track { display:flex; gap:40px; white-space:nowrap; animation: cta-marq 18s linear infinite; }
.cta.neo .cta-marquee span { font-weight:700; letter-spacing:.6px; background: var(--cta-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
@keyframes cta-marq { to { transform: translateX(-50%); } }

/* Content */
.cta.neo .cta-badge{
  display:inline-block; padding:6px 12px; border-radius:9999px;
  background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; margin-bottom:10px;
}
.cta.neo h2{
  margin:0 0 6px; font-weight:800; font-size: clamp(2rem, 1.2rem + 2.2vw, 3rem);
  background: var(--cta-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.cta.neo p{ color:#e5e7eb; }

/* Button with glossy sweep */
.cta.neo .btn.btn-cta{
  background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:800;
  padding:12px 18px; border-radius:12px;
  box-shadow: 0 8px 20px rgba(230,126,34,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative; z-index: 2; overflow:hidden;
}
.cta.neo .btn.btn-cta::after{
  content:""; position:absolute; top:0; left:-30%; width:30%; height:100%;
  background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.4), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: cta-sweep 2.4s ease-in-out infinite;
}
@keyframes cta-sweep { 0%{left:-30%} 60%{left:120%} 100%{left:120%} }
.cta.neo .btn.btn-cta:hover{ background:#d35400; border-color:#d35400; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(211,84,0,.4); }
.cta.neo .cta-note{ display:block; margin-top:6px; color:#e5e7eb; }

/* Chips */
.cta.neo .cta-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.cta.neo .chip{
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:9999px;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:#fff;
}
.cta.neo .chip i{ color:#f59e0b; }

/* Ensure decorations never block clicks */
.cta.neo .cta-orb, .cta.neo .cta-marquee { pointer-events: none; }
.cta.neo .cta-actions { position: relative; z-index: 2; }

@media (max-width: 767.98px) {
  .cta.neo.skewed { transform:none; }
  .cta.neo .unskew { transform:none; }
}


/* end of cta section */


/* Mate angled .neo sections: invert the next section’s top edge */
.neo { --slant: 6vw; }
.neo.invert-top {
  /* Previously used an angled top edge. Replaced with curly dividers instead. */
  clip-path: none;
  margin-top: 0;
}

/* Pricing uses a 5vw slant; set its variable so the next section matches */
.pricing.neo { --slant: 5vw; }

/* Curved cut divider (homepage): a filled wavy cutout at the bottom of every main section */
body > section {
  position: relative;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

body > section .section-cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  pointer-events: none;
  z-index: 10;
  background: var(--section-cut-fill, #f8f9fa);
  background-repeat: no-repeat;
  background-size: var(--section-cut-bg-size, auto);
  background-position: var(--section-cut-bg-pos, 0 0);
  filter: drop-shadow(0 -10px 18px rgba(0,0,0,.35));

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 90' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C180,95 360,5 540,45 S900,105 1200,40 L1200,90 L0,90 Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 90' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C180,95 360,5 540,45 S900,105 1200,40 L1200,90 L0,90 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
}

/* Map each section's cut fill to the NEXT section background */
#hero {
  --section-cut-fill: var(--ms-bg);
  --section-cut-bg-size: 100vw 100vh;
  --section-cut-bg-pos: 0 0;
}
.feature-ms.neo { --section-cut-fill: #0f172a; }
.feature-wu.neo { --section-cut-fill: #0f172a; }
.feature-vl.neo { --section-cut-fill: #0f172a; }
.feature-dt.neo { --section-cut-fill: #0f172a; }


.hosted { --section-cut-fill: #0f172a; }
.ratings { --section-cut-fill: #0f172a; }
.pricing.neo { --section-cut-fill: #0f172a; }
.testimonials.neo { --section-cut-fill: #0f172a; }
.faq-section { --section-cut-fill: #0f172a; }

/* Lock Multi-Sequence gradient to viewport so it matches the hero cut */


/* Disable skew-based section styling and clip-path slants (curved cutout is the only divider) */
.skewed,
.unskew {
  transform: none !important;
}

.hero.awe,
.feature-ms.neo,
.feature-wu.neo,
.feature-vl.neo,
.feature-dt.neo,
.pricing.neo,
.cta.neo,
.hosted,
.footer.neo {
  clip-path: none !important;
}

/* Remove legacy skew/slant dividers (kept here so older markup doesn't reintroduce them) */
.section-slant,
.section-divider,
.diagonal-divider,
.skew-divider,
.wave-divider {
  display: none !important;
}

/* end of hoasted inbox  section */





/* start of hoasted inbox  section */

:root{
  --hi-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --hi-text: linear-gradient(135deg, #e67e22 0%, #ecdcce 38%, #ecdcce 60%, #e67e22 100%);
  --hi-card: rgba(255,255,255,0.07);
  --hi-ring: rgba(230,126,34,0.45);
}

/* Hosted Inboxes (combined) */
.hosted{ position:relative; min-height: 100vh; color:#f9fafb; overflow:hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%); }
.hosted.skewed{ transform: skewY(-3deg); } .hosted .unskew{ transform: skewY(3deg); }
.hosted .hosted-bg{ position:absolute; inset:0; background:center/cover no-repeat; filter:saturate(1.1) brightness(.92); z-index:0; }
.hosted::before{ content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(100% 140% at 50% 0%, rgba(15,23,42,.85) 0%, rgba(17,24,39,.65) 40%, rgba(31,41,55,.35) 100%), var(--hi-bg); }
.hosted::after{ content:""; position:absolute; inset:0; z-index:0; box-shadow: inset 0 -120px 120px rgba(0,0,0,.35); pointer-events:none; }

/* Orbs behind */
.hi-orb{ position:absolute; filter:blur(24px); border-radius:50%; opacity:.35; animation: hi-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.hi-orb.o1{ width:240px; height:240px; background:#3b82f6; top:-60px; right:-60px; }
.hi-orb.o2{ width:180px; height:180px; background:#f97316; bottom:-60px; left:12%; animation-delay:2s; }
.hi-orb.o3{ width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes hi-float{ 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Vertical label */
.hi-side{ min-height:100%; }
.hi-sticky{ position:sticky; top:96px; display:flex; flex-direction:column; align-items:center; gap:12px; }
.hi-tag{ background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; padding:6px 10px; border-radius:9999px; }
.hi-vertical{ writing-mode: vertical-rl; transform: rotate(180deg); font-weight:800; letter-spacing:.6px; background: var(--hi-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; font-size: clamp(1.2rem, .8rem + 2vw, 2rem); }

/* Header */
.hi-header .hosted-badge{ display:inline-block; padding:8px 16px; border-radius:25px; background:#fff; color:#fd9644; border:1px solid rgba(255,255,255,.3); backdrop-filter: blur(10px); margin-bottom:10px; }
.hi-header .hosted-title{ margin:0 0 6px; font-weight:800; font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); background: var(--hi-text); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* Rail + off-grid cards */
.hi-canvas{ position:relative; min-height:360px; margin: 8px 0 16px; z-index:1; }
.hi-rail{ position:absolute; inset:0; }
.hi-rail .dash{ stroke-dasharray: 14 12; animation: hi-dash 7s linear infinite; opacity:.9; }
@keyframes hi-dash{ to{ stroke-dashoffset: 260; } }

.hi-card{
  position:absolute; max-width:280px; background: var(--hi-card);
  border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:16px 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px); transform-style: preserve-3d; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; isolation:isolate;
}
.hi-card:hover{ transform: translateY(-4px); border-color: var(--hi-ring); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
.hi-card .hi-step{ display:inline-flex; align-items:center; justify-content:center; height:28px; min-width:72px; padding:0 10px; border-radius:9999px; background: rgba(230,126,34,.18); color:#f59e0b; font-weight:700; font-size:.85rem; margin-bottom:8px; }
.hi-card h4{ margin:0 0 6px; font-weight:700; }
.hi-card p{ margin:0; color:#e5e7eb; }

/* Non-conventional placements */
.hi-card.c1{ top: 12%; left: 12%; }
.hi-card.c2{ top: 46%; left: 30%; }
.hi-card.c3{ top: 20%; left: 58%; }
.hi-card.c4{ top: 60%; left: 78%; }

/* Chips + CTA */
.hi-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.hi-chips .chip{ display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:9999px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:#fff; }
.btn.btn-hi{ background:#e67e22; border:1px solid #e67e22; color:#fff; font-weight:800; padding:10px 16px; border-radius:12px; box-shadow:0 6px 16px rgba(230,126,34,.35); transition: transform .15s ease, box-shadow .15s ease, background .15s ease; position:relative; z-index:2; }
.btn.btn-hi:hover{ background:#d35400; border-color:#d35400; transform: translateY(-2px); box-shadow:0 10px 22px rgba(211,84,0,.4); }

/* Reveal on scroll */
.hi-card.reveal{ opacity:0; transform: translateY(18px); }
.hi-card.reveal.is-visible{ opacity:1; transform: translateY(0); transition: opacity 320ms ease, transform 320ms ease; }

/* Safety: decorations never block clicks */
.hosted .hi-orb, .hosted .hi-rail{ pointer-events:none; z-index:0; }
.hi-canvas, .hi-card, .btn.btn-hi{ position:relative; z-index:1; }

/* Mobile fallback */
@media (max-width: 767.98px){
  .hosted.skewed{ transform:none; } .hosted .unskew{ transform:none; }
  .hi-rail{ display:none; }
  .hi-card{ position:relative; max-width:none; margin-bottom:12px; top:auto; left:auto; }
}





:root{
  --ft-bg: linear-gradient(135deg, #0f172a 0%, #111827 35%, #1f2937 100%);
  --ft-ring: rgba(230,126,34,0.45);
  --ft-text-grad: linear-gradient(135deg, #e67e22 0%, #f59e0b 40%, #f97316 60%, #3b82f6 100%);
}

/* Footer (neo) */
.footer.neo{
  position: relative; overflow:hidden; padding: 60px 0 28px;
  background: var(--ft-bg); color:#f9fafb;
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
}


.footer.neo { --slant: 1vw; }
.footer.neo.invert-top{
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--slant) * -1);
}


/* Top wave */
.footer-wave{ position:absolute; top:-2px; left:0; right:0; height:80px; pointer-events:none; opacity:.9; }
.footer-wave .dash{ stroke-dasharray: 14 12; animation: ft-dash 7s linear infinite; }
@keyframes ft-dash{ to{ stroke-dashoffset: 260; } }

/* Orbs */
.footer.neo .ft-orb{ position:absolute; filter: blur(22px); border-radius:50%; opacity:.35; animation: ft-float 12s ease-in-out infinite; pointer-events:none; z-index:0; }
.footer.neo .orb-a{ width:220px; height:220px; background:#3b82f6; top:-40px; right:-40px; }
.footer.neo .orb-b{ width:160px; height:160px; background:#f59e0b; bottom:-50px; left:12%; animation-delay:2s; }
.footer.neo .orb-c{ width:140px; height:140px; background:#10b981; top:28%; left:-60px; animation-delay:4s; }
@keyframes ft-float{ 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-16px) scale(1.03)} }

/* Layout */
.footer-content{
  position: relative; z-index:1;
  display:grid; gap:24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.footer-section h3.footer-title{
  margin:0 0 6px; font-weight:800;
  background: var(--ft-text-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.footer-section p{ color:#e5e7eb; margin-bottom:.5rem; }

/* Links: gradient underline */
.footer-section a{
  color:#fff; text-decoration:none; position:relative; font-weight:600;
}
.footer-section a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background: var(--ft-text-grad); transition: width .25s ease;
}
.footer-section a:hover::after{ width:100%; }

/* Socials: glassy buttons */
.socials{ display:flex; gap:10px; margin-top:8px; }
.socials a{
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 16px rgba(0,0,0,.35); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.socials a:hover{ transform: translateY(-2px); border-color: var(--ft-ring); box-shadow: 0 10px 22px rgba(0,0,0,.45); }

/* Meta row */
.footer-meta{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin-top:20px; border-top:1px solid rgba(255,255,255,.12); padding-top:14px;
}
.footer-meta p{ margin:0; color:#cbd5e1; }
.footer-meta .back-to-top{
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:9999px;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:#fff; text-decoration:none; font-weight:700;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.footer-meta .back-to-top:hover{ transform: translateY(-2px); border-color: var(--ft-ring); box-shadow: 0 10px 22px rgba(0,0,0,.45); }

/* Safety */
.footer.neo .ft-orb, .footer-wave{ pointer-events:none; }
/* Mobile */
@media (max-width: 767.98px){
  .footer-meta{ flex-direction:column; align-items:flex-start; }
}

