/* ============================================
   PerfectDay Technologies Ltd - Modern Website
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Sage Green */
    --sage: #8FAE9A;
    --sage-dark: #6B8C76;
    --sage-light: #A8C4B2;
    --sage-pale: #E8F0EB;

    /* Secondary Colors */
    --ivory: #F7F5F0;
    --champagne: #E8DCC7;
    --champagne-dark: #D4C4A8;

    /* Neutrals */
    --charcoal: #2F2F2F;
    --charcoal-light: #5A5A5A;
    --gray: #8A8A8A;
    --gray-light: #E5E5E5;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-sage: 0 4px 20px rgba(143, 174, 154, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--charcoal-light);
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--sage);
}

.nav-logo .highlight {
    color: var(--sage);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal-light);
    padding: var(--space-xs) 0;
    position: relative;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sage-dark);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 50%, var(--sage-pale) 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--sage-light);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--champagne);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--sage);
    top: 50%;
    left: 30%;
    opacity: 0.3;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--sage-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    color: var(--charcoal-light);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: var(--charcoal);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
    transform: rotate(5deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-15px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: var(--space-lg);
    background: linear-gradient(180deg, var(--sage-pale) 0%, var(--white) 100%);
    height: 100%;
}

.app-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
}

.app-logo-small {
    width: 32px;
    height: 32px;
    background: var(--sage);
    border-radius: 8px;
}

.app-stat {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.app-progress {
    height: 8px;
    background: var(--gray-light);
    border-radius: 4px;
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 4px;
    animation: progressGrow 2s ease-out;
}

@keyframes progressGrow {
    from { width: 0; }
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.mini-card {
    background: var(--white);
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal-light);
    box-shadow: var(--shadow-sm);
}

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

.btn-primary {
    background: var(--sage);
    color: var(--white);
    box-shadow: var(--shadow-sage);
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(143, 174, 154, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

/* ============================================
   Sections
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--sage-pale);
    color: var(--sage-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
}

/* ============================================
   Apps Section
   ============================================ */
.apps-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.app-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    position: relative;
    transition: all var(--transition-base);
}

.app-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-lg);
}

.app-card-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--sage);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-card-icon {
    width: 100px;
    height: 100px;
}

.app-card-icon svg {
    width: 100%;
    height: 100%;
}

.app-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.app-card-content > p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    list-style: none;
    margin-bottom: var(--space-lg);
}

.app-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.app-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    flex-shrink: 0;
}

.app-platforms {
    display: flex;
    gap: var(--space-md);
}

.platform {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.platform svg {
    color: var(--charcoal);
}

/* ============================================
   Values Section
   ============================================ */
.values-section {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.value-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    color: var(--sage);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--sage-dark);
    box-shadow: var(--shadow-md);
}

.cta-section .btn-primary:hover {
    background: var(--ivory);
    transform: translateY(-2px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--charcoal);
    color: var(--white);
}

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

.footer-brand {
    max-width: 300px;
}

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

.footer-logo .logo-icon {
    color: var(--sage-light);
}

.footer-logo .highlight {
    color: var(--sage-light);
}

.footer-brand p {
    color: var(--gray);
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sage-pale) 100%);
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: var(--space-md);
}

.legal-hero .last-updated {
    color: var(--charcoal-light);
    font-size: 0.95rem;
}

.legal-content {
    padding: var(--space-3xl) 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: var(--space-2xl) 0 var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-light);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: var(--space-lg) 0 var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    color: var(--charcoal-light);
    line-height: 1.7;
}

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

.legal-content a:hover {
    color: var(--sage);
}

/* Contact Info Box */
.contact-box {
    background: var(--sage-pale);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.contact-box h3 {
    margin-top: 0;
}

.contact-box p {
    margin-bottom: var(--space-sm);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* ============================================
   About Page
   ============================================ */
.about-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sage-pale) 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-hero-text h1 {
    margin-bottom: var(--space-lg);
}

.about-hero-text p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
}

.about-logo {
    width: 250px;
    height: 250px;
    color: var(--sage);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.about-section.alt {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text h2 {
    margin-bottom: var(--space-lg);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-item .number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-item .label {
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

/* ============================================
   Support Page
   ============================================ */
.support-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--sage-pale) 100%);
    text-align: center;
}

.support-hero h1 {
    margin-bottom: var(--space-md);
}

.support-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.support-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all var(--transition-base);
}

.support-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-md);
    background: var(--sage-pale);
    border-radius: 50%;
    color: var(--sage-dark);
}

.support-icon svg {
    width: 100%;
    height: 100%;
}

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

.support-card p {
    margin-bottom: var(--space-md);
}

.support-card a.link {
    color: var(--sage-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.support-card a.link:hover {
    color: var(--sage);
}

.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--ivory);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    line-height: 1.7;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

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

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

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

    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .about-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: all var(--transition-base);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: calc(80px + var(--space-2xl));
    }

    .app-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-card-icon {
        margin: 0 auto;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-brand {
        max-width: 100%;
    }

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

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

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

    .btn {
        width: 100%;
    }

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

/* ============================================
   Centered Hero Variant
   ============================================ */
.hero-centered {
    text-align: center;
    justify-content: center;
}

.hero-centered .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-logo-large {
    width: 120px;
    height: 120px;
    color: var(--sage);
    margin-bottom: var(--space-xl);
    animation: pulse 4s ease-in-out infinite;
}

.hero-logo-large svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(143, 174, 154, 0.3));
}

.hero-centered .hero-cta {
    justify-content: center;
}

/* ============================================
   Coming Soon Section
   ============================================ */
.coming-soon-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-content h2 {
    margin-bottom: var(--space-md);
}

.coming-soon-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    color: var(--charcoal-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--sage-pale);
    border-radius: 50%;
    color: var(--sage-dark);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sage);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
