/* ================================
   Observr.io Landing Page Styles
   Wildlife Visibility Tracking
   Dark Green Tint Theme
   ================================ */

/* CSS Variables */
:root {
    --color-bg: #f0f4f0;
    --color-bg-elevated: #f7faf7;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f5f8f5;
    --color-border: rgba(0, 0, 0, 0.06);
    --color-border-light: rgba(0, 0, 0, 0.1);
    --color-text: #1a1f1a;
    --color-text-secondary: #4a524a;
    --color-text-muted: #6b756b;
    --color-primary: #228B22;
    --color-primary-hover: #1e7b1e;
    --color-primary-dim: rgba(34, 139, 34, 0.1);
    --color-accent: #228B22;
    --color-success: #16a34a;
    --color-danger: #dc2626;
    --color-danger-dim: rgba(220, 38, 38, 0.08);
    --gradient-primary: linear-gradient(135deg, #2ea62e 0%, #228B22 50%, #1e7b1e 100%);
    --gradient-hero: linear-gradient(180deg, rgba(34, 139, 34, 0.06) 0%, transparent 60%);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(34, 139, 34, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

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

/* Section Pill - Floating liquid glass container */
.section-pill {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 60px 48px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 8px 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text);
}

.logo-accent {
    color: var(--color-primary);
}

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

.nav-links a {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: 0.2s;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow:
        0 2px 8px rgba(34, 139, 34, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e7b1e 0%, #196619 100%);
    transform: translateY(-1px);
    box-shadow:
        0 4px 16px rgba(34, 139, 34, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(34, 139, 34, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.btn-ghost:hover {
    color: var(--color-text);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-primary-dim);
    border: 1px solid rgba(34, 139, 34, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word-cycle {
    display: inline-block;
    min-width: 200px;
    text-align: left;
    padding-bottom: 0.1em;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Dashboard Preview */
.hero-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 60px rgba(34, 139, 34, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dots span:first-child { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:last-child { background: #27c93f; }

.dashboard-title {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dashboard-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Animal Cards in Dashboard */
.animal-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.animal-icon {
    font-size: 1.5rem;
}

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

.animal-name {
    font-size: 0.9375rem;
    font-weight: 600;
}

.animal-status {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.animal-card.visible .animal-status {
    color: var(--color-success);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-danger);
}

.status-indicator.active {
    background: var(--color-success);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
}

/* Visibility Chart */
.visibility-chart {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.chart-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    gap: 6px;
}

.bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px 4px 0 0;
    transition: background 0.2s;
}

.bar.active {
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(34, 139, 34, 0.3);
}

.chart-time {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

/* New Photo-based Enclosure Cards - Horizontal Layout */
.dashboard-content-grid {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enclosure-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.enclosure-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.enclosure-image {
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border-radius: 8px;
    margin: 10px;
}

.enclosure-info {
    padding: 10px 14px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 2px;
}

.enclosure-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.enclosure-status-row {
    display: flex;
    align-items: center;
}

.enclosure-status {
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.enclosure-status.visible {
    color: var(--color-success);
}

.enclosure-status.not-visible {
    color: var(--color-danger);
}

.enclosure-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.enclosure-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.enclosure-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-danger);
    margin-left: auto;
    margin-right: 14px;
    flex-shrink: 0;
}

.enclosure-card.visible .enclosure-indicator {
    background: var(--color-success);
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.5);
}

@media (min-width: 768px) {
    .enclosure-image {
        width: 80px;
        height: 80px;
    }
}

/* ================================
   Logos Section
   ================================ */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.logos-title {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-weight: 500;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.logo-item:hover {
    opacity: 1;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-text);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* ================================
   Problem Section
   ================================ */
.problem-section {
    padding: 80px 0;
}

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

.problem-headline {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-text);
}

.problem-subtext {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.problem-solution {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 48px;
}

/* Complaint Cards */
.complaint-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.complaint-card {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.06);
}

.complaint-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.complaint-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.problem-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-value {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--color-text);
}

.problem-label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    max-width: 180px;
    text-align: center;
}

/* ================================
   Section Header
   ================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

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

/* ================================
   Features Section
   ================================ */
.features-section {
    padding: 80px 0;
}

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

.features-grid-3 {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(34, 139, 34, 0.2);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(34, 139, 34, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ================================
   How It Works Section
   ================================ */
.how-section {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: left;
    padding: 28px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(34, 139, 34, 0.2);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(34, 139, 34, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ================================
   Testimonial Section
   ================================ */
.testimonial-section {
    padding: 120px 0;
}

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

.testimonial p {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    color: var(--color-text);
}

.testimonial cite {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-style: normal;
}

/* ================================
   Use Cases Section
   ================================ */
.use-cases-section {
    padding: 120px 0;
    background: var(--color-bg-elevated);
}

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

.use-case-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s;
}

.use-case-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: 80px 0 120px;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

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

.contact-form button {
    margin-top: 8px;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ================================
   Footer
   ================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

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

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 16px;
    font-size: 0.9375rem;
}

.footer-links h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .problem-stats {
        gap: 48px;
    }

    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section-pill {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 40px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .dashboard-preview {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .steps-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .problem-stats {
        flex-direction: column;
        gap: 32px;
    }

    .problem-quote {
        font-size: 2.5rem;
    }

    .problem-subtext {
        font-size: 1.125rem;
    }

    .complaint-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial p {
        font-size: 1.25rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .logos-grid {
        gap: 24px;
    }

    .trust-stats {
        gap: 32px;
    }

    .trust-value {
        font-size: 1.75rem;
    }

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

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

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

    .problem-content h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* Pulse animation for active status */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-indicator.active {
    animation: pulse 2s ease-in-out infinite;
}
