/* ============================================
   RAFT SURVIVAL - OCEAN NOMAD
   Cottagecore Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #6b705c;
    --color-primary-light: #8a8f7c;
    --color-primary-dark: #4a4e3d;
    --color-secondary: #fff8f0;
    --color-secondary-dark: #f5edd8;
    --color-accent: #cb997e;
    --color-accent-light: #ddb8a3;
    --color-accent-dark: #a77b62;
    --color-sage: #a5a58d;
    --color-cream: #fffcf2;
    --color-dusty-rose: #d4a5a5;
    --color-warm-brown: #8b7355;
    --color-lavender: #b5838d;
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-text-muted: #9a9a9a;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-border: #e0d8cc;
    --color-border-light: #f0ebe2;
    --color-error: #c1121f;
    --color-success: #588157;

    --font-display: 'Dancing Script', cursive;
    --font-heading: 'Lora', serif;
    --font-body: 'Nunito', sans-serif;

    --shadow-sm: 0 2px 8px rgba(107, 112, 92, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 112, 92, 0.12);
    --shadow-lg: 0 8px 32px rgba(107, 112, 92, 0.16);
    --shadow-xl: 0 16px 48px rgba(107, 112, 92, 0.2);
    --shadow-warm: 0 4px 20px rgba(203, 153, 126, 0.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.5s ease;

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

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    /* Subtle linen texture */
    background-image:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b705c' fill-opacity='0.03'%3E%3Cpath d='M0 0h1v1H0zM4 4h1v1H4zM8 0h1v1H8zM12 4h1v1h-1zM16 0h1v1h-1zM20 4h1v1h-1zM24 0h1v1h-1zM28 4h1v1h-1zM32 0h1v1h-1zM36 4h1v1h-1zM0 8h1v1H0zM4 12h1v1H4zM8 8h1v1H8zM12 12h1v1h-1zM16 8h1v1h-1zM20 12h1v1h-1zM24 8h1v1h-1zM28 12h1v1h-1zM32 8h1v1h-1zM36 12h1v1h-1zM0 16h1v1H0zM4 20h1v1H4zM8 16h1v1H8zM12 20h1v1h-1zM16 16h1v1h-1zM20 20h1v1h-1zM24 16h1v1h-1zM28 20h1v1h-1zM32 16h1v1h-1zM36 20h1v1h-1zM0 24h1v1H0zM4 28h1v1H4zM8 24h1v1H8zM12 28h1v1h-1zM16 24h1v1h-1zM20 28h1v1h-1zM24 24h1v1h-1zM28 28h1v1h-1zM32 24h1v1h-1zM36 28h1v1h-1zM0 32h1v1H0zM4 36h1v1H4zM8 32h1v1H8zM12 36h1v1h-1zM16 32h1v1h-1zM20 36h1v1h-1zM24 32h1v1h-1zM28 36h1v1h-1zM32 32h1v1h-1zM36 36h1v1h-1z'/%3E%3C/g%3E%3C/svg%3E");
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-text-light);
    text-decoration: underline;
    padding: 4px 8px;
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.logo-text sup {
    font-size: 0.5em;
    top: -0.6em;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(107, 112, 92, 0.06);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 22px;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-primary-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 240, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    padding: 8px 20px;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-link:hover {
    color: var(--color-accent);
}

.mobile-nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    padding: 12px 36px;
    font-size: 1.4rem;
    margin-top: 12px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b705c' fill-opacity='0.04'%3E%3Cpath d='M30 5c1.5 0 2.5 3 2.5 5s-1 5-2.5 5-2.5-3-2.5-5 1-5 2.5-5zM30 45c1.5 0 2.5 3 2.5 5s-1 5-2.5 5-2.5-3-2.5-5 1-5 2.5-5zM10 25c1.5 0 2.5 3 2.5 5s-1 5-2.5 5-2.5-3-2.5-5 1-5 2.5-5zM50 25c1.5 0 2.5 3 2.5 5s-1 5-2.5 5-2.5-3-2.5-5 1-5 2.5-5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 248, 240, 0.95) 0%,
        rgba(255, 252, 242, 0.8) 40%,
        rgba(203, 153, 126, 0.08) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-title sup {
    font-size: 0.35em;
    top: -1em;
}

.hero-subtitle-script {
    font-family: var(--font-display);
    font-size: 1.1em;
    color: var(--color-accent);
    display: block;
    margin-top: 4px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
    max-width: 480px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.trust-item svg {
    flex-shrink: 0;
}

/* Hero Image Block */
.hero-image-block {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--color-border-light);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-sage), var(--color-accent));
    z-index: -1;
    opacity: 0.4;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.hero-floating-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
    bottom: -20px;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-2 {
    top: -15px;
    right: -20px;
    animation-delay: 3s;
}

.float-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    display: block;
    line-height: 1.2;
}

.float-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Hero Botanical Decorations */
.hero-botanical {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-botanical-1 {
    bottom: 0;
    left: 20px;
    animation: sway 8s ease-in-out infinite;
}

.hero-botanical-2 {
    top: 120px;
    right: 40px;
    animation: sway 10s ease-in-out infinite reverse;
}

/* --- Social Proof Bar --- */
.social-proof-bar {
    background: var(--color-primary);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.social-proof-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='1' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.proof-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

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

.proof-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    line-height: 1.2;
}

.proof-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Section Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 12px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-accent-light);
}

.section-tag::before {
    right: calc(100% + 12px);
}

.section-tag::after {
    left: calc(100% + 12px);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-divider {
    margin-top: 8px;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.about-card-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-content {
    padding: 40px;
}

.about-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.about-card-content p {
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-card-small {
    padding: 32px;
    text-align: center;
}

.about-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px dashed var(--color-border);
    transition: all var(--transition-base);
}

.about-card:hover .about-card-icon {
    background: var(--color-accent-light);
    border-color: var(--color-accent);
    border-style: solid;
}

.about-card:hover .about-card-icon svg {
    stroke: var(--color-white);
}

.about-card-small h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.about-card-small p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-cream);
}

.gallery-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23cb997e' stroke-opacity='0.06' stroke-width='1'%3E%3Cpath d='M40 10 C45 20 50 25 40 35 C30 25 35 20 40 10z'/%3E%3Cpath d='M10 50 C15 60 20 65 10 75 C0 65 5 60 10 50z'/%3E%3Cpath d='M70 50 C75 60 80 65 70 75 C60 65 65 60 70 50z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-light);
}

.gallery-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gallery-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image-wrap img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 112, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-close {
    top: 24px;
    right: 24px;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    position: relative;
}

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

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-sage));
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px dashed var(--color-border);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--color-primary);
    border-style: solid;
    border-color: var(--color-primary);
    transform: rotate(8deg) scale(1.05);
}

.feature-card:hover .feature-icon-wrap svg {
    stroke: var(--color-white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Community Section --- */
.community-section {
    padding: 100px 0;
    position: relative;
    background: var(--color-cream);
}

.community-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b705c' fill-opacity='0.03'%3E%3Ccircle cx='25' cy='25' r='8'/%3E%3Ccircle cx='75' cy='75' r='8'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

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

.testimonial-card-featured {
    border-color: var(--color-accent-light);
    box-shadow: var(--shadow-warm);
    background: linear-gradient(135deg, var(--color-white), rgba(203, 153, 126, 0.05));
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary-dark);
    display: block;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* Live Feed */
.live-feed {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-light);
}

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

.live-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow: hidden;
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--color-secondary);
    font-size: 0.85rem;
    color: var(--color-text-light);
    animation: slideInLeft 0.5s ease both;
    border-left: 3px solid var(--color-accent-light);
}

.live-feed-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-feed-item-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-warm);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-accent);
}

.faq-item.active .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.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

/* --- Registration Section --- */
.registration-section {
    padding: 100px 0;
    position: relative;
    background: var(--color-cream);
    overflow: hidden;
}

.registration-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cb997e' fill-opacity='0.05'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5z'/%3E%3Cpath d='M10 35 Q15 45 10 55 Q5 45 10 35z'/%3E%3Cpath d='M50 35 Q55 45 50 55 Q45 45 50 35z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.registration-info .section-tag {
    text-align: left;
}

.registration-info .section-tag::before {
    display: none;
}

.registration-info .section-title {
    text-align: left;
    font-size: 2.4rem;
}

.registration-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-top: 16px;
    margin-bottom: 28px;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.registration-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.registration-benefits li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Registration Form */
.registration-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.registration-form-wrap::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: linear-gradient(135deg, var(--color-accent-light), transparent, var(--color-sage));
    z-index: -1;
    opacity: 0.3;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}

.optional {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-secondary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(203, 153, 126, 0.15);
}

.form-group input.error {
    border-color: var(--color-error);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: var(--color-error);
    margin-top: 4px;
    min-height: 1em;
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--color-text);
    font-weight: 400 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

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

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg) scale(0);
    transition: transform var(--transition-fast);
    position: absolute;
    top: 3px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 24px;
    animation: fadeIn 0.5s ease;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    margin: 16px 0 8px;
}

.form-success p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: rgba(193, 18, 31, 0.06);
    border-radius: var(--radius-sm);
    margin-top: 12px;
    animation: fadeIn 0.3s ease;
}

.form-error-message p {
    font-size: 0.88rem;
    color: var(--color-error);
}

/* Submit Button Loader */
.btn-loader {
    animation: spin 1s linear infinite;
}

/* --- Trust Section --- */
.trust-section {
    padding: 80px 0;
    position: relative;
}

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

.trust-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.trust-card svg {
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23fff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo-text sup {
    font-size: 0.5em;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-age-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--color-accent-light);
    font-size: 0.85rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 18px;
}

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

.footer-links a,
.footer-links span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    line-height: 1.5;
}

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

.footer-contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-links svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
}

.footer-bottom sup {
    font-size: 0.6em;
}

.footer-responsible {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    font-style: italic;
}

.footer-legal-links {
    margin-top: 12px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-sep {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* --- Cookie Consent --- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    animation: slideUp 0.5s ease;
}

.cookie-consent-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: 240px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 20px;
    border-top: 1px solid var(--color-border-light);
}

.cookie-setting-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.cookie-setting-item label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-left: 26px;
}

/* --- Legal Content (for legal pages) --- */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 60px) 24px 80px;
}

.legal-content .legal-hero {
    text-align: center;
    margin-bottom: 48px;
    padding: 48px 0;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.legal-content .legal-hero h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.legal-content .legal-hero p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.legal-body {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-border-light);
}

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

.legal-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 24px;
    margin-bottom: 10px;
}

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

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

.legal-body ul {
    list-style: disc;
}

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

.legal-body li {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 6px;
}

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

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

.legal-body .contact-box {
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 20px 0;
}

.legal-body .contact-box p {
    margin-bottom: 4px;
}

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

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

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

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

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

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

/* --- Scroll Reveal Base --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image-block {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-card-main {
        grid-template-columns: 1fr;
    }

    .about-card-image {
        max-height: 300px;
        overflow: hidden;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .registration-info .section-title,
    .registration-info .section-tag {
        text-align: center;
    }

    .registration-info .section-tag::before {
        display: block;
    }

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

    .registration-benefits {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

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

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

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-botanical {
        display: none;
    }

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

    .gallery-item-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .proof-items {
        gap: 20px;
    }

    .proof-divider {
        display: none;
    }

    .proof-number {
        font-size: 1.5rem;
    }

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

    .registration-form-wrap {
        padding: 28px 20px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .proof-items {
        flex-direction: column;
        gap: 16px;
    }
}

/* --- Print Styles --- */
@media print {
    .site-header,
    .cookie-consent,
    .back-to-top,
    .mobile-nav-overlay,
    .lightbox {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}