/* ========================================
   OneOnMe Design System
   Brand Colors, Typography, Components
   ======================================== */

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

:root {
    /* Brand Colors — Official Palette */
    --coral: #EE6C4D;
    --coral-dark: #d95a3c;
    --coral-light: #f39a84;
    --navy: #28343E;
    --navy-light: #3D5A80;
    --navy-lighter: #4d6f99;
    --teal: #00c9a7;
    --teal-dark: #00a98d;
    --teal-light: #33d4b8;
    --ice-blue: #98C1D9;
    --ice-blue-light: #E0FBFC;
    --ice-blue-dark: #7dafc8;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(242, 122, 82, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 72px;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
    line-height: 1.7;
}

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

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

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

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

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

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

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

.subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 640px;
    margin: var(--space-sm) auto 0;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--gray {
    background-color: var(--gray-50);
}

.section--navy {
    background-color: var(--navy);
    color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
    color: var(--white);
}

.section--navy p {
    color: var(--gray-300);
}

.section--ice {
    background: linear-gradient(180deg, var(--ice-blue-light) 0%, var(--white) 100%);
}

.section--coral {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
}

.section--coral h2,
.section--coral h3 {
    color: var(--white);
}

.section--coral p {
    color: rgba(255, 255, 255, 0.9);
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

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

.flex {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 1000;
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
}

.header__logo img {
    height: 40px;
    width: 40px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition-fast);
    position: relative;
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--coral);
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition-base);
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

.header__nav a.btn {
    color: var(--white);
}

.header__nav a.btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: var(--transition-base);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(242, 122, 82, 0.3);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 122, 82, 0.4);
}

.btn--teal {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 201, 167, 0.3);
}

.btn--teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.4);
}

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

.btn--outline:hover {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn--white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* App Store buttons */
.store-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    height: 48px;
    transition: transform var(--transition-fast);
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn img {
    height: 100%;
    width: auto;
}

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    cursor: default;
}

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

.card--clickable {
    cursor: pointer;
}

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

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.card__icon--coral {
    background: rgba(242, 122, 82, 0.1);
    color: var(--coral);
}

.card__icon--teal {
    background: rgba(0, 201, 167, 0.1);
    color: var(--teal);
}

.card__icon--navy {
    background: rgba(30, 45, 61, 0.1);
    color: var(--navy);
}

.card h3 {
    margin-bottom: var(--space-sm);
}

.card p {
    font-size: 0.95rem;
}

/* Feature card with image */
.card--feature {
    overflow: hidden;
    padding: 0;
}

.card--feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card--feature .card__body {
    padding: var(--space-lg);
}

/* Venue card */
.venue-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

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

.venue-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-card__body {
    padding: var(--space-lg);
}

.venue-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.venue-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xs);
}

.venue-card__location {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.venue-card__rating {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 600;
}

.venue-card__rating span {
    color: var(--warning);
}

.venue-card__type {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 0.25rem 0.75rem;
    background: var(--ice-blue-light);
    color: var(--navy-lighter);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* --- Photo Mosaic --- */
.photo-mosaic {
    overflow: hidden;
    margin-top: var(--space-xl);
}

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

.photo-mosaic__item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.photo-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.photo-mosaic__item:hover img {
    transform: scale(1.08);
}

.photo-mosaic__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 45, 61, 0.3) 100%);
    pointer-events: none;
}

/* --- Hero Section --- */
.hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    background:
        url('../images/arctic-bg.png') center bottom / 100% auto no-repeat,
        linear-gradient(180deg, var(--ice-blue-light) 0%, #c8e4f0 50%, #8cbdd4 100%);
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

.hero__content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: var(--space-md);
    font-size: 4rem;
    line-height: 1.15;
    white-space: nowrap;
}

.hero__tagline {
    display: block;
    white-space: nowrap;
}

.hero h1 .highlight {
    color: var(--coral);
}

.hero__subtitle {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow:
        0 1px 3px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4);
}

.hero p.section-label {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--navy);
}

/* Rotating words animation */
.rotating-words {
    display: inline-block;
    position: relative;
    color: var(--coral);
    min-width: 320px;
    text-align: center;
}

.rotating-words span {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    animation: rotateWord 9s linear infinite;
}

.rotating-words span:nth-child(2) {
    animation-delay: 3s;
}

.rotating-words span:nth-child(3) {
    animation-delay: 6s;
}

@keyframes rotateWord {

    0%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }

    3% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    33% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Stats bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    padding: var(--space-lg) 0;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
    font-weight: 500;
}

/* --- How It Works --- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.step[style*="display: flex"] .step__number,
.step[style*="display:flex"] .step__number {
    margin: 0;
}

.step__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.step h4 {
    margin-bottom: var(--space-sm);
}

.step p {
    font-size: 0.9rem;
}

/* Connector line between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: linear-gradient(90deg, var(--coral-light), var(--gray-200));
}

/* --- App Step (How It Works with phone mockups) --- */
.app-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.app-step:last-child {
    margin-bottom: 0;
}

.app-step--reverse {
    direction: rtl;
}

.app-step--reverse > * {
    direction: ltr;
}

.app-step__phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-step__phone img {
    max-width: 280px;
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.app-step__phone img:hover {
    transform: translateY(-4px);
}

.app-step__text {
    padding: var(--space-xl) 0;
}

.app-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.app-step__text h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
    color: var(--navy);
}

.app-step__text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 420px;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--coral);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: var(--space-md);
    transition: transform var(--transition-base);
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* --- Forms --- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(242, 122, 82, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* --- Search / Filter --- */
.search-bar {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-2xl);
}

.search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-primary);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--coral);
}

.filter-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.filter-tag {
    padding: 0.4rem 1rem;
    background: var(--ice-blue-light);
    border: 1.5px solid var(--ice-blue-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy-lighter);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--navy);
    color: var(--white);
}

.comparison-table th {
    padding: var(--space-lg);
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-900);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

.check,
.comparison-table td.check {
    color: var(--coral);
    font-weight: 700;
}

.cross,
.comparison-table td.cross {
    color: var(--gray-900);
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 40px;
    width: 40px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer__column h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.footer__column ul li {
    margin-bottom: var(--space-sm);
}

.footer__column ul li a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer__column ul li a:hover {
    color: var(--coral);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: var(--coral);
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-links a:hover {
    color: var(--coral);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--coral) 0%, #e85d3a 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/arctic-bg.png') center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto var(--space-2xl);
}

/* --- Blog Card --- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

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

.blog-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-blue-dark) 100%);
}

.blog-card__body {
    padding: var(--space-lg);
}

.blog-card__tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(242, 122, 82, 0.1);
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.blog-card__meta {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* --- Use Case Cards --- */
.usecase-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    cursor: default;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-100);
}

.usecase-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.usecase-card__emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.usecase-card__emoji i,
.usecase-card__emoji svg {
    width: 40px;
    height: 40px;
    color: var(--coral);
}

/* --- Lucide Icon Overrides --- */
.card__icon i,
.card__icon svg {
    width: 28px;
    height: 28px;
}

.step__icon i,
.step__icon svg {
    width: 40px;
    height: 40px;
    color: var(--coral);
}

.icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.icon-inline svg {
    width: 20px;
    height: 20px;
}

.icon-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-block svg {
    width: 48px;
    height: 48px;
    color: var(--coral);
}

.icon-block--sm svg {
    width: 32px;
    height: 32px;
}

.icon-block--lg svg {
    width: 56px;
    height: 56px;
}

/* Generic icon containers (div with font-size that originally held emojis) */
div[style*="font-size: 2.5rem"] > i[data-lucide],
div[style*="font-size: 2rem"] > i[data-lucide],
div[style*="font-size: 4rem"] > i[data-lucide] {
    display: block;
}

div[style*="font-size: 2.5rem"] svg,
div[style*="font-size: 2rem"] svg {
    width: 40px;
    height: 40px;
    color: var(--coral);
}

div[style*="font-size: 4rem"] svg {
    width: 56px;
    height: 56px;
    color: var(--coral);
}

span[style*="font-size: 1.5rem"] svg {
    width: 24px;
    height: 24px;
    color: var(--coral);
}

span[style*="font-size: 3rem"] svg {
    width: 48px;
    height: 48px;
    color: var(--navy);
}

/* Venue card image icons */
.venue-card__image i[data-lucide] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-card__image svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
}

.usecase-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.usecase-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* --- Testimonial --- */
.testimonial {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--coral);
}

.testimonial__text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.testimonial__author {
    font-weight: 600;
    color: var(--navy);
}

.testimonial__rating {
    color: var(--warning);
    margin-bottom: var(--space-sm);
}

/* --- Page Header (for inner pages) --- */
.page-header {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(180deg, var(--ice-blue-light) 0%, var(--white) 100%);
    text-align: center;
}

/* Photo background modifier */
.page-header--photo {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
}

.page-header--photo .page-header__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header--photo .page-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.page-header--photo .container {
    position: relative;
    z-index: 1;
}

.page-header--photo h1 {
    color: var(--white);
}

.page-header--photo .section-label {
    color: var(--coral-light);
}

.page-header--photo .subtitle {
    color: var(--gray-300);
}

/* Star icons for ratings */
.star-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    fill: var(--coral);
    stroke: none;
    color: var(--coral);
}

.testimonial__rating .star-icon {
    width: 18px;
    height: 18px;
    margin-right: 2px;
}

/* Arctic background modifier — opt-in per page */
.page-header--arctic {
    padding-bottom: 0;
    background: linear-gradient(180deg, var(--ice-blue-light) 0%, #c8e4f0 60%, #8cbdd4 100%);
    position: relative;
    overflow: hidden;
}

.page-header--arctic::after {
    content: '';
    display: block;
    width: 100%;
    height: 220px;
    background: url('../images/arctic-bg.png') center bottom / cover no-repeat;
    margin-top: var(--space-2xl);
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header .subtitle {
    max-width: 640px;
    margin: 0 auto;
}

/* --- Guide / Article Layout --- */
.article-layout {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
}

.article-layout h1 {
    margin-bottom: var(--space-lg);
}

.article-layout h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-100);
}

.article-layout p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.article-layout ul {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.article-layout ul li {
    margin-bottom: var(--space-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(242, 122, 82, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(242, 122, 82, 0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step:not(:last-child)::after {
        display: none;
    }

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

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

    .app-step {
        gap: var(--space-2xl);
    }

    .app-step__phone img {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 3rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .stats-bar {
        flex-direction: column;
        gap: var(--space-xl);
    }

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

    .photo-mosaic__item {
        aspect-ratio: 3 / 2;
    }

    .app-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .app-step--reverse {
        direction: ltr;
    }

    .app-step__text p {
        max-width: 100%;
    }

    .app-step__phone img {
        max-width: 220px;
    }

    .hero h1 {
        font-size: 2.4rem;
        white-space: normal;
        line-height: 1.3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .rotating-words {
        min-width: 200px;
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-group .btn {
        width: 100%;
    }

    .header {
        overflow: visible;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-lg);
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .header__nav.open {
        display: flex;
    }

    .header__nav a {
        font-size: 1.1rem;
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .header__nav a:last-child {
        border-bottom: none;
        margin-top: var(--space-md);
    }

    .header__nav .btn--sm {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }

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

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

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer__bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer__bottom-links a {
        padding: var(--space-xs) 0;
    }

    .search-bar {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--space-sm) var(--space-md);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

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

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .rotating-words {
        min-width: 170px;
        font-size: 2rem;
    }

    .photo-mosaic__grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: var(--space-lg);
    }

    .stat__number {
        font-size: 2rem;
    }

    .app-step__phone img {
        max-width: 200px;
    }
}