/**
 * TeacherAI Home Page Styles
 * Location: /wp-content/plugins/teacherai-simple/assets/css/home-page.css
 * 
 * @version 1.2.0
 * @author Claude 180 - TEAM TEACHAI
 * @date December 11, 2025
 * 
 * COMPLETE VERSION with all polish passes included
 */

/* =============================================
   CSS VARIABLES
============================================== */
:root {
    /* Purple palette (from platform-colors.css) */
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    
    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
}

/* =============================================
   RESET & BASE
============================================== */
.teacherai-home-page {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.teacherai-home-page * {
    box-sizing: border-box;
}

.home-wrapper {
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hide-mobile {
    display: inline;
}

/* =============================================
   HEADER - Black with colorful logo
============================================== */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #1a1a1a;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* WordPress admin bar accommodation */
.admin-bar .home-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .home-header {
        top: 46px; /* Mobile admin bar is taller */
    }
}

.home-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.home-logo-img {
    width: 36px;
    height: 36px;
    filter: none; /* Colorful logo */
}

.home-logo-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    color: #ffffff;
}

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

.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
}

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

.nav-link-secondary {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link-primary {
    color: #ffffff;
    background: var(--purple-600);
    margin-left: 0.5rem;
}

.nav-link-primary:hover {
    background: var(--purple-500);
}

/* =============================================
   HERO SECTION
============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f8f6fc 0%, #ffffff 40%, #faf8ff 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at 70% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--purple-100);
    color: var(--purple-700);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--gray-600);
    margin: 0 0 2.5rem;
    line-height: 1.6;
}

.hero-subheadline em {
    font-style: italic;
    color: var(--purple-600);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Hero Logo - Centered above headline */
.hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 120px;
    height: 120px;
    opacity: 1;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-logo-graphic {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 24px rgba(147, 51, 234, 0.25));
}

/* =============================================
   BUTTONS
============================================== */
.btn-primary,
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-600) 100%);
    border: none;
    border-radius: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(147, 51, 234, 0.2);
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.btn-primary-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow,
.btn-primary-large:hover .btn-arrow {
    transform: translateX(4px);
}

/* =============================================
   SECTION TITLES
============================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gray-900);
    text-align: center;
    margin: 0 0 3rem;
}

/* =============================================
   THE SHIFT SECTION
============================================== */
.shift {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.shift-content {
    text-align: center;
    margin-bottom: 3rem;
}

.shift-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
}

.shift-subheadline {
    font-size: 1.25rem;
    color: var(--purple-600);
    font-weight: 500;
    margin: 0;
}

.shift-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.shift-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.shift-card-old {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.shift-card-new {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
    border: 1px solid var(--purple-200);
}

.shift-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shift-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
}

.shift-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.shift-arrow {
    color: var(--purple-400);
    flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS SECTION - White background
============================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: #ffffff;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--purple-700);
    background: var(--purple-100);
    border-radius: 50%;
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--purple-200);
    margin-top: 2.5rem;
    flex-shrink: 0;
}

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

/* =============================================
   FEATURES SECTION
============================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.feature {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    transition: all 0.2s ease;
}

.feature:hover {
    border-color: var(--purple-200);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.08);
}

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

.feature h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.feature p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   OFFER SECTION
============================================== */
.offer {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-800) 100%);
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.offer-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.offer-headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 1rem;
}

.offer-description {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.offer-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
}

.price-period {
    font-size: 1.25rem;
    opacity: 0.8;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.btn-offer {
    background: #ffffff;
    color: var(--purple-700);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-offer:hover {
    background: #ffffff;
    color: var(--purple-800);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.offer-subtext {
    margin: 1.5rem 0 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* =============================================
   FINAL CTA SECTION
============================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 400;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
}

.final-cta p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin: 0 0 2rem;
}

/* =============================================
   FOOTER - Black with colorful logo
============================================== */
.home-footer {
    padding: 4rem 0 2rem;
    background: #1a1a1a;
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    filter: none; /* Colorful logo */
}

.footer-logo-text {
    font-weight: 600;
    font-size: 1.0625rem;
    color: #ffffff;
}

.footer-tagline {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-400);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    opacity: 0.6;
}

/* =============================================
   RESPONSIVE - TABLET
============================================== */
@media (max-width: 900px) {
    :root {
        --section-padding: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shift-arrow {
        transform: rotate(90deg);
    }
    
    .step-line {
        display: none;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
============================================== */
@media (max-width: 640px) {
    :root {
        --section-padding: 3rem;
    }
    
    .home-header-inner {
        padding: 0.75rem 1rem;
    }
    
    .home-logo-text {
        display: none;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .hero {
        padding: 7rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-visual {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .shift-cards {
        flex-direction: column;
    }
    
    .shift-card {
        max-width: 100%;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* =============================================
   ACCESSIBILITY
============================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-visual {
        animation: none;
    }
    
    .btn-primary:hover,
    .btn-primary-large:hover {
        transform: none;
    }
}

/* Focus states */
.btn-primary:focus,
.btn-primary-large:focus,
.nav-link:focus {
    outline: 2px solid var(--purple-400);
    outline-offset: 2px;
}

/* =============================================
   CLAUDE 181 - FEATURES PAGE STYLES
   December 11, 2025
   
   APPEND THIS TO home-page.css
   
   These styles support page-features.php
============================================== */

/* =============================================
   FEATURES HERO - Shorter than homepage hero
============================================== */
.features-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

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

/* =============================================
   FEATURE DETAIL SECTIONS
============================================== */
.feature-detail {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.feature-detail-alt {
    background: var(--gray-50);
}

.feature-detail-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.feature-detail-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.feature-detail-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.feature-detail-description:last-of-type {
    margin-bottom: 0;
}

/* Coming Soon badges */
.feature-detail-coming {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.coming-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--purple-100);
    color: var(--purple-700);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.coming-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Alt section coming badge adjustment */
.feature-detail-alt .feature-detail-coming {
    border-top-color: var(--gray-300);
}

/* =============================================
   RESPONSIVE - MOBILE
============================================== */
@media (max-width: 640px) {
    .features-hero {
        min-height: auto;
        padding: 7rem 1rem 3rem;
    }
    
    .feature-detail-icon {
        font-size: 2.5rem;
    }
    
    .feature-detail-description {
        font-size: 1rem;
    }
    
    .feature-detail-coming {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* =============================================
   END FEATURES PAGE STYLES
============================================== */
/* =============================================
   CLAUDE 182 - HOW IT WORKS PAGE STYLES
   December 12, 2025
   
   APPEND THIS TO home-page.css
   
   These styles support page-how-it-works.php
============================================== */

/* =============================================
   HIW PROCESS SECTION - The 4 Steps
============================================== */
.hiw-process {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--gray-50);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.hiw-step:last-child {
    margin-bottom: 0;
}

.hiw-step-alt {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
    border-color: var(--purple-200);
}

.hiw-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-600);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 50%;
}

.hiw-step-content {
    flex-grow: 1;
}

.hiw-step-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
}

.hiw-step-description {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.hiw-step-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
}

/* =============================================
   HIW MEANING SECTION - What This Actually Means
============================================== */
.hiw-meaning {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.hiw-meaning-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.hiw-meaning-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hiw-meaning-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
}

.hiw-meaning-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   HIW BEYOND SECTION - Fusion Tease
============================================== */
.hiw-beyond {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.hiw-beyond-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
    border: 1px solid var(--purple-200);
    border-radius: 1.5rem;
}

.hiw-beyond-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hiw-beyond-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.hiw-beyond-description {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.hiw-beyond-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hiw-beyond-link:hover {
    color: var(--purple-700);
}

.hiw-beyond-link svg {
    transition: transform 0.2s ease;
}

.hiw-beyond-link:hover svg {
    transform: translateX(4px);
}

/* =============================================
   RESPONSIVE - TABLET
============================================== */
@media (max-width: 900px) {
    .hiw-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hiw-step-alt {
        flex-direction: column;
    }
    
    .hiw-meaning-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
============================================== */
@media (max-width: 640px) {
    .hiw-step {
        padding: 1.5rem;
    }
    
    .hiw-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .hiw-step-icon {
        font-size: 2rem;
    }
    
    .hiw-step-description {
        font-size: 1rem;
    }
    
    .hiw-beyond-content {
        padding: 2rem 1.5rem;
    }
    
    .hiw-meaning-card {
        padding: 1.5rem;
    }
}

/* =============================================
   END HOW IT WORKS PAGE STYLES
============================================== */
