/* Holler Global Styles - styles.css */

/* ==========================================
   BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffd166;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffb347;
}

p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: #ffd166;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffb347;
}

/* ==========================================
   HEADER & LOGO
   ========================================== */

header {
    padding: 30px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd166;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #ffd166;
}

/* ==========================================
   HERO SECTION (Landing Page)
   ========================================== */

.hero {
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: radial-gradient(circle at 30% 50%, #ffd166 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, #ff7f5c 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ==========================================
   BUTTONS & CTA
   ========================================== */

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.app-store-button svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   PHONE MOCKUP
   ========================================== */

.phone-mockup {
    margin: 60px auto 0;
    max-width: 300px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    background: #1f2937;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #374151;
}

.phone-screen {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5a 100%);
    border-radius: 32px;
    aspect-ratio: 9/19.5;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.mock-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b4a 100%);
    border-radius: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.mock-text {
    color: #ffd166;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mock-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-align: center;
    padding: 0 20px;
}

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

.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 209, 102, 0.2);
    border-color: rgba(255, 209, 102, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffd166;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
}

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

.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 209, 102, 0.15);
    border-color: rgba(255, 209, 102, 0.2);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   LEGAL PAGES (Privacy, Terms, EULA)
   ========================================== */

/* Legal page header */
header.legal-header {
    padding: 30px 0 50px;
    text-align: center;
}

header.legal-header .logo {
    margin-bottom: 20px;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Legal page content container */
.content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
}

/* Legal page specific container width */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd166;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd166;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    color: rgba(255, 255, 255, 0.8);
}

.social-link:hover {
    background: rgba(255, 209, 102, 0.2);
    color: #ffd166;
}

.social-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    margin: 8px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    /* Hero section */
    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* Section titles */
    .section-title {
        font-size: 36px;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* CTA section */
    .cta-section h2 {
        font-size: 36px;
    }

    /* Legal pages content */
    .content {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FAQ PAGE STYLES
   ========================================== */

.faq-section {
    margin-bottom: 60px;
}

.faq-section:last-of-type {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    color: #ffd166;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer ol {
    margin-top: 12px;
}

.faq-answer li {
    color: rgba(255, 255, 255, 0.9);
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 209, 102, 0.2);
}

.faq-cta h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 28px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 0;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-hero {
    margin-bottom: 40px;
    padding: 40px;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 209, 102, 0.2);
}

.about-lead {
    font-size: 24px;
    line-height: 1.6;
    color: #ffd166;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0 40px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 102, 0.3);
}

.philosophy-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.philosophy-card h3 {
    font-size: 18px;
    color: #ffd166;
    margin-top: 0;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.about-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 127, 92, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 127, 92, 0.2);
    margin-top: 50px;
}

.about-cta h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 32px;
    color: #ff7f5c;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 0;
}

.team-signature {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-signature p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .about-lead {
        font-size: 20px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 30px 20px;
    }
}

/* ==========================================
   404 ERROR PAGE STYLES
   ========================================== */

.error-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

.error-icon {
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
}

.fox-confused {
    font-size: 120px;
    line-height: 1;
    animation: foxBounce 2s ease-in-out infinite;
}

.question-marks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.q-mark {
    position: absolute;
    font-size: 32px;
    color: #ffd166;
    animation: float 3s ease-in-out infinite;
    opacity: 0.8;
}

.q1 {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.q2 {
    top: 20px;
    left: -30px;
    animation-delay: 0.5s;
}

.q3 {
    bottom: 10px;
    right: -10px;
    animation-delay: 1s;
}

.error-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.error-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

.error-suggestions {
    margin-bottom: 50px;
}

.suggestions-title {
    font-size: 18px;
    color: #ffd166;
    margin-bottom: 30px;
    font-weight: 600;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.suggestion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 209, 102, 0.2);
    border-color: rgba(255, 209, 102, 0.3);
}

.suggestion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.suggestion-icon svg {
    width: 24px;
    height: 24px;
}

.suggestion-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffd166;
    margin: 0 0 4px 0;
}

.suggestion-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.error-help {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.error-help p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.help-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b4a 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 92, 0.4);
}

.help-button svg {
    width: 18px;
    height: 18px;
}

.error-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-joke {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin: 0;
}

/* Animations */
@keyframes foxBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.4;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fox-confused {
        font-size: 80px;
    }

    .error-title {
        font-size: 32px;
    }

    .error-subtitle {
        font-size: 18px;
    }

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

    .q-mark {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-page {
    min-height: 100vh;
    padding: 40px 20px 80px;
}

.contact-page .container {
    max-width: 1000px;
}

.contact-header {
    text-align: center;
    padding: 30px 0 50px;
}

.contact-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}
/* Quick Contact Options */
.contact-quick-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.quick-option {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
    align-items: flex-start;
}

.quick-option:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 102, 0.3);
}

.option-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff6b4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.option-icon svg {
    width: 24px;
    height: 24px;
}

.option-info {
    width: 100%;
}

.option-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffd166;
    margin: 0 0 8px 0;
}

.option-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.option-info a {
    color: #ffd166;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.option-info a:hover {
    text-decoration: underline;
}

.response-time {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 4px;
}

/* Form Section */
.contact-form-section {
    margin-bottom: 50px;
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffd166;
    margin-bottom: 16px;
    text-align: center;
}

.form-description {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.tally-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    min-height: 500px;
}

/* Form Placeholder (remove after adding real Tally form) */
.form-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.8);
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.form-placeholder h3 {
    font-size: 24px;
    color: #ffd166;
    margin-bottom: 20px;
}

.form-placeholder ol {
    list-style-position: inside;
    margin-bottom: 10px;
}

.form-placeholder li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.form-placeholder code {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.5;
    color: #ffd166;
}

/* Tally iframe styling (when you add the real form) */
.tally-form-container iframe {
    border-radius: 8px;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(255, 209, 102, 0.1);
    border: 1px solid rgba(255, 209, 102, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.info-box-content h3 {
    font-size: 20px;
    color: #ffd166;
    margin-top: 0;
    margin-bottom: 16px;
}

.info-box-content ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.info-box-content li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.info-box-content li:before {
    content: "•";
    color: #ffd166;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.info-box-content strong {
    color: #ffd166;
}

/* Response Expectations */
.response-expectations {
    text-align: center;
    padding: 40px;
    background: rgba(255, 127, 92, 0.1);
    border: 1px solid rgba(255, 127, 92, 0.2);
    border-radius: 16px;
}

.response-expectations h3 {
    font-size: 24px;
    color: #ff7f5c;
    margin-top: 0;
    margin-bottom: 16px;
}

.response-expectations > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.expectation-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffd166;
    margin-bottom: 8px;
}

.expectation-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 36px;
    }

    .contact-quick-options {
        grid-template-columns: 1fr;
    }

    .quick-option {
        flex-direction: column;
        text-align: center;
    }

    .tally-form-container {
        padding: 20px;
    }

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

/* Feature icons as images */
.feature-icon-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Testimonial avatars as images */
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

.how-it-works {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 209, 102, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #1a2332;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffd166;
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.step-visual {
    flex-shrink: 0;
    opacity: 0.9;
}

.step-visual img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

.step-divider {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    opacity: 0.6;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 127, 92, 0.1);
    border: 1px solid rgba(255, 127, 92, 0.2);
    border-radius: 16px;
}

.cta-tagline {
    font-size: 22px;
    font-weight: 600;
    color: #ffd166;
    margin-bottom: 24px;
    font-style: italic;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
    color: #1a2332;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 209, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }

    .step-visual {
        display: none;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 15px;
    }

    .cta-tagline {
        font-size: 18px;
    }
}