/**
 * HireEase - Public Pages Stylesheet
 * Shared styles for all public-facing pages
 */

:root {
    --primary: #3574a3;          /* Darkened from #5599cc for WCAG AA 4.5:1 on white */
    --primary-dark: #2d6a97;     /* Darkened from #4488bb for WCAG AA */
    --primary-light: #5599cc;    /* Original primary becomes the light variant */
    --primary-brand: #5599cc;    /* Original brand color for large text only */
    --secondary: #2c3e50;
    --accent: #b1611a;           /* Darkened from #e67e22 for WCAG AA 4.5:1 on white */
    --accent-brand: #e67e22;     /* Original accent for large text/decorative only */
    --text-dark: #1a1a2e;
    --text-medium: #4a5568;
    --text-light: #69778b;       /* Darkened from #718096 for WCAG AA 4.5:1 on white */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success: #12883e;          /* Darkened from #27ae60 for WCAG AA */
    --warning: #9e6b08;          /* Darkened from #f39c12 for WCAG AA 4.6:1 */
    --danger: #d92525;           /* Darkened from #ef4444 for WCAG AA */
    /* Height of the sticky ecosystem nav. Used as the top offset for every
       platform-level sticky bar. Shared across StartEase / LaunchEase / HireEase. */
    --ecosystem-nav-h: 40px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ============================================
   ACCESSIBILITY (WCAG 2.1 AA)
   ============================================ */

/* Skip to content link — visible only on focus (WCAG 2.4.1) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Screen reader only utility (visually hidden, accessible to AT) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible outlines for all interactive elements (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Remove default outline only when :focus-visible is supported */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Link underlines on hover/focus for non-button links (WCAG 1.4.1) */
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible,
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
    text-decoration: underline;
}

/* Reduced motion preference (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

/* ============================================
   ECOSYSTEM NAV
   ============================================ */

.ecosystem-nav {
    background: #1e293b;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    /* Fixed (not sticky) so it never releases at the bottom of scroll. */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
}

body {
    /* Compensate for the fixed ecosystem-nav above. */
    padding-top: var(--ecosystem-nav-h);
}

.ecosystem-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ecosystem-label {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 0.25rem;
}

.ecosystem-arrow {
    color: #64748b;
    font-size: 1rem;
    margin-left: 0.15rem;
}

@media (max-width: 480px) {
    .ecosystem-nav .nav-container { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .ecosystem-label { display: none; }
}

.ecosystem-link {
    color: #cbd5e1;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
}

.ecosystem-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ecosystem-link.current {
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--bg-white);
    padding: calc(1.25rem + 4px) 0 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: var(--ecosystem-nav-h);
    z-index: 250;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-logo span {
    color: #ffd700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

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

.nav-links a.btn-primary {
    color: #fff;
}

.nav-links a.btn-primary:hover {
    background: var(--primary-dark);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: transform 0.2s;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

.btn-large,
.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: #d35400;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary) 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8d4e8;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-subtitle em {
    color: #93c5fd;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background: #fff;
    color: var(--primary-dark);
}

.hero-cta .btn-primary:hover {
    background: #f3f4f6;
    color: var(--primary-dark);
}

.hero-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animated hero title: "HireEase" → typed → "Squad Build from Local Talent with Ease" */
.hero-title-animated {
    text-align: center;
}

.hero-word-ease {
    font-weight: bold;
    color: #ffd700;
}

.hero-typed.typing::after {
    content: '|';
    font-weight: normal;
    animation: hero-blink 0.7s step-end infinite;
}

.hero-typed.done::after {
    content: none;
}

@keyframes hero-blink {
    50% { opacity: 0; }
}


/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */

.value-prop {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.value-prop-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.value-prop h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.value-prop .lead {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 50px;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.value-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 20px;
    background: var(--bg-light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.features .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin: 0 0 50px;
}

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

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.feature-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS / STEPS SECTION
   ============================================ */

.how-it-works {
    padding: 80px 20px;
    background: var(--bg-light);
}

.how-container {
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin: 0 0 50px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.step p {
    color: var(--text-medium);
    margin: 0;
    font-size: 15px;
}

.how-it-works-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.how-it-works .step {
    background: var(--bg-white);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: var(--primary-brand);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 20px;
}

.cta p {
    font-size: 20px;
    opacity: 0.95;
    margin: 0 0 35px;
}

.cta .btn {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
    text-align: center;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary-dark);
}

.cta .btn-primary:hover {
    background: #f0f0f0;
}

.cta .btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cta .btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-brand h3 span {
    color: #ffd700;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #ffd700 !important;
    font-style: italic;
    margin-top: 15px !important;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #95a8c6;             /* Lightened from #718096 for WCAG AA on #2c3e50 */
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #95a8c6;             /* Lightened from #718096 for WCAG AA on #2c3e50 */
    font-size: 14px;
    text-decoration: none;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-muted {
    color: var(--text-light);
}

.section {
    padding: 80px 0;
}

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

.section-light {
    background: var(--bg-light);
}

/* Page Hero (smaller for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--secondary) 100%);
    padding: 120px 20px 60px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 60px 20px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* Skill Tags */
.skill-tag {
    background: #e0f2fe;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin: 4px;
}

/* Category Card */
.category-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-card h3 .icon {
    font-size: 24px;
}

.category-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.info-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.info-box p {
    margin: 0;
    color: var(--text-medium);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(53, 116, 163, 0.2);
}

.form-group input:focus:not(:focus-visible),
.form-group textarea:focus:not(:focus-visible),
.form-group select:focus:not(:focus-visible) {
    box-shadow: none;
}

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

/* Legal/Terms Page Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 25px 0 10px;
}

.legal-content p {
    color: var(--text-medium);
    margin: 0 0 15px;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-medium);
    margin: 0 0 15px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-meta {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-medium);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .hero h1 {
        font-size: 40px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .hero-title-animated { font-size: 2.25rem; min-height: 2.4em; }

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

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 130px 20px 50px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .features-grid,
    .value-cards,
    .cards-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta h2 {
        font-size: 28px;
    }

    .value-prop h2,
    .features h2,
    .how-it-works h2 {
        font-size: 28px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-title-animated { font-size: 1.5rem; min-height: 2.4em; }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding: 2.5rem 0; }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
}
