/* CSS Design System for Huizr Landing Page */

:root {
    /* Color Palette */
    --primary-hue: 18;
    --primary: hsl(var(--primary-hue), 74%, 41%); /* Terracotta #B84A1B */
    --primary-hover: hsl(var(--primary-hue), 74%, 33%);
    --primary-light: hsl(var(--primary-hue), 80%, 95%);
    
    --secondary-hue: 165;
    --secondary: hsl(var(--secondary-hue), 51%, 36%); /* Sage Green #2D8C73 */
    --secondary-hover: hsl(var(--secondary-hue), 51%, 28%);
    --secondary-light: hsl(var(--secondary-hue), 50%, 93%);
    
    --accent-orange: #D97706;
    --accent-blue: #3B82F6;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;
    --accent-teal: #14B8A6;
    
    /* Backgrounds */
    --bg-cream: #FDFBF7;
    --bg-white: #ffffff;
    --bg-beige: #F5ECE3;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    /* Text Colors */
    --text-dark: #3E3734;
    --text-muted: #7A6F6A;
    --text-light: #ffffff;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(70, 63, 60, 0.05);
    --shadow-md: 0 8px 20px rgba(70, 63, 60, 0.08);
    --shadow-lg: 0 16px 40px rgba(70, 63, 60, 0.12);
    --shadow-premium: 0 25px 60px -15px rgba(184, 74, 27, 0.15), 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50%;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(184, 74, 27, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 74, 27, 0.3);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--bg-beige);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.w-full {
    width: 100%;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(253, 251, 247, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(70, 63, 60, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.logo-text {
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Mobile dropdown menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--bg-beige);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(70, 63, 60, 0.03);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    background: radial-gradient(100% 100% at top right, var(--primary-light) 0%, var(--bg-cream) 60%);
    overflow: hidden;
}

.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.6;
    border-radius: var(--radius-round);
}

.gradient-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: rgba(45, 140, 115, 0.15); /* Sage green soft */
}

.gradient-2 {
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(184, 74, 27, 0.1); /* Terracotta soft */
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: var(--radius-round);
    animation: pulse 1.5s infinite;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 560px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.store-btn {
    display: flex;
    align-items: center;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.store-btn:hover {
    background-color: #2b2523;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.store-btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--bg-beige);
}

.store-btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--primary);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn-sub {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-btn-main {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar-stacked {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    border: 2px solid var(--bg-cream);
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: -8px;
}

.avatar-stacked:first-child {
    margin-left: 0;
}

.avatar-stacked:nth-child(2) { background-color: var(--secondary); }
.avatar-stacked:nth-child(3) { background-color: var(--accent-orange); }
.avatar-stacked:nth-child(4) { background-color: var(--accent-purple); }

.trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Floating visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.f-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.f-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
}

.f-dot.green { background-color: var(--secondary); }
.f-dot.orange { background-color: var(--accent-orange); }
.f-dot.red { background-color: var(--accent-red); }
.f-dot.purple { background-color: var(--accent-purple); }

.f-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.card-presence {
    top: 5%;
    left: -12%;
    width: 220px;
}

.f-member {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.f-member:last-child {
    margin-bottom: 0;
}

.f-avatar {
    width: 28px;
    height: 28px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.f-info {
    display: flex;
    flex-direction: column;
}

.f-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.f-status {
    font-size: 0.75rem;
}

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

.card-nagel {
    top: 52%;
    right: -12%;
    width: 240px;
}

.card-anytimer {
    bottom: 2%;
    left: -12%;
    width: 240px;
}

.nagel-alert {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nagel-emoji {
    font-size: 1.5rem;
}

.nagel-desc {
    font-size: 0.8rem;
    line-height: 1.4;
}

.nagel-reason {
    font-size: 0.75rem;
    color: var(--primary);
    font-style: italic;
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    border-radius: 44px;
    background-color: #1a1513;
    padding: 12px;
    box-shadow: var(--shadow-premium);
    position: relative;
    border: 4px solid #3e3734;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background-color: #1a1513;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* App Header UI */
.app-status-bar {
    height: 38px;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 8;
}

.app-status-icons {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
}

.app-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bg-beige);
    background-color: var(--bg-white);
}

.app-house-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-house-avatar {
    font-size: 1.25rem;
}

.app-house-name {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
}

.app-house-members {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.app-header-actions {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
}

.app-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* App Body UI */
.app-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-widget {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(70, 63, 60, 0.03);
}

.widget-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.status-button-group {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid var(--bg-beige);
    flex: 1;
    text-align: center;
}

.status-badge.active {
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-color: var(--secondary);
}

.status-badge:nth-child(2).active {
    background-color: #FEF3C7;
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.status-badge:nth-child(3).active {
    background-color: #DBEAFE;
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.mood-row-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mood-chip {
    padding: 4px 2px;
    font-size: 0.68rem;
    border-radius: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--bg-beige);
    color: var(--text-dark);
    text-align: center;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mood-chip.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.app-member-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-member-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-round);
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.avatar-circle.col-2 { background-color: var(--secondary); }
.avatar-circle.col-3 { background-color: var(--accent-orange); }
.avatar-circle.col-4 { background-color: var(--accent-purple); }
.avatar-circle.col-5 { background-color: var(--accent-blue); }

.app-member-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.member-name {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.member-status {
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 2px;
}

.status-thuis { color: var(--secondary); }
.status-weg { color: var(--accent-orange); }
.status-vakantie { color: var(--accent-blue); }

.app-melden-btn {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    background-color: var(--secondary-light);
    padding: 2px 8px;
    border-radius: 12px;
    cursor: pointer;
}

.empty-text-mini {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 6px 0;
}

/* App Tab Bar */
.app-tab-bar {
    height: 60px;
    border-top: 1px solid var(--bg-beige);
    background-color: var(--bg-white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 8px;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    gap: 3px;
    flex: 1;
}

.tab-item i {
    width: 18px;
    height: 18px;
}

.tab-item.active {
    color: var(--primary);
}

/* Float animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float-1 {
    animation: float 6s ease-in-out infinite;
}

.animate-float-2 {
    animation: float 8s ease-in-out infinite 1s;
}

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

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Features Grid */
.features-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--bg-beige);
    border-bottom: 1px solid var(--bg-beige);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(70, 63, 60, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bg-beige);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper i {
    width: 28px;
    height: 28px;
}

.feature-icon-wrapper.color-orange { background-color: var(--primary-light); color: var(--primary); }
.feature-icon-wrapper.color-green { background-color: var(--secondary-light); color: var(--secondary); }
.feature-icon-wrapper.color-blue { background-color: #DBEAFE; color: var(--accent-blue); }
.feature-icon-wrapper.color-red { background-color: #FEE2E2; color: var(--accent-red); }
.feature-icon-wrapper.color-purple { background-color: #F3E8FF; color: var(--accent-purple); }
.feature-icon-wrapper.color-teal { background-color: #CCFBF1; color: var(--accent-teal); }

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Preview Section */
.preview-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.preview-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selector-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.selector-btn:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.selector-btn.active {
    background-color: var(--bg-white);
    border-color: var(--bg-beige);
    box-shadow: var(--shadow-md);
}

.selector-btn i {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: var(--transition);
}

.selector-btn.active i {
    color: var(--primary);
}

.selector-btn h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.selector-btn p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.interactive-preview-visual {
    display: flex;
    justify-content: center;
}

.interactive-preview-visual .phone-mockup {
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}

.interactive-preview-visual:hover .phone-mockup {
    transform: rotate(0deg);
}

/* About Section */
.about-section {
    background: radial-gradient(100% 100% at bottom left, var(--primary-light) 0%, var(--bg-white) 65%);
    border-top: 1px solid var(--bg-beige);
    border-bottom: 1px solid var(--bg-beige);
    overflow: hidden;
}

.about-bg-blob {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(45, 140, 115, 0.06);
    filter: blur(100px);
    border-radius: var(--radius-round);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.quote-box {
    background-color: var(--bg-cream);
    border: 1px solid var(--bg-beige);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* Footer styling */
.footer {
    background-color: #1a1513;
    color: #a39994;
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

.footer-brand .logo-text {
    color: var(--text-light);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #2e2623;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.social-link i {
    width: 16px;
    height: 16px;
}

.footer-nav, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav h4, .footer-legal h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-nav a, .footer-legal a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2e2623;
    font-size: 0.8rem;
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .preview-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .interactive-preview-visual {
        order: -1;
    }
    
    .card-presence {
        left: 0%;
    }
    
    .card-nagel {
        right: 0%;
    }

    .card-anytimer {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .floating-card {
        display: none; /* Hide floating cards on small screens to prevent overlap */
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

/* Forms & Input Styling */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bg-beige);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Contact Grid & Page Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card-item {
    background: var(--bg-white);
    border: 1px solid var(--bg-beige);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}
.c-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-icon-wrapper i {
    width: 24px;
    height: 24px;
}
.c-icon-wrapper.color-orange { background-color: var(--primary-light); color: var(--primary); }
.c-icon-wrapper.color-purple { background-color: #F3E8FF; color: var(--accent-purple); }
.c-icon-wrapper.color-green { background-color: var(--secondary-light); color: var(--secondary); }

.c-link {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.c-link:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--bg-beige);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-success-box {
    text-align: center;
    padding: 30px 10px;
    animation: fadeIn 0.4s ease;
}
.success-icon {
    width: 60px;
    height: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Reviews Feed Card Styling */
.reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.review-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-beige);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.4s ease;
}
.review-card-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}
.review-card-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

