/* ==========================================================================
   Base & Reset
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-primary-dark: #1c2b36;
    /* Dark Blue */
    --color-primary-accent: #a7d77e;
    /* Lime Green */

    /* Neutrals */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-500: #6b7280;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Semantic */
    --color-text-main: var(--color-gray-500);
    --color-text-muted: var(--color-gray-500);

    /* Typography */
    /* Using Inter to simulate Helvetica Neue but better suited for web if needed.
       We can fall back to Helvetica Neue. */
    --font-family-base: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --section-padding: 100px 0;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Globally protect against off-screen slider card bouncing */
    width: 100%;
    scroll-padding-top: 100px; /* Offset anchor jumps to clear fixed header */
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text-main);
    background-color: var(--color-gray-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Double lock for Safari Mobile handling */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary-dark);
}

/* Ensure headings on explicitly dark semantic blocks invert gracefully */
.pricing-section h1, .pricing-section h2, .pricing-section h3, .pricing-section h4, .pricing-section h5, .pricing-section h6,
.footer-section h1, .footer-section h2, .footer-section h3, .footer-section h4, .footer-section h5, .footer-section h6,
.card-dark h1, .card-dark h2, .card-dark h3, .card-dark h4, .card-dark h5, .card-dark h6,
.card-brand h1, .card-brand h2, .card-brand h3, .card-brand h4, .card-brand h5, .card-brand h6,
.drag-card-content h3 {
    color: var(--color-gray-50) !important;
}

/* Explicitly exempt nested .card-light arrays inside dark parent modules returning them exactly to native primary-dark */
.card-light h1, .card-light h2, .card-light h3, .card-light h4, .card-light h5, .card-light h6 {
    color: var(--color-primary-dark) !important;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6%; /* Matches exactly the native fluid margin bounds of the Hero and Features layouts! */
}

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

.text-accent {
    color: var(--color-primary-accent);
}

.hero-content .text-accent {
    color: #32623e;
}

/* Deeper green for light background compliance */

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
}

.btn > svg {
  width: 34px;
  height: 34px;
  margin-left: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}

.btn:hover > svg {
  transform: translateX(5px) rotate(45deg);
}

.btn:active {
  transform: scale(0.95);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.125rem;
}

.btn-large > svg {
  width: 44px;
  height: 44px;
  margin-left: 14px;
}

.nav-cta {
  padding: 6px 14px;
  font-size: 0.95rem;
  font-weight: 700 !important; /* Enforce bold globally across all header instances */
}

.nav-cta > svg {
  width: 28px;
  height: 28px;
  margin-left: 8px;
}

.btn-primary {
  background: var(--color-primary-accent);
  color: var(--color-primary-dark);
}

.btn-primary:hover {
  background: #BBEA8D; /* Lighter lime */
}

.btn-primary .btn-icon-bg {
    fill: var(--color-primary-dark);
}

.btn-primary .btn-icon-arrow {
    stroke: var(--color-primary-accent);
}

.btn-primary-dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-primary-dark:hover {
  background: #25333f;
}

.btn-primary-dark .btn-icon-bg {
    fill: var(--color-primary-accent);
}

.btn-primary-dark .btn-icon-arrow {
    stroke: var(--color-primary-dark);
}

.btn-block {
    width: 100%;
    justify-content: space-between;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    padding: 10px 24px;
    gap: 0;
}

.btn-secondary::after {
    display: none;
}

.btn-secondary:hover {
    color: var(--color-primary-accent);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    border-width: 2px;
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background-color: transparent;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: var(--color-gray-50);
    box-shadow: var(--shadow-sm);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--color-primary-accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-gray-500);
    font-weight: 500;
    font-size: 0.95rem;
}

.mobile-nav-cta {
    display: none !important; /* Strictly hidden on desktop globally */
}

.nav-links a:hover {
    color: var(--color-primary-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-dark);
    position: absolute;
    left: 0;
    transition: all var(--transition-normal);
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:last-child {
    top: 18px;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

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

.menu-toggle.active span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}

/* ==========================================================================
/* ==========================================================================
   Hero Section (Typographic Art-Directed)
   ========================================================================== */
.hero-art {
    /* Smooth, premium light grey gradient radiating from top center */
    background-color: var(--color-gray-50);
    background-image: radial-gradient(circle at center top, #ffffff 0%, #f6f7fb 60%, #eaedf4 100%);
    padding: 180px 6% 60px;
    color: var(--color-primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
}

.hero-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(28, 43, 54, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
}

.hero-art-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-bottom: 40px;
    position: relative;
    z-index: 2; /* Ensures typography stays above the texture layers */
}

.hero-line {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: clamp(4rem, 11vw, 15rem);
    /* Extremely responsive, massive text */
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--color-primary-dark);
}

.hero-line.row-1 {
    justify-content: flex-start;
    gap: clamp(10px, 2vw, 40px);
}

.hero-line.row-2 {
    justify-content: flex-end;
    margin-top: -1vw;
    /* Tighter leading */
    position: relative;
    gap: clamp(15px, 2.5vw, 50px);
}

.hero-spinning-logo {
    height: clamp(50px, 8vw, 120px);
    /* Matches .hero-arrow-down height */
    width: auto;
    object-fit: contain;
    transform-style: preserve-3d;
    will-change: transform;
    /* Optimized for animation */
    /* Give the spinning logo the highest Z-index so it doesn't go behind the CTA or below content */
    position: relative;
    z-index: 20;
}

.hero-line.row-3 {
    justify-content: center;
    gap: clamp(20px, 4vw, 80px);
    margin-top: -1vw;
}

.hero-asterisk {
    width: clamp(60px, 9vw, 160px);
    height: clamp(60px, 9vw, 160px);
    flex-shrink: 0;
}

.hero-arrow-down {
    width: clamp(50px, 8vw, 120px);
    height: clamp(50px, 8vw, 120px);
    flex-shrink: 0;
}

.registration-mark {
    font-size: clamp(1rem, 3vw, 4rem);
    vertical-align: super;
    font-weight: 400;
    margin-left: 10px;
}

.hero-subtext {
    position: absolute;
    left: 4%;
    /* Adjust left placement */
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(0.75rem, 1vw, 1.15rem);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: #333;
    max-width: 320px;
}

.hero-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-bottom-bar a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
    transition: border-color var(--transition-fast);
}

.hero-bottom-bar a:hover {
    border-color: #000;
}

/* Responsiveness for extreme text sizes */
@media (max-width: 1024px) {
    .hero-subtext {
        position: static;
        transform: none;
        max-width: none;
        margin-right: auto;
        margin-bottom: 20px;
        order: -1;
        font-size: 1rem;
    }
    .hero-line.row-1 {
        justify-content: center;
    }

    .hero-line.row-2 {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-line.row-3 {
        justify-content: center;
    }
}

/* ==========================================================================
   Art-Directed Features Section
   ========================================================================== */
.art-features {
    background-color: var(--color-gray-50);
    padding-bottom: 120px;
    width: 100%;
}

.art-features-topbar {
    display: flex;
    justify-content: space-between;
    padding: 24px 6%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}

.art-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 6%;
    margin-bottom: 64px;
}

.art-card {
    height: 520px;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-normal);
}

.art-features-grid .art-card:nth-child(even) {
    margin-top: 48px; /* Creates the staggered architectural offset separating adjacent card heights visually */
}

.art-card:hover {
    transform: translateY(-4px);
}

.art-card-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.art-card-content p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.art-card-footer a {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: inherit;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity var(--transition-fast);
}

.art-card-footer a:hover {
    opacity: 0.7;
}

.art-card-footer.align-right {
    display: flex;
    justify-content: flex-end;
}

.art-logo-mark {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

/* Card Variations */
.card-white {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.card-white .art-card-content p {
    color: var(--color-gray-500);
}

.card-textured {
    position: relative;
    overflow: hidden;
    z-index: 1; /* Establishes a local stacking context for the pseudo-overlay elements */
    color: var(--color-white);
    background-size: 120% 120%;
    background-position: left center;
    transition: background-position 3s ease-in-out, transform var(--transition-normal);
}

.art-card:hover.card-textured {
    background-position: right center;
}

.card-textured::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Beautiful SV fractal noise texture to mimic the grainy gradient */
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -2;
}

.card-textured::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Subtle dot grid pattern to match the reference image background detail */
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
    pointer-events: none;
    z-index: -1;
}

.card-textured .art-card-content p {
    color: var(--color-gray-500); /* Adjusted to boost illegibility on the new light mint backgrounds */
}

/* Light Mint scales tracking explicit design attachments */
.gradient-mint-1 {
    background-image: linear-gradient(145deg, #ffffff 0%, #ebf8e6 50%, #b8dfb0 100%);
    color: var(--color-primary-dark) !important;
}

.gradient-mint-2 {
    /* Optically dynamic light-injected top left strictly scaling into rich shadows */
    background-image: linear-gradient(145deg, #ffffff 0%, #dcf0d3 50%, #a5d898 100%);
    color: var(--color-primary-dark) !important;
}

.gradient-mint-3 {
    background-image: linear-gradient(145deg, #ffffff 0%, #cbebbf 50%, #8fc57f 100%);
    color: var(--color-primary-dark) !important;
}

.gradient-mint-4 {
    background-image: linear-gradient(145deg, #ffffff 0%, #bae2a8 50%, #7db963 100%);
    color: var(--color-primary-dark) !important;
}

/* Suppress the stark white dot grid natively inheriting from card-textured specifically for these light cards */
.gradient-mint-1::after,
.gradient-mint-2::after,
.gradient-mint-3::after,
.gradient-mint-4::after {
    background-image: radial-gradient(rgba(28, 43, 54, 0.15) 1px, transparent 1px) !important;
}

/* Protect the dark blue gradient correctly powering nested backgrounds */
.gradient-dark {
    /* Boost Dark Blue adapted gradient */
    background-image: linear-gradient(145deg, #3d5569 0%, #1c2b36 40%, #0d161d 80%, #04090c 100%);
}

.card-image {
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.card-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.card-brand {
    background-color: var(--color-primary-accent);
    /* Lime green */
    color: var(--color-primary-dark);
}

.art-features-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-text-box {
    background: transparent;
    border: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    transition: opacity var(--transition-fast);
}

.btn-text-box:hover {
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .art-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .art-features-grid {
        grid-template-columns: 1fr;
    }

    .art-features-grid .art-card:nth-child(even) {
        margin-top: 0; /* Reset architectural offset natively on single column streams */
    }

    .art-card {
        height: 400px;
    }

    .art-features-topbar {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* ==========================================================================
   Social Proof / Testimonials
   ========================================================================== */
.social-proof {
    padding: var(--section-padding);
    background-color: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-primary-accent);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.testimonial-text {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    line-height: 1.4;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-gray-200);
    /* placeholder gradient */
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.author-info {
    text-align: center;
}

.author-info strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 1rem;
}

.author-info span {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.logo-cloud {
    text-align: center;
}

.logo-cloud p {
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-500);
    filter: grayscale(100%);
}

/* ==========================================================================
   Drag Interaction Section
   ========================================================================== */
.drag-section {
    padding: var(--section-padding);
    background-color: #f9fafb;
    overflow: visible !important; /* Prevent legacy CSS axis-locking from clipping vertical shadows */
}

.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
}

.drag-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.drag-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
    max-width: 400px;
    line-height: 1.2;
}

.drag-container {
    width: 100%;
    overflow: visible !important; /* Force true infinite shadow bleeding naturally */
    padding: 60px 0; /* Padding recalibrated cleanly against raw height */
    height: 640px; /* Dramatically expanded parent Y dimension natively halting deep shadow bounds clipping */
}

.drag-track {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.drag-card {
    position: absolute; /* Frees cards from native flex order blocking transition algorithms */
    width: 320px; /* Swapped to standard vertical rectangular dimension */
    height: 400px;
    border-radius: 24px; /* Unifying corners directly matching global feature boxes */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease, opacity 0.6s ease, z-index 0.6s;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    opacity: 0; /* Hidden by default until JS mounts `.pos-` classes */
}

.drag-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.drag-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    text-align: center;
}

.drag-card h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 4px 0;
}

.drag-card p {
    font-size: 1.15rem;
    font-weight: 500;
    opacity: 0.85;
    margin: 0;
}

/* Dynamic Rotating Classes controlling 3D position state */
.drag-card.pos-1 {
    z-index: 1;
    transform: translateX(-320px) scale(0.65);
    filter: brightness(0.4) blur(3px);
    opacity: 0.6;
}

.drag-card.pos-2 {
    z-index: 2;
    transform: translateX(-160px) scale(0.85);
    filter: brightness(0.65) blur(1px);
    opacity: 0.9;
}

.drag-card.pos-3 {
    z-index: 3;
    transform: translateX(0) scale(1);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    filter: brightness(1) blur(0px);
    opacity: 1;
}

.drag-card.pos-4 {
    z-index: 2;
    transform: translateX(160px) scale(0.85);
    filter: brightness(0.65) blur(1px);
    opacity: 0.9;
}

.drag-card.pos-5 {
    z-index: 1;
    transform: translateX(320px) scale(0.65);
    filter: brightness(0.4) blur(3px);
    opacity: 0.6;
}

/* Hidden Fallback Matrix (handling N elements natively without visual interference) */
.drag-card[class*="pos-"]:not(.pos-1):not(.pos-2):not(.pos-3):not(.pos-4):not(.pos-5) {
    z-index: 0;
    transform: translateX(0) scale(0.5);
    filter: brightness(0.2) blur(6px);
    pointer-events: none;
    opacity: 0; /* Fully tucks behind absolute center gracefully */
}

/* Micro-interaction on static hovering */
.drag-card.pos-3:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

.faq-header {
    padding: 0 40px;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 0;
    max-width: 500px;
    color: var(--color-primary-dark);
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

.faq-item:first-child {
    border-top: 2px solid var(--color-gray-900);
}

.faq-item summary {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
    list-style: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    transform: translateX(8px);
    color: #8dc45f;
}

.faq-item summary::after {
    content: '+';
    font-weight: 300;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-gray-400);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item summary:hover::after {
    color: #8dc45f;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 24px;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-gray-600);
    max-width: 760px;
    animation: faqFadeSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes faqFadeSlide {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }
    .faq-header h2 {
        font-size: 2.25rem;
    }
    .faq-item {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--color-primary-dark);
    /* Dark background like screenshot */
    color: var(--color-white);
    border-radius: 24px 24px 0 0;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2; /* Bring into consistent proportion to other large headings */
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-light {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.card-brand {
    background-color: var(--color-primary-accent);
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Floating Widgets (Feature Cards)
   ========================================================================== */
.floating-widget-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    perspective: 1000px;
    z-index: 2; /* keep them explicitly in front */
}

.floating-widget {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0,0,0,0.1);
    width: 260px;
    transform: rotateX(5deg) rotateY(-5deg) translateY(0);
    transition: transform var(--transition-normal);
    color: var(--color-primary-dark);
}

.art-card:hover .floating-widget {
    transform: rotateX(0deg) rotateY(0deg) translateY(-8px);
    box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0,0,0,0.1);
}

.widget-header {
    margin-bottom: 16px;
}

.widget-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 2px;
    letter-spacing: -0.2px;
    text-transform: none;
}

.widget-subtitle {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    font-weight: 500;
    text-transform: none;
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    align-self: flex-start;
}

.pricing-badge.badge-dark {
    background-color: rgba(0, 0, 0, 0.8);
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
}

.card-light .pricing-price {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-brand .pricing-price {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    /* Slightly darker for contrast on lime green */
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.billing-period {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 12px;
    text-transform: uppercase;
    opacity: 0.6;
}

.pricing-description {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.85;
    flex-grow: 1;
}

.pricing-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bonus-tag {
    background-color: var(--color-primary-dark);
    color: var(--color-primary-accent);
    padding: 2px 8px;
    border-radius: 4px;
}

.card-brand .pricing-bonus {
    margin-top: -16px;
}

.btn-block {
    width: 100%;
    justify-content: space-between;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.cta-card {
    background-color: var(--color-primary-dark);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 215, 126, 0.1) 0%, rgba(28, 43, 54, 0) 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card>p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.input-field {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 9999px 0 0 9999px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all var(--transition-normal);
}

.input-field:focus {
    border-color: var(--color-primary-accent);
}

.cta-form .btn-primary {
    border-radius: 0 9999px 9999px 0;
    margin-left: -2px;
    /* overlap border */
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-brand .footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.link-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
    width: fit-content;
    position: relative;
}

.link-column a:hover {
    color: var(--color-primary-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.legal-links a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Ensure elements are visible if JS fails, or just make animations trigger better */
.no-js .fade-up,
.no-js .fade-in,
.no-js .slide-up {
    opacity: 1 !important;
    transform: none !important;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Tooltip Micro-interaction */
.coming-soon-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.9);
    background-color: var(--color-primary-accent);
    color: var(--color-primary-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 10;
    margin-bottom: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coming-soon-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: var(--color-primary-accent) transparent transparent transparent;
}

.link-column a.show-tooltip .coming-soon-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .mockup-sidebar {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--color-primary-dark); /* Boost Dark Blue */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 120px 40px 40px;
        z-index: 990;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
        visibility: hidden;
    }

    body.nav-open .nav-links {
        transform: translateX(0);
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden; /* Stop background scrolling */
    }

    /* Transparent header overlay so dark menu absorbs the screen perfectly */
    body.nav-open .navbar {
        background-color: transparent !important;
        box-shadow: none !important;
        border-bottom: none !important;
        backdrop-filter: none !important;
    }

    /* Invert logo to pure white to contrast against the dark sliding menu */
    body.nav-open .logo img {
        filter: brightness(0) invert(1);
    }

    /* Turn the burger/cross icon pure white */
    body.nav-open .menu-toggle span {
        background-color: var(--color-white) !important;
    }

    .nav-links a {
        font-size: 2.25rem;
        font-weight: 400;
        letter-spacing: -1px;
        color: var(--color-white) !important;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.08); /* Minimal separators */
        padding: 24px 0;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.mobile-nav-cta {
        display: inline-flex !important; /* Restore natural inline pill shape */
        width: auto;
        margin-top: 32px;
        border-bottom: none;
        padding: 12px 28px;
        font-size: 1.125rem;
        font-weight: 700 !important; /* Enforce bold typography matching Desktop */
        align-self: flex-start; /* Keep to the left like the other links */
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        color: var(--color-primary-dark) !important; /* Override white text default from parent */
    }

    .nav-links a.mobile-nav-cta:hover {
        color: var(--color-primary-dark) !important;
    }

    .nav-links a.mobile-nav-cta::after {
        display: none;
    }

    .nav-links a::after {
        content: '›';
        font-size: 2.5rem;
        font-weight: 300;
        opacity: 0.3;
        margin-top: -6px;
    }

    .nav-links a:hover {
        color: var(--color-primary-accent) !important;
    }

    .nav-cta {
        display: none;
        /* Hide button on mobile, allowing burger menu to render */
    }

    .menu-toggle {
        display: block;
        z-index: 1000; /* Protects X icon keeping it above the panel */
        position: relative;
    }

    .hero-art {
        padding: 140px 6% 40px;
        min-height: auto;
        justify-content: center;
    }

    .hero-line {
        font-size: clamp(2.5rem, 12.5vw, 5rem);
        letter-spacing: -2px;
        gap: 12px;
    }

    .hero-spinning-logo {
        display: none;
    }
    
    .hero-description {
        padding-top: 24px;
        margin-top: 16px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

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

    .testimonial-text {
        font-size: 1.25rem;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1.05rem;
    }
    
    .btn-large > svg {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }

    .cta-form {
        flex-direction: column;
        gap: 16px;
    }

    .input-field {
        border-radius: 9999px;
    }

    .cta-form .btn-primary {
        border-radius: 9999px;
        margin-left: 0;
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

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