/* =====================================================
   TopTop: Games & Chat - Pastel Dream Design System
   ===================================================== */

/* --- CSS Variables & Reset --- */
:root {
    --color-primary: #a8d8ea;
    --color-primary-light: #c8ecf8;
    --color-primary-dark: #7bc0d8;
    --color-secondary: #aa96da;
    --color-secondary-light: #c8bce8;
    --color-secondary-dark: #8a72c8;
    --color-accent: #fcbad3;
    --color-accent-light: #fdd8e6;
    --color-accent-dark: #f08baf;

    --color-bg: #faf7ff;
    --color-bg-alt: #f3eeff;
    --color-bg-card: #ffffff;
    --color-bg-dark: #2d2640;
    --color-bg-dark-alt: #3a3050;

    --color-text: #3d3556;
    --color-text-light: #6b6280;
    --color-text-lighter: #9990a8;
    --color-text-on-dark: #e8e4f0;
    --color-text-white: #ffffff;

    --color-success: #7dd3a8;
    --color-error: #f08baf;
    --color-warning: #f5d08a;

    --font-display: 'Fredoka', 'Quicksand', sans-serif;
    --font-heading: 'Quicksand', 'Nunito', sans-serif;
    --font-body: 'Nunito', 'Quicksand', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(170, 150, 218, 0.08);
    --shadow-md: 0 4px 20px rgba(170, 150, 218, 0.12);
    --shadow-lg: 0 8px 40px rgba(170, 150, 218, 0.16);
    --shadow-xl: 0 16px 60px rgba(170, 150, 218, 0.2);
    --shadow-glow-primary: 0 4px 30px rgba(168, 216, 234, 0.35);
    --shadow-glow-secondary: 0 4px 30px rgba(170, 150, 218, 0.35);
    --shadow-glow-accent: 0 4px 30px rgba(252, 186, 211, 0.35);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

ul {
    list-style: none;
}

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

input {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; }
    to { opacity: 1; max-height: 400px; padding-top: 16px; padding-bottom: 20px; }
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(125, 211, 168, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(125, 211, 168, 0); }
}

@keyframes shapeDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(5deg); }
    50% { transform: translate(-10px, -25px) rotate(-3deg); }
    75% { transform: translate(15px, -10px) rotate(7deg); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-bg-card);
    border-top: 2px solid var(--color-primary-light);
    box-shadow: 0 -8px 40px rgba(170, 150, 218, 0.15);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-secondary);
}

.btn-cookie-necessary {
    background: var(--color-bg-alt);
    color: var(--color-text);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    border: 2px solid var(--color-secondary-light);
    cursor: pointer;
}

.btn-cookie-necessary:hover {
    background: var(--color-secondary-light);
    color: var(--color-text);
}

.btn-cookie-settings {
    background: none;
    color: var(--color-text-light);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-cookie-settings:hover {
    color: var(--color-secondary-dark);
}

.cookie-details {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 20px;
}

.cookie-detail-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-toggle input {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background: #d8d3e3;
    border-radius: 12px;
    position: relative;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition-fast);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.cookie-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}

.cookie-toggle input:checked + .toggle-slider::after {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
}

.toggle-label {
    color: var(--color-text);
    font-weight: 600;
}

.toggle-label small {
    color: var(--color-text-lighter);
    font-weight: 400;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(250, 247, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(250, 247, 255, 0.95);
    box-shadow: var(--shadow-md);
    height: 68px;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-mark {
    flex-shrink: 0;
    transition: transform var(--transition-bounce);
}

.logo-link:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 6px;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary-dark);
    background: rgba(170, 150, 218, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-glow-secondary);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(170, 150, 218, 0.4);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 247, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--color-secondary-light);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(170, 150, 218, 0.1);
    color: var(--color-secondary-dark);
}

.mobile-nav-link.cta {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: #fff;
    text-align: center;
    margin-top: 8px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-glow-secondary);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(170, 150, 218, 0.45);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-bg-card);
    color: var(--color-secondary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-secondary-light);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    color: var(--color-secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background: linear-gradient(160deg, #f3eeff 0%, #faf7ff 30%, #e8f6fc 60%, #fef0f5 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-light), transparent);
    top: -50px;
    right: -50px;
    animation: shapeDrift 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-accent-light), transparent);
    bottom: 20%;
    left: -30px;
    animation: shapeDrift 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-secondary-light), transparent);
    top: 30%;
    left: 15%;
    animation: shapeDrift 18s ease-in-out infinite 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    top: 60%;
    right: 20%;
    animation: shapeDrift 22s ease-in-out infinite 1s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--color-accent), transparent);
    top: 15%;
    left: 40%;
    animation: shapeDrift 15s ease-in-out infinite 3s;
    opacity: 0.3;
}

.shape-6 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 216, 234, 0.2), transparent);
    bottom: -80px;
    right: 30%;
    animation: shapeDrift 28s ease-in-out infinite 4s;
}

.shape-7 {
    width: 60px;
    height: 60px;
    background: var(--color-secondary-light);
    top: 20%;
    right: 35%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    animation: floatSlow 8s ease-in-out infinite;
    opacity: 0.25;
}

.shape-8 {
    width: 40px;
    height: 40px;
    background: var(--color-accent-light);
    bottom: 30%;
    left: 25%;
    border-radius: var(--radius-sm);
    transform: rotate(30deg);
    animation: floatSlow 10s ease-in-out infinite 1s;
    opacity: 0.3;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(252, 186, 211, 0.15);
    border: 1px solid rgba(252, 186, 211, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.45s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-lighter);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-secondary-light), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInLeft 0.8s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    width: 320px;
    max-width: 100%;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(170, 150, 218, 0.3), rgba(252, 186, 211, 0.2), transparent);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-phone-frame {
    position: relative;
    width: 280px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(170, 150, 218, 0.1);
    overflow: hidden;
    z-index: 2;
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--color-bg);
    border-radius: 0 0 16px 16px;
    margin: -12px auto 8px;
    position: relative;
    z-index: 3;
}

.hero-screenshot {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    z-index: 3;
}

.card-1 {
    top: 15%;
    left: -40px;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    right: -50px;
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: -30px;
    animation: float 7s ease-in-out infinite 2s;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* --- Social Proof Bar --- */
.social-proof-bar {
    background: #fff;
    padding: 32px 0;
    border-bottom: 1px solid rgba(170, 150, 218, 0.08);
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.proof-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.proof-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(170, 150, 218, 0.1);
    border-radius: var(--radius-sm);
}

.proof-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.proof-text span {
    font-size: 13px;
    color: var(--color-text-lighter);
}

/* --- Section Shared Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(170, 150, 218, 0.12), rgba(252, 186, 211, 0.12));
    border: 1px solid rgba(170, 150, 218, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- About / Features Section --- */
.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(168, 216, 234, 0.1), transparent);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary-light);
}

.feature-card:nth-child(2) .feature-card-bg {
    background: radial-gradient(circle at top right, rgba(170, 150, 218, 0.1), transparent);
}

.feature-card:nth-child(3) .feature-card-bg {
    background: radial-gradient(circle at top right, rgba(252, 186, 211, 0.1), transparent);
}

.feature-card-large {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.08), rgba(170, 150, 218, 0.08));
    border-color: rgba(170, 150, 218, 0.15);
}

.feature-icon-wrap {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
}

/* --- App Showcase Section --- */
.app-showcase-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.app-icon-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(170, 150, 218, 0.25), rgba(252, 186, 211, 0.15), transparent);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse 5s ease-in-out infinite;
}

.app-icon-img {
    width: 200px;
    height: 200px;
    border-radius: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-bounce);
}

.app-icon-showcase:hover .app-icon-img {
    transform: rotate(-5deg) scale(1.05);
}

.app-icon-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 3px dashed rgba(170, 150, 218, 0.2);
    border-radius: 56px;
    animation: spin 30s linear infinite;
}

.app-info-block p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.check-list {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.check-list li svg {
    flex-shrink: 0;
}

/* --- Screenshots Section --- */
.screenshots-section {
    padding: 100px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.screenshots-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-slide {
    min-width: calc(50% - 12px);
    flex-shrink: 0;
}

.screenshot-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-card);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-base);
}

.screenshot-frame:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.screenshot-frame img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

.screenshot-caption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-top: 14px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 2px solid var(--color-secondary-light);
    border-radius: 50%;
    color: var(--color-secondary-dark);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-secondary-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    transform: scale(1.2);
    box-shadow: var(--shadow-glow-secondary);
}

/* --- Community / Testimonials --- */
.community-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    padding: 28px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--color-text-lighter);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
}

/* Live Activity Feed */
.live-activity {
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.08), rgba(170, 150, 218, 0.08));
    border: 1px solid rgba(170, 150, 218, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
}

.live-dot {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.live-activity h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    padding-left: 24px;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow: hidden;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    font-size: 14px;
    animation: fadeInUp 0.4s ease both;
}

.activity-user {
    font-weight: 700;
    color: var(--color-secondary-dark);
}

.activity-action {
    color: var(--color-text-light);
    flex: 1;
}

.activity-time {
    font-size: 12px;
    color: var(--color-text-lighter);
    white-space: nowrap;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(170, 150, 218, 0.1);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-secondary-light);
}

.faq-item.open {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--color-secondary-dark);
}

.faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

/* --- Registration Section --- */
.registration-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
    position: relative;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reg-info {
    padding-top: 20px;
}

.reg-info p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.reg-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Form Card */
.form-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.form-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.optional {
    color: var(--color-text-lighter);
    font-weight: 400;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap svg {
    position: absolute;
    left: 16px;
    pointer-events: none;
    z-index: 1;
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--color-bg);
    border: 2px solid rgba(170, 150, 218, 0.15);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.input-wrap input::placeholder {
    color: var(--color-text-lighter);
}

.input-wrap input:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(170, 150, 218, 0.1);
}

.input-wrap input.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(240, 139, 175, 0.1);
}

.field-error {
    display: block;
    font-size: 13px;
    color: var(--color-error);
    margin-top: 6px;
    min-height: 18px;
}

/* Checkbox styling */
.checkbox-group {
    margin-bottom: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.checkbox-label input {
    display: none;
}

.custom-checkbox {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-secondary-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.custom-checkbox svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .custom-checkbox {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-color: var(--color-secondary);
}

.checkbox-label input:checked + .custom-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

/* Submit button */
#submit-btn {
    margin-top: 8px;
}

.btn-loader .spinner {
    animation: spin 0.8s linear infinite;
}

/* Form Messages */
.form-message {
    text-align: center;
    padding: 32px 20px;
}

.form-message svg {
    margin: 0 auto 16px;
}

.form-message h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success h4 {
    color: var(--color-success);
}

.form-error h4 {
    color: var(--color-error);
}

.form-message p {
    font-size: 15px;
    color: var(--color-text-light);
}

.form-message a {
    color: var(--color-secondary-dark);
}

/* --- Trust & Security Section --- */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(170, 150, 218, 0.1);
    transition: all var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}

.footer-wave {
    position: absolute;
    top: -79px;
    left: 0;
    right: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-main {
    padding: 80px 0 40px;
}

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

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-link span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(232, 228, 240, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark-alt);
    border-radius: 50%;
    color: rgba(232, 228, 240, 0.7);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 14px;
    color: rgba(232, 228, 240, 0.7);
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--color-accent-light);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(232, 228, 240, 0.7);
}

.contact-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list li a {
    color: rgba(232, 228, 240, 0.7);
    word-break: break-all;
}

.contact-list li a:hover {
    color: var(--color-accent-light);
}

.footer-support-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 228, 240, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(232, 228, 240, 0.5);
}

.footer-age-notice {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Legal Pages --- */
.legal-content {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-content .container {
    max-width: 860px;
}

.legal-hero {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.1), rgba(170, 150, 218, 0.1));
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.legal-hero p {
    font-size: 16px;
    color: var(--color-text-light);
}

.legal-body {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(170, 150, 218, 0.08);
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary-light);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-body p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-body ul,
.legal-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-body li {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-body ol li {
    list-style-type: decimal;
}

.legal-body a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

.legal-body strong {
    color: var(--color-text);
}

.legal-body .highlight-box {
    background: linear-gradient(135deg, rgba(168, 216, 234, 0.1), rgba(170, 150, 218, 0.1));
    border: 1px solid rgba(170, 150, 218, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 20px 0;
}

.legal-body .highlight-box p {
    margin-bottom: 0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-column: span 2;
    }

    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

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

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

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .proof-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .main-nav {
        display: none;
    }

    .btn-header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-phone-frame {
        width: 240px;
    }

    .floating-card {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

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

    .feature-card-large {
        grid-column: span 1;
    }

    .screenshot-slide {
        min-width: calc(85% - 12px);
    }

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

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .proof-items {
        grid-template-columns: 1fr;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-detail-grid {
        flex-direction: column;
        gap: 12px;
    }

    .legal-body {
        padding: 28px 20px;
    }

    .legal-hero {
        padding: 40px 20px 30px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-section,
    .app-showcase-section,
    .screenshots-section,
    .community-section,
    .faq-section,
    .registration-section,
    .trust-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-phone-frame {
        width: 200px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .app-icon-img {
        width: 150px;
        height: 150px;
        border-radius: 36px;
    }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-color-scheme: dark) {
    /* Keeping light theme as primary for pastel dream aesthetic */
}

/* Print Styles */
@media print {
    .site-header,
    .cookie-banner,
    .hero-bg-shapes,
    .footer-wave,
    .mobile-menu {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .legal-body {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
