/* ==========================================================================
   UN1Q Theme — Design System & Components
   Font: Inter | Palette: Teal + Cream | Matching React reference
   ========================================================================== */

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
    --background: hsl(40, 20%, 98%);
    --foreground: hsl(220, 20%, 14%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 20%, 14%);
    --primary: hsl(174, 100%, 47%);
    --primary-foreground: hsl(220, 20%, 10%);
    --secondary: hsl(40, 15%, 94%);
    --secondary-foreground: hsl(220, 20%, 14%);
    --muted: hsl(40, 10%, 93%);
    --muted-foreground: hsl(220, 12%, 35%);
    --accent: hsl(174, 100%, 47%);
    --accent-foreground: hsl(220, 20%, 10%);
    --border: hsl(40, 15%, 90%);
    --input: hsl(40, 15%, 90%);
    --ring: hsl(174, 100%, 47%);
    --highlight: hsl(174, 100%, 33%);
    --destructive: hsl(0, 84%, 60%);
    --shadow-soft: 0 2px 16px -4px hsla(220, 20%, 14%, 0.08);
    --shadow-card: 0 4px 24px -6px hsla(220, 20%, 14%, 0.10);
    --shadow-elevated: 0 8px 32px -8px hsla(220, 20%, 14%, 0.14);
    --glow-accent: 0 4px 20px -4px hsla(174, 100%, 47%, 0.35);
    --radius: 0.75rem;
    --hero-overlay: linear-gradient(90deg, hsla(220, 20%, 10%, 0.6) 0%, hsla(220, 20%, 10%, 0.35) 50%, hsla(220, 20%, 10%, 0.1) 100%);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--foreground);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ---------- Utilities ---------- */
.section-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 1280px) {
    .section-padding {
        padding-left: 7rem;
        padding-right: 7rem;
    }
}

.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-6xl {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-5xl {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-2xl {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-xl {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-sm {
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
}

.text-balance {
    text-wrap: balance;
}

.bg-background {
    background-color: var(--background);
}

.bg-secondary-50 {
    background: hsla(40, 15%, 94%, 0.5);
}

.bg-secondary-30 {
    background: hsla(40, 15%, 94%, 0.3);
}

.bg-card {
    background-color: var(--card);
}

.text-foreground {
    color: var(--foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

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

.text-highlight {
    color: var(--highlight);
}

/* ---------- Stage Label ---------- */
.stage-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted-foreground);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .875rem;
    border-radius: var(--radius);
    padding: .625rem 1.5rem;
    transition: all .3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

.btn-accent:hover {
    opacity: .9;
    box-shadow: var(--glow-accent);
}

.btn-nav {
    background: var(--primary);
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
}

.btn-nav .btn-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary), hsl(190, 100%, 50%));
    opacity: 0;
    transition: opacity .3s;
}

.btn-nav:hover .btn-gradient {
    opacity: 1;
}

.btn-nav span {
    position: relative;
    z-index: 1;
}

.btn-waitlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 500;
    height: 2.5rem;
    padding: 0 1.75rem;
    border-radius: .5rem;
    transition: all .2s;
}

.btn-waitlist:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px var(--background);
}

.btn-waitlist .btn-label {
    position: relative;
    z-index: 1;
}

.btn-waitlist .btn-gradient {
    z-index: 0;
}

.btn-hero {
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 1rem;
    padding: .75rem 2rem;
}

.btn-hero:hover {
    opacity: .9;
    box-shadow: var(--glow-accent);
}

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, .4);
    color: rgba(255, 255, 255, .9);
    background: transparent;
    font-size: 1rem;
    padding: .75rem 2rem;
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
}

.btn-outline:hover {
    background: hsla(40, 15%, 94%, .5);
}

.btn-lg {
    font-size: 1rem;
    padding: .75rem 2rem;
}

.btn-sm {
    font-size: .875rem;
    padding: .5rem 1.25rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all .5s ease;
    padding: 1.25rem 0;
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: hsla(40, 20%, 98%, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: .75rem 0;
}

.site-header.dark-always {
    background: hsla(40, 20%, 98%, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: .75rem 0;
}

.header-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 70px;
    width: auto;
    transition: all .3s;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a,
.desktop-nav button {
    font-size: 1rem;
    font-weight: 500;
    transition: color .2s;
}

.site-header.transparent .nav-text {
    color: rgba(255, 255, 255, .8);
}

.site-header.transparent .nav-text:hover {
    color: var(--primary);
}

.site-header.scrolled .nav-text,
.site-header.dark-always .nav-text {
    color: var(--foreground);
}

.site-header.scrolled .nav-text:hover,
.site-header.dark-always .nav-text:hover {
    color: var(--primary);
}

/* Goals Dropdown */
.wp-dropdown {
    position: relative;
}

.wp-dropdown-btn {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.wp-dropdown-btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform .2s;
}

.wp-dropdown-btn.open svg,
.has-dropdown.open .wp-dropdown-btn svg {
    transform: rotate(180deg);
}

.wp-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: .75rem;
    width: 14rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    display: none;
    animation: fadeIn .2s ease;
    z-index: 200;
}

.wp-dropdown-menu.open,
.has-dropdown.open .wp-dropdown-menu {
    display: block;
}

.wp-dropdown-menu a {
    display: block;
    padding: .75rem 1.25rem;
    font-size: .875rem;
    color: var(--foreground);
    transition: all .2s;
}

.wp-dropdown-menu a:hover {
    background: hsla(174, 100%, 47%, .1);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: .75rem;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    padding: .5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.site-header.transparent .mobile-menu-toggle svg {
    color: #fff;
}

.site-header.scrolled .mobile-menu-toggle svg,
.site-header.dark-always .mobile-menu-toggle svg {
    color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border);
    animation: fadeIn .2s ease;
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a,
.mobile-menu button {
    font-size: .875rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color .2s;
    text-align: left;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    color: var(--primary);
}

.mobile-sub-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-goals-submenu {
    padding-left: 1rem;
    display: none;
    flex-direction: column;
    gap: .75rem;
}

.mobile-goals-submenu.open {
    display: flex;
}

.mobile-goals-submenu a {
    color: var(--muted-foreground);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-base {
    position: absolute;
    inset: 0;
    background-color: hsl(0, 0%, 38%);
    z-index: 0;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1.6s ease-in-out;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
        max-width: 32rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 3rem;
}

.hero-dot {
    border-radius: 9999px;
    transition: all .5s;
    width: .5rem;
    height: .5rem;
    background: rgba(255, 255, 255, .4);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, .6);
}

.hero-dot.active {
    width: 2rem;
    height: .5rem;
    background: var(--primary);
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    transition: all .3s;
    animation: bounce 2s infinite;
}

.hero-scroll-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-scroll-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ---------- Journey Header ---------- */
.journey-header {
    padding: 6rem 0 8rem;
}

@media (min-width: 768px) {
    .journey-header {
        padding: 8rem 0;
    }
}

.journey-header h2 {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .journey-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .journey-header h2 {
        font-size: 3rem;
    }
}

.journey-header > div > p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    text-align: center;
    text-wrap: balance;
    margin-bottom: 3rem;
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .journey-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.journey-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    transition: all .3s;
}

.journey-card:hover {
    border-color: hsla(174, 100%, 47%, .4);
    box-shadow: var(--shadow-card);
}

.journey-card img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.journey-card span {
    font-size: .875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* ---------- Goal Section ---------- */
.goal-section {
    padding: 5rem 0 7rem;
}

@media (min-width: 768px) {
    .goal-section {
        padding: 7rem 0;
    }
}

.goal-section.bg-alt {
    background: hsla(40, 15%, 94%, .5);
}

.goal-section-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .goal-section-inner {
        flex-direction: row;
        gap: 5rem;
    }

    .goal-section-inner.reverse {
        flex-direction: row-reverse;
    }
}

.goal-section-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .goal-section-image {
        width: 50%;
    }
}

.goal-section-image .img-wrap {
    overflow: hidden;
    border-radius: 1rem;
}

.goal-section-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s ease-out;
}

@media (min-width: 768px) {
    .goal-section-image img {
        height: 400px;
    }
}

.goal-section-image .img-wrap:hover img {
    transform: scale(1.03);
}

.goal-section-text {
    width: 100%;
}

@media (min-width: 1024px) {
    .goal-section-text {
        width: 50%;
    }
}

.goal-section-text h3 {
    font-size: 1.875rem;
    margin-bottom: .75rem;
}

@media (min-width: 768px) {
    .goal-section-text h3 {
        font-size: 2.25rem;
    }
}

.goal-section-text .emotional-line {
    color: var(--highlight);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}

.goal-section-text .description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .75rem;
}

.feature-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: .125rem;
    flex-shrink: 0;
}

.feature-list li span {
    color: hsla(220, 20%, 14%, .8);
    font-size: .875rem;
}

/* ---------- Team Carousel ---------- */
.team-section {
    padding: 5rem 0 7rem;
    background: hsla(40, 15%, 94%, .5);
}

@media (min-width: 768px) {
    .team-section {
        padding: 7rem 0;
    }
}

.team-section-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.team-header {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .team-header {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
}

.team-header-text {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .team-header-text {
        width: 320px;
    }
}

.team-header-text .stage-label {
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.team-header-text h2 {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .team-header-text h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .team-header-text h2 {
        font-size: 3rem;
    }
}

.team-header-text p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.team-nav-btns {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.team-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.team-nav-btn.prev {
    border: 1px solid var(--border);
    color: var(--foreground);
}

.team-nav-btn.prev:hover {
    background: var(--muted);
}

.team-nav-btn.next {
    background: var(--primary);
    color: var(--primary-foreground);
}

.team-nav-btn.next:hover {
    opacity: .9;
}

.team-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.team-carousel-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.team-card {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-card);
    margin: 0 .625rem;
}

.team-card-photo {
    width: 100%;
    overflow: hidden;
    background: var(--muted);
    aspect-ratio: auto;
    height: auto;
}

.team-card-photo img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
    display: block;
    transition: transform .5s;
}

.team-card:hover .team-card-photo img {
    transform: scale(1.05);
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-content .name {
    font-weight: 600;
    color: var(--foreground);
}

.team-card-content .role {
    font-size: .75rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: .125rem;
}

.team-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 2.5rem;
}

/* ---------- Feature Showcase (Goal Pages) ---------- */
.feature-showcase {
    position: relative;
}

.feature-showcase-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 1.5rem;
}

.showcase-heading {
    text-align: center;
    margin-bottom: .5rem;
}

.showcase-heading.hero-mode {
    margin-top: -25px;
}

.showcase-heading .stage-label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .75rem;
    display: block;
}

.showcase-heading h1 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1;
    letter-spacing: -.02em;
}

@media (min-width: 768px) {
    .showcase-heading h1 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .showcase-heading h1 {
        font-size: 3rem;
    }
}

.showcase-heading .emotional-line {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 1.125rem;
    font-style: italic;
    margin-top: .5rem;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .showcase-content {
        flex-direction: row;
        gap: 4rem;
    }
}

.showcase-accordion {
    width: 100%;
}

@media (min-width: 1024px) {
    .showcase-accordion {
        width: 50%;
    }
}

.showcase-footnote {
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 28rem;
}

.showcase-item {
    border-left: 4px solid var(--muted);
    transition: border-color .5s;
}

.showcase-item.active {
    border-left-color: var(--primary);
}

.showcase-item-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem .5rem 1rem 1.5rem;
    text-align: left;
}

.showcase-item-btn h3 {
    font-size: 1rem;
    font-weight: 600;
    transition: color .5s;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .showcase-item-btn h3 {
        font-size: 1.125rem;
    }
}

.showcase-item.active .showcase-item-btn h3 {
    color: var(--foreground);
}

.showcase-item-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
    transition: transform .5s;
    flex-shrink: 0;
}

.showcase-item.active .showcase-item-btn svg {
    transform: rotate(180deg);
}

.showcase-item-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .7s cubic-bezier(.22, 1, .36, 1);
}

.showcase-item.active .showcase-item-desc {
    max-height: 500px;
    opacity: 1;
}

.showcase-item-desc p {
    padding: 0 1rem 1.25rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: .75rem;
}

@media (min-width: 768px) {
    .showcase-item-desc p {
        font-size: .875rem;
    }
}

.showcase-cta {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
}

.showcase-phones {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .showcase-phones {
        width: 50%;
    }
}

.phone-stack {
    position: relative;
    width: 220px;
    aspect-ratio: 9/19;
    margin-top: -10px;
}

@media (min-width: 768px) {
    .phone-stack {
        width: 260px;
    }
}

.phone-stack-card {
    position: absolute;
    inset: 0;
    transition: all .8s cubic-bezier(.22, 1, .36, 1);
    opacity: .4;
    transform: translateX(-55px) rotate(-5deg) scale(.88);
    z-index: 1;
}

.phone-stack-card.active {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
    z-index: 3;
}

.phone-stack-card.active ~ .phone-stack-card {
    opacity: .55;
    transform: translateX(55px) rotate(5deg) scale(.88);
    z-index: 2;
}

.phone-stack-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .15));
}

.showcase-arrow {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}

.showcase-arrow-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: hsla(220, 10%, 46%, .6);
    font-weight: 500;
    transition: color .3s;
}

.showcase-arrow:hover .showcase-arrow-label {
    color: hsla(174, 100%, 47%, .7);
}

.showcase-arrow-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid hsla(40, 15%, 90%, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(220, 10%, 46%, .5);
    transition: all .3s;
}

.showcase-arrow:hover .showcase-arrow-circle {
    border-color: hsla(174, 100%, 47%, .5);
    color: var(--primary);
    transform: scale(1.1);
}

.showcase-arrow-circle svg {
    width: 1rem;
    height: 1rem;
}

/* ---------- Alternating Features ---------- */
.alternating-section {
    padding: 4rem 0 6rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .alternating-section {
        padding: 6rem 0;
    }
}

.alternating-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .alternating-inner {
        flex-direction: row;
        gap: 5rem;
    }

    .alternating-inner.reverse {
        flex-direction: row-reverse;
    }
}

.alternating-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .alternating-image {
        width: 50%;
    }
}

.alternating-image .img-container {
    position: relative;
    overflow: hidden;
}

.alternating-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform .7s ease-out;
}

@media (min-width: 768px) {
    .alternating-image img {
        height: 460px;
    }
}

.alternating-image .img-container:hover img {
    transform: scale(1.04);
}

.alternating-image .accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0;
    transition: width .7s ease-out;
}

.alternating-image .img-container:hover .accent-line {
    width: 100%;
}

.alternating-text {
    width: 100%;
}

@media (min-width: 1024px) {
    .alternating-text {
        width: 50%;
    }
}

.alternating-text .stage-label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .75rem;
    display: inline-block;
}

.alternating-text h3 {
    font-size: 1.875rem;
    margin-top: .25rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -.02em;
}

@media (min-width: 768px) {
    .alternating-text h3 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .alternating-text h3 {
        font-size: 3rem;
    }
}

.alternating-text .alt-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .alternating-text .alt-description {
        font-size: 1.125rem;
    }
}

.alternating-text .index-number {
    margin-top: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: hsla(174, 100%, 47%, .15);
    line-height: 1;
    user-select: none;
    font-variant-numeric: tabular-nums;
}

/* Reveal Animations */
.reveal-from-left,
.reveal-from-right,
.reveal-img,
.reveal-text {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-from-left {
    transform: translateX(-48px);
}

.reveal-from-right {
    transform: translateX(48px);
}

.reveal-text {
    transition-delay: .12s;
}

.reveal-from-left.visible,
.reveal-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--border);
    background: hsla(40, 15%, 94%, .3);
    padding: 4rem 0;
}

.footer-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand p {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 20rem;
    margin-top: 1rem;
}

.footer-brand img {
    height: 2.5rem;
    width: auto;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: .25rem;
    margin-top: 1rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: color .2s;
}

.footer-social-links a:hover {
    color: var(--foreground);
}

.footer-social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links h4,
.footer-company h4 {
    font-size: .875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    font-size: .875rem;
    color: var(--muted-foreground);
    margin-bottom: .75rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

.footer-company .company-info {
    font-size: .875rem;
    color: var(--muted-foreground);
}

.footer-company .info-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .75rem;
}

.footer-company .info-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--highlight);
    margin-top: .125rem;
    flex-shrink: 0;
}

.footer-company .reg-number {
    padding-left: 1.5rem;
}

.footer-bottom {
    max-width: 80rem;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom .copyright {
    font-size: .75rem;
    color: var(--muted-foreground);
}

.footer-bottom .lang-selector {
    font-size: .75rem;
    line-height: 1rem;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    border-radius: .25rem;
    padding: .25rem .5rem;
}

.footer-bottom .lang-selector img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .15em 0 0;
    vertical-align: -.1em;
}

/* ---------- Accordion ---------- */
.accordion-section {
    padding: 5rem 0 7rem;
}

.accordion-section.bg-secondary-30 {
    background: hsla(40, 15%, 94%, .3);
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .accordion-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.accordion-grid.reverse > div:first-child {
    order: 1;
}

@media (min-width: 1024px) {
    .accordion-grid.reverse > div:first-child {
        order: 2;
    }

    .accordion-grid.reverse > div:last-child {
        order: 1;
    }
}

.accordion-image {
    overflow: hidden;
    border-radius: 1rem;
}

.accordion-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform .7s ease-out;
}

.accordion-image:hover img {
    transform: scale(1.05);
}

.features-accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    text-align: left;
    transition: color .2s;
}

.accordion-trigger:hover {
    color: var(--primary);
}

.accordion-trigger-inner {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.accordion-icon-box {
    width: 2rem;
    height: 2rem;
    border-radius: .5rem;
    background: hsla(174, 100%, 47%, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.accordion-title {
    font-weight: 500;
}

.accordion-chevron {
    transition: transform .3s;
    flex-shrink: 0;
    color: var(--muted-foreground);
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}

.accordion-content p {
    padding: 0 0 1rem 2.75rem;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.6;
}

.accordion-item.open .accordion-content {
    max-height: 10rem;
}

/* ---------- One Platform Grid ---------- */
.one-platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .one-platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.one-platform-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
    border: 1px solid hsla(40, 15%, 90%, .6);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: var(--card);
}

.one-platform-card h3 {
    font-weight: 600;
    font-size: .9375rem;
}

/* ---------- Pricing Status Banners ---------- */
.pricing-status-banner {
    display: flex;
    align-items: center;
    gap: .75rem;
    max-width: 40rem;
    margin: 6rem auto 0;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: .875rem;
    line-height: 1.5;
}

.pricing-status-banner strong {
    display: block;
    font-weight: 600;
}

.pricing-status-banner span {
    color: var(--muted-foreground);
}

.pricing-status-banner svg {
    flex-shrink: 0;
}

.pricing-status-success {
    background: hsla(152, 69%, 47%, .1);
    border: 1px solid hsla(152, 69%, 47%, .3);
    color: hsl(152, 69%, 31%);
}

.pricing-status-cancelled {
    background: hsla(0, 84%, 60%, .08);
    border: 1px solid hsla(0, 84%, 60%, .25);
    color: hsl(0, 60%, 45%);
}

/* ---------- Pricing Page ---------- */
.pricing-hero {
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .pricing-hero {
        padding-top: 9rem;
        padding-bottom: 3.5rem;
    }
}

.pricing-hero h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.pricing-hero > p {
    color: var(--muted-foreground);
    max-width: 28rem;
    margin: 0 auto .75rem;
    font-size: clamp(.8125rem, 1.2vw, 1rem);
}

.pricing-hero > p:last-of-type {
    margin-bottom: 2rem;
}

.pricing-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: .75rem;
}

.pricing-toggle {
    display: inline-flex;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: .25rem;
}

.pricing-toggle-btn {
    padding: .5rem 1rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: .25rem;
}

@media (min-width: 640px) {
    .pricing-toggle-btn {
        padding: .5rem 1.25rem;
        font-size: .875rem;
    }
}

.pricing-toggle-btn:hover {
    color: var(--foreground);
}

.pricing-toggle-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
}

.pricing-badge {
    display: inline-block;
    border-radius: 9999px;
    border: 1px solid hsla(174, 100%, 47%, .3);
    background: hsla(174, 100%, 47%, .05);
    padding: .25rem 1rem;
    font-size: .6875rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .02em;
    margin-bottom: 2rem;
}

.pricing-save-label {
    margin-top: .375rem;
    font-size: .625rem;
    font-weight: 600;
    color: var(--primary);
    align-self: flex-end;
    margin-right: .25rem;
}

.pricing-cards {
    padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
    .pricing-cards {
        padding-bottom: 5rem;
    }
}

.pricing-cards-grid {
    max-width: 56rem;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

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

@media (min-width: 640px) {
    .pricing-cards-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-cards-grid.three-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-cards-grid.one-col {
    max-width: 24rem;
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-card);
}

.pricing-card.popular {
    border-color: hsla(174, 100%, 47%, .4);
    box-shadow: 0 0 20px -6px hsla(174, 100%, 47%, .2);
}

.pricing-popular-badge {
    position: absolute;
    top: -.625rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: .625rem;
    font-weight: 700;
    padding: .125rem .75rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: .5rem;
}

.pricing-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: .5rem;
    background: hsla(174, 100%, 47%, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-card-sub {
    font-size: .6875rem;
    color: var(--muted-foreground);
}

.pricing-card-desc {
    font-size: .75rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-card-price {
    margin-bottom: .125rem;
}

.price-amount {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--foreground);
}

.price-period {
    font-size: .75rem;
    color: var(--muted-foreground);
    margin-left: .25rem;
}

.pricing-card-savings {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .25rem;
}

.pricing-card-seats {
    font-size: .6875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .75rem;
    color: var(--foreground);
    line-height: 1.6;
}

.pricing-features li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: .125rem;
}

.pricing-subscribe-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* ---------- Corporate Section ---------- */
.corp-section-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.corp-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.corp-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: .75rem;
}

.corp-header p {
    font-size: .9375rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto;
}

.corp-tabs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--secondary);
    border-radius: 1rem;
    padding: .25rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.corp-tab-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    padding: .75rem .5rem;
    border-radius: .75rem;
    font-size: .75rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    line-height: 1.3;
}

.corp-tab-trigger:hover {
    color: var(--foreground);
}

.corp-tab-trigger.active {
    background: var(--card);
    color: var(--foreground);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.corp-tab-trigger svg {
    flex-shrink: 0;
    display: none;
}

@media (min-width: 640px) {
    .corp-tab-trigger {
        font-size: .875rem;
        padding: .75rem 1rem;
    }

    .corp-tab-trigger svg {
        display: inline;
    }
}

.corp-card {
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.5rem 2rem;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.corp-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.corp-card-desc {
    font-size: .875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.corp-hint-box {
    font-size: .75rem;
    background: var(--secondary);
    border-radius: .75rem;
    padding: .75rem;
    margin-bottom: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.corp-input-stack {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.corp-discount-applied {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: .75rem;
    background: hsla(174, 100%, 47%, .08);
}

.corp-discount-price {
    font-size: .875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0;
}

.corp-discount-price strong {
    color: var(--primary);
}

.corp-input-row {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
}

.corp-input {
    flex: 1;
    height: 2.75rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 0 1rem;
    font-size: .875rem;
    color: var(--foreground);
    font-family: inherit;
    transition: border-color .2s;
}

.corp-input:focus {
    outline: none;
    border-color: var(--primary);
}

.corp-input::placeholder {
    color: var(--muted-foreground);
}

.corp-input-btn {
    flex-shrink: 0;
    font-size: .875rem;
    padding: .5rem 1.25rem;
    border-radius: .75rem;
}

.corp-discount-result {
    margin-top: .5rem;
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
}

.corp-discount-result.valid {
    color: var(--primary);
}

.corp-discount-result.invalid {
    color: var(--destructive);
}

.corp-discount-result svg {
    flex-shrink: 0;
}

.corp-seat-selector {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.corp-seat-btn {
    padding: .5rem 1rem;
    border-radius: .75rem;
    font-size: .8125rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
    transition: all .2s;
    cursor: pointer;
}

.corp-seat-btn:hover {
    border-color: var(--primary);
}

.corp-seat-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.corp-seat-custom {
    width: 5rem;
    height: 2.25rem;
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 0 .75rem;
    font-size: .8125rem;
    color: var(--foreground);
    font-family: inherit;
}

.corp-seat-custom:focus {
    outline: none;
    border-color: var(--primary);
}

.corp-block-summary {
    background: var(--secondary);
    border-radius: .75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.corp-block-detail {
    font-size: .8125rem;
    color: var(--muted-foreground);
    margin-bottom: .25rem !important;
    text-align: left !important;
}

.corp-block-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin: 0 !important;
    text-align: left !important;
}

.corp-block-period {
    font-size: .8125rem;
    font-weight: 400;
    color: var(--muted-foreground);
}

/* ---------- Pricing FAQ ---------- */
.pricing-faq-section {
    padding: 3.5rem 0;
}

.pricing-faq-heading {
    margin-bottom: 2rem;
}

.pricing-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pricing-faq-item {
    border-radius: .75rem;
    border: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
    transition: box-shadow .2s;
}

.pricing-faq-item:hover {
    box-shadow: var(--shadow-soft);
}

.pricing-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .875rem 1.25rem;
    text-align: left;
}

.pricing-faq-trigger span {
    font-weight: 600;
    font-size: .875rem;
    color: var(--foreground);
    padding-right: .75rem;
}

.pricing-faq-trigger .accordion-chevron {
    color: var(--muted-foreground);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-fade-in-up {
    animation: fadeInUp .7s ease-out both;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease-out, transform .7s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Slick Overrides ---------- */
.slick-slider {
    position: relative;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
}

.slick-slide {
    height: auto;
}

.slick-slide > div {
    height: 100%;
}

.slick-dots {
    display: none !important;
}

.slick-arrow {
    display: none !important;
}

/* ---------- Responsive Helpers ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

.aspect-square {
    aspect-ratio: 1;
}

.aspect-3-4 {
    aspect-ratio: 3/4;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: hsla(174, 100%, 47%, .1);
}

.icon-box svg {
    color: var(--primary);
}

/* Pricing page: push content below fixed header */
.pricing-page {
    padding-top: 80px;
}

/* Checkout return banners */
.pricing-notice {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.pricing-notice--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.pricing-notice--info {
    background: #f0f9ff;
    color: #0c4a6e;
    border: 1px solid #bae6fd;
}

.pricing-notice strong {
    font-weight: 600;
}

/* ---------- Pricing Subsection (shared: Dormant, App Store) ---------- */
.pricing-subsection-title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}

.pricing-subsection-desc {
    font-size: .9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 28rem;
    margin: 0 auto .75rem;
}

/* ---------- Dormant Section ---------- */
.pricing-dormant-section {
    padding: 3.5rem 0;
    text-align: center;
}

.pricing-dormant-inner {
    max-width: 28rem;
    margin: 0 auto;
}

.pricing-dormant-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: .5rem;
}

/* ---------- App Store Section ---------- */
.pricing-appstore-section {
    padding: 3.5rem 0;
    text-align: center;
}

.pricing-appstore-inner {
    max-width: 28rem;
    margin: 0 auto;
}

.pricing-appstore-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    background: hsla(174, 100%, 47%, .1);
    color: var(--primary);
    margin: 0 auto 1rem;
}

.pricing-appstore-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.pricing-appstore-desc {
    font-size: .9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pricing-appstore-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.pricing-appstore-note {
    font-size: .8125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Account & Data Deletion page */
.deletion-page {
    background: var(--background);
}

.deletion-hero {
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .deletion-hero {
        padding-top: 10rem;
        padding-bottom: 5rem;
    }
}

.deletion-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .75rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 1rem;
}

.deletion-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .deletion-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .deletion-title {
        font-size: 3.75rem;
    }
}

.deletion-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .deletion-subtitle {
        font-size: 1.25rem;
    }
}

.deletion-body {
    padding-bottom: 6rem;
}

.deletion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .deletion-grid {
        grid-template-columns: 3fr 2fr;
        gap: 4rem;
    }
}

.deletion-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .deletion-card {
        padding: 2.5rem;
    }
}

.deletion-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.deletion-field {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.deletion-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--foreground);
}

.deletion-label-muted {
    font-weight: 400;
    color: var(--muted-foreground);
}

.deletion-input,
.deletion-textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .875rem;
    color: var(--foreground);
    background: var(--background);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.deletion-textarea {
    resize: none;
    min-height: 6rem;
}

.deletion-input:focus,
.deletion-textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px hsla(174, 100%, 47%, 0.15);
}

.deletion-submit {
    width: 100%;
    font-size: 1rem;
    padding: .875rem 2rem;
}

.deletion-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.deletion-consent {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border: 1px solid var(--border);
    border-radius: .75rem;
    background: var(--background);
    padding: 1rem;
    font-size: .875rem;
    color: var(--foreground);
    line-height: 1.625;
    cursor: pointer;
}

.deletion-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    margin-top: .15rem;
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    border: 1.5px solid hsla(174, 100%, 47%, 0.55);
    border-radius: 50%;
    background: var(--card);
    cursor: pointer;
    position: relative;
    transition: background-color .15s ease, border-color .15s ease;
}

.deletion-consent input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.deletion-consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: .28rem;
    height: .52rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.deletion-status {
    font-size: .875rem;
    line-height: 1.5;
    padding: .75rem 1rem;
    border-radius: var(--radius);
}

.deletion-status-info {
    background: hsla(174, 100%, 47%, 0.1);
    color: var(--highlight);
}

.deletion-status-error {
    background: hsla(0, 84%, 60%, 0.1);
    color: var(--destructive);
}

.deletion-note {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: .75rem;
    background: hsla(40, 10%, 93%, 0.3);
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

.deletion-note a {
    color: var(--primary);
    font-weight: 500;
}

.deletion-note a:hover {
    text-decoration: underline;
}

.deletion-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.deletion-info-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.deletion-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: .75rem;
    background: hsla(174, 100%, 47%, 0.1);
    color: var(--highlight);
}

.deletion-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: .5rem;
}

.deletion-info-text {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

.deletion-form[hidden],
.deletion-success[hidden] {
    display: none;
}

.deletion-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 4rem 0;
}

.deletion-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: hsla(174, 100%, 47%, 0.1);
    color: var(--highlight);
}

.deletion-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.deletion-success-text {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
    max-width: 28rem;
    margin: 0 auto;
}
