:root {
    /* Fonts */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    /* Colors - Inner Circle Theme (Light Mode) */
    --primary: #E07A5F;
    --primary-light: #F2A391;
    --primary-dark: #B85A42;
    --bg-dark: #FAF8F5;
    --bg-card: #FFFFFF;
    --bg-elevated: #F5F2ED;
    --text-main: #2D3142;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border-color: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --success: #81B29A;
    --warning: #FFA810;
    --info: #6B9AC4;

    /* Spacing */
    --container-width: 1200px;
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 49, 66, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 49, 66, 0.08);
    --shadow-lg: 0 16px 48px rgba(45, 49, 66, 0.1);
    --shadow-glow: 0 0 40px rgba(224, 122, 95, 0.2);
}

/* ===== Reset & Base ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Utilities ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.section-padding {
    padding: var(--sp-xl) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--sp-lg);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ===== Header & Navigation ===== */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback/Explicit for some browsers if text-fill-color fails but usually text-fill-color handles it. However, keeping it safe. */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
    color: #ffffff !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(224, 122, 95, 0.1);
}

.btn-text {
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: var(--sp-xl);
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.badge-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
    animation: fadeInUp 0.6s ease forwards;
}

.badge-outline {
    background: transparent;
    border-color: var(--border-color);
}

.display-text {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.6s forwards;
    opacity: 0;
}

.social-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    animation: fadeInUp 1.4s ease 0.8s forwards;
    opacity: 0;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.proof-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual Cards */
.hero-visual {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    animation: fadeInUp 1s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.app-card.highlight {
    border-color: var(--primary);
    background: rgba(224, 122, 95, 0.05);
}

.avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.health-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.health-indicator.good {
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
}

.health-indicator.warning {
    background: var(--warning);
    box-shadow: 0 0 8px var(--warning);
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.card-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== App-Style Contact Cards ===== */
.app-card.app-style {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    position: relative;
}

.app-card.app-style.highlight {
    border-color: var(--warning);
    background: rgba(255, 149, 0, 0.05);
}

/* Avatar with Health Ring */
.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring.good {
    background: var(--success);
}

.avatar-ring.warning {
    background: var(--warning);
}

.avatar-ring.critical {
    background: var(--primary);
}

.avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-body);
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.app-card.app-style .card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.app-card.app-style .card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-emoji {
    font-size: 0.875rem;
}

/* Health Dot */
.health-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.health-dot.good {
    background: var(--success);
    box-shadow: 0 0 4px var(--success);
}

.health-dot.warning {
    background: var(--warning);
    box-shadow: 0 0 4px var(--warning);
}

.health-dot.critical {
    background: var(--primary);
    box-shadow: 0 0 4px var(--primary);
}

/* Card Status */
.card-status {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.card-status.warning-text {
    color: var(--warning);
}

/* Card Context (Notes) */
.card-context {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Card Action Button */
.card-action-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-action-btn:hover {
    background: rgba(224, 122, 95, 0.1);
    transform: scale(1.1);
}

/* Quick Actions Refinement */
.app-card.app-style .quick-actions {
    margin-top: 0.75rem;
    gap: 0.375rem;
}

.app-card.app-style .quick-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.quick-btn {
    padding: 0.5rem 0.875rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== Problem/Solution Section ===== */
.problem-solution {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--primary) !important;
    font-weight: 600;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-spotlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, transparent 100%);
    border-color: var(--primary);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.gradient-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-detail {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.detail-badge {
    padding: 0.375rem 0.875rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== How It Works ===== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-muted);
}

.methodology-box {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, transparent 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary);
    text-align: center;
}

.methodology-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.methodology-box p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
}

.author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.author-name {
    font-weight: 600;
    color: var(--text-main);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, transparent 100%);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, transparent 100%);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-container>p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-subtext {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.download-alt {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.download-alt p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* ===== Footer ===== */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
}


/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .feature-spotlight {
        grid-column: span 1;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .display-text {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtext {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 1.5rem;
    }

    .proof-divider {
        width: 60%;
        height: 1px;
    }

    .hero-visual {
        flex-direction: column;
        margin-top: 2rem;
    }

    .app-card {
        max-width: 100%;
        min-width: auto;
    }

    /* App-style cards mobile */
    .app-card.app-style {
        padding: 1rem;
    }

    .app-card.app-style .card-header h3 {
        font-size: 1rem;
    }

    .avatar-ring {
        width: 48px;
        height: 48px;
    }

    .avatar-initials {
        font-size: 1rem;
    }

    .card-action-btn {
        top: 0.75rem;
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }

    .quick-actions {
        flex-wrap: wrap;
    }

    .app-card.app-style .quick-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* CTA section mobile */
    .cta-container h2 {
        font-size: 2rem;
    }

    /* Content blocks mobile */
    .content-block h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .display-text {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .badge-group {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    /* App cards very small screens */
    .app-card.app-style {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .avatar-ring {
        width: 44px;
        height: 44px;
    }

    .avatar-initials {
        font-size: 0.875rem;
    }

    .app-card.app-style .card-header h3 {
        font-size: 0.9375rem;
    }

    .card-status {
        font-size: 0.75rem;
    }

    .card-context {
        font-size: 0.75rem;
    }

    .tier-emoji {
        font-size: 0.75rem;
    }

    .quick-actions {
        gap: 0.25rem;
    }

    .app-card.app-style .quick-btn {
        padding: 0.25rem 0.375rem;
        font-size: 0.6875rem;
    }

    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Feature cards mobile */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    /* Pricing mobile */
    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    /* CTA mobile */
    .cta-container h2 {
        font-size: 1.5rem;
    }

    .cta-container>p {
        font-size: 1rem;
    }

    /* Footer mobile */
    .footer-section h4 {
        font-size: 1.125rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {

    .feature-card,
    .step-card,
    .testimonial-card,
    .pricing-card {
        animation: fadeIn 0.6s ease forwards;
    }
}