:root {
    --clr-purple: #6D44AD;
    --clr-teal: #1ABC9C;
    --clr-text: #343A40;
    --clr-bg: #F8F9FA;
    --clr-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

main {
    display: block;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0;
    pointer-events: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    pointer-events: auto;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
}
.logo-wrap img {
    max-width: 180px;
    height: auto;
    filter: none;
    mix-blend-mode: normal;
    background: transparent;
}
.main-nav {
    display: none;
}
.main-nav a {
    font-weight: 600;
    color: var(--clr-white);
    transition: color 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.main-nav a:hover {
    color: var(--clr-teal);
    background: rgba(255,255,255,0.1);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
    background: var(--clr-bg);
}
.hero video,
.hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero video {
    display: none;
}
.hero canvas {
    display: block;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    text-align: center;
    margin: 0 auto;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
    color: var(--clr-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero h1 span {
    display: inline-block;
    background: transparent;
    color: var(--clr-white);
    min-width: 14ch;
    transition: opacity 0.18s ease;
}
.hero h2 {
    font-size: 1.35rem;
    color: var(--clr-white);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    font-weight: 600;
}
.hero p {
    font-size: 1.15rem;
    color: var(--clr-white);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    color: var(--clr-white);
    transition: transform 0.3s ease, color 0.3s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}

.scroll-arrow:hover {
    color: var(--clr-teal);
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 0.9rem 1.85rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-height: 40px;
}
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}
.btn-primary {
    background: linear-gradient(90deg, var(--clr-purple), var(--clr-teal));
    color: var(--clr-white);
}
.btn-secondary {
    background: rgba(255,255,255,0.9);
    color: var(--clr-purple);
    border: 1px solid rgba(109,68,173,0.3);
}
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26,188,156,0.18);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.faq-item button:focus-visible,
.card:focus-visible {
    outline: 3px solid rgba(26,188,156,0.7);
    outline-offset: 2px;
}
.section {
    padding: 5rem 1.5rem;
    position: relative;
}
.section:nth-of-type(odd) {
    background: var(--clr-white);
}
.section-title {
    max-width: 960px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.section-title h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
}
.section-title p {
    margin: 0;
    color: rgba(52,58,64,0.7);
}
.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.75rem;
}
.cards-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cards-grid.six {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
    background: var(--clr-white);
    box-shadow: 0 18px 45px rgba(20,24,29,0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.card:hover,
.card:focus {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(20,24,29,0.12);
}
.card:focus {
    outline: none;
}
.card pre {
    background: rgba(109,68,173,0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    color: var(--clr-text);
    white-space: pre-wrap;
}
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(109,68,173,0.12), rgba(26,188,156,0.12));
    margin-bottom: 1rem;
    color: var(--clr-purple);
    font-weight: 700;
}
.proof-band {
    background: linear-gradient(90deg, rgba(109,68,173,0.85), rgba(26,188,156,0.85));
    color: var(--clr-white);
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.proof-band small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.85;
}
.proof-band-enhanced {
    position: relative;
    background: linear-gradient(135deg, rgba(109,68,173,0.95) 0%, rgba(26,188,156,0.95) 100%);
    color: var(--clr-white);
    padding: 6rem 1.5rem;
    text-align: center;
    overflow: hidden;
    margin: 0;
}
#proofBandCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}
.proof-band-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(109,68,173,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26,188,156,0.3) 0%, transparent 50%);
    z-index: 1;
}
.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    transform: translateY(-1px);
}
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    transform: translateY(1px);
}
.proof-band-content {
    position: relative;
    z-index: 4;
    max-width: 980px;
    margin: 0 auto;
}
.proof-band-enhanced h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--clr-white);
    line-height: 1.2;
}
.proof-band-enhanced p {
    margin: 0 0 1rem;
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}
.proof-band-enhanced small {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.85);
}
.reels-showcase {
    max-width: 1400px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
}
.reels-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
}
.reels-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.reels-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    animation: autoScroll 60s linear infinite;
}
.reels-track:hover {
    animation-play-state: paused;
}
.reel-card {
    flex: 0 0 auto;
    width: 400px;
    background: var(--clr-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.reel-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
/* Instagram iframe styling */
.reel-card iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 1rem;
    display: block;
}
.reel-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(109,68,173,0.05), rgba(26,188,156,0.05));
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--clr-purple);
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.reel-profile h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--clr-text);
    font-weight: 600;
}
.reel-profile p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: rgba(52,58,64,0.7);
}
.reel-preview {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-teal));
    display: flex;
    align-items: center;
    justify-content: center;
}
.reel-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    text-align: center;
}
.reel-placeholder svg {
    opacity: 0.9;
    transition: transform 0.3s ease;
}
.reel-card:hover .reel-placeholder svg {
    transform: scale(1.2);
}
.reel-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .reel-card {
        width: 340px;
    }
    .reels-showcase {
        padding: 0 1rem;
    }
}
.prompt-demo {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}
.prompt-demo textarea {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(109,68,173,0.3);
    resize: vertical;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
}
.prompt-stats {
    background: var(--clr-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(20,24,29,0.08);
}
.prompt-stats h4 {
    margin-top: 0;
}
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    background: var(--clr-white);
    border-radius: 1.25rem;
    box-shadow: 0 18px 36px rgba(20,24,29,0.06);
    display: block;
}
.comparison-table thead,
.comparison-table tbody {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    text-align: left;
    word-wrap: break-word;
}
.comparison-table th {
    background: rgba(109,68,173,0.08);
    font-size: 0.95rem;
}
.comparison-table td:nth-child(2) {
    font-weight: 700;
    color: var(--clr-purple);
}
.pricing-container {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
}
.pricing-card {
    background: var(--clr-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 22px 44px rgba(20,24,29,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.checkout-card {
    background: var(--clr-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 22px 44px rgba(20,24,29,0.08);
    border: 2px solid var(--clr-purple);
}
.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.checkout-header h3 {
    margin: 0 0 0.5rem;
    color: var(--clr-text);
}
.checkout-header p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(52,58,64,0.7);
}
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text);
}
.form-group input,
.form-group select {
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(109,68,173,0.2);
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--clr-white);
    color: var(--clr-text);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-purple);
    box-shadow: 0 0 0 3px rgba(109,68,173,0.1);
}
.card-input {
    border: 1.5px solid rgba(109,68,173,0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    background: var(--clr-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card-input:focus-within {
    border-color: var(--clr-purple);
    box-shadow: 0 0 0 3px rgba(109,68,173,0.1);
}
.card-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.card-number {
    border: none;
    padding: 0;
    font-size: 0.95rem;
    width: 100%;
}
.card-number:focus {
    outline: none;
    box-shadow: none;
}
.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.card-expiry,
.card-cvc {
    border: none;
    padding: 0;
    font-size: 0.95rem;
}
.card-expiry:focus,
.card-cvc:focus {
    outline: none;
    box-shadow: none;
}
.order-summary {
    background: rgba(109,68,173,0.04);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}
.summary-row.total {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(109,68,173,0.15);
    margin-top: 0.5rem;
}
.summary-row .price {
    color: var(--clr-purple);
    font-weight: 600;
}
.summary-row .small-text {
    font-size: 0.8rem;
    color: rgba(52,58,64,0.6);
}
.btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    padding: 1.1rem 2rem;
    margin-top: 0.5rem;
}
.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(52,58,64,0.6);
    margin-top: -0.5rem;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}
.pricing-card li {
    padding-left: 1.75rem;
    position: relative;
}
.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-teal));
}
.faq {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}
.faq-item {
    background: var(--clr-white);
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(20,24,29,0.08);
    overflow: hidden;
}
.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--clr-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.faq-item button:hover {
    background: rgba(109,68,173,0.03);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}
.faq-answer.open {
    padding-bottom: 1.5rem;
}
.faq-answer p {
    margin: 0.5rem 0 0;
    color: rgba(52,58,64,0.78);
}
.images-row {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.images-row img {
    border-radius: 1.25rem;
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(20,24,29,0.12);
}
.use-case-images {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.use-case-images img {
    border-radius: 1.25rem;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(20,24,29,0.12);
}
footer {
    background: #13161A;
    color: rgba(255,255,255,0.88);
    padding: 3rem 1.5rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-inner h4 {
    color: var(--clr-white);
    margin: 0 0 1rem;
    font-size: 1.1rem;
}
.footer-inner p {
    margin: 0;
    line-height: 1.7;
}
.footer-inner img {
    margin: 0 auto 0 0;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}
.footer-nav a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}
.footer-nav a:hover {
    color: var(--clr-teal);
}
.footer-bottom {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    transition: background 0.2s ease;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 5rem 1.5rem 4rem;
    }
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        letter-spacing: 0.04em;
    }
    .hero h1 span {
        display: block;
        margin-top: 0.25rem;
        min-width: auto;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .hero video {
        opacity: 1;
    }
    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    .logo-wrap {
        width: 100%;
        justify-content: center;
    }
    .logo-wrap img {
        max-width: 140px;
    }
    .main-nav {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        margin-top: 0;
    }
    .main-nav a {
        margin-left: 0;
        font-size: 0.875rem;
    }
    .section {
        padding: 3rem 1rem;
        overflow-x: hidden;
    }
    .section-title h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    .cards-grid.three {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .cards-grid.six {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 1.5rem;
    }
    .comparison-table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table thead,
    .comparison-table tbody {
        display: table;
        width: 100%;
        min-width: auto;
    }
    .comparison-table thead th:nth-child(4),
    .comparison-table tbody td:nth-child(4) {
        display: none;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.8rem;
    }
    .pricing-container {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    .pricing-card {
        order: -1;
    }
    .pricing-card,
    .checkout-card {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .checkout-card {
        max-width: 100%;
        overflow-x: hidden;
    }
    .checkout-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }
    .checkout-header h3 {
        font-size: 1.25rem;
    }
    .checkout-form {
        gap: 1rem;
        width: 100%;
    }
    .form-group {
        width: 100%;
    }
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    .card-input {
        padding: 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }
    .card-placeholder {
        width: 100%;
    }
    .card-number,
    .card-expiry,
    .card-cvc {
        width: 100%;
        box-sizing: border-box;
    }
    .order-summary {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .btn-checkout {
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    .prompt-demo {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    .images-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .proof-band-enhanced {
        padding: 4rem 1rem;
    }
    .wave-top,
    .wave-bottom {
        height: 50px;
    }
    .proof-band-enhanced h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    .proof-band-enhanced p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
    }
    .footer-inner > div {
        text-align: center;
    }
    .footer-inner img {
        margin: 0 auto;
    }
    .footer-inner p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-nav {
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 0.95rem 1.75rem;
        font-size: 0.95rem;
        min-height: 50px;
        width: 100%;
    }
    .cta-row {
        width: 100%;
        flex-direction: column;
    }
    .cta-row button {
        width: 100%;
    }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .faq-answer {
        transition: none;
    }
}
