:root {
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Lato', sans-serif;
    
    --color-dark: #1a1a1a;
    --color-dark-pleasant: #263238;
    --color-light: #f9f9f9;
    --color-accent: #D48C70;
    --color-accent-hover: #b57055;
    --color-problem: #fff0f0;
    --color-fix: #f0f8ff;
    
    --spacing-section: 3rem;
}

@media (min-width: 768px) {
    :root {
        --spacing-section: 6rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-light);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Top Bar - Mobile First */
.top-bar {
    background-color: var(--color-accent);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    z-index: 200;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .top-bar {
        font-size: 1rem;
    }
}

.top-bar p {
    margin: 0;
}

.top-bar a {
    color: white;
    text-decoration: underline;
    margin-left: 0.5rem;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.top-bar a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Nav - Mobile First */
nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (min-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-sparkle-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    /*
    filter: grayscale(100%);
    opacity: 0.8;
    */
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.logo-img.magic-reveal {
    filter: grayscale(0%) saturate(1.5) brightness(1.1);
    opacity: 1;
    animation: logoColorSync 3s ease-in-out;
}

@keyframes logoColorSync {
    0% { filter: grayscale(0%) saturate(1.5) brightness(1.1) hue-rotate(0deg); }
    16.6% { filter: grayscale(0%) saturate(1.6) brightness(1.15) hue-rotate(60deg); }
    33.3% { filter: grayscale(0%) saturate(1.7) brightness(1.2) hue-rotate(120deg); }
    50% { filter: grayscale(0%) saturate(1.7) brightness(1.2) hue-rotate(180deg); }
    66.6% { filter: grayscale(0%) saturate(1.6) brightness(1.15) hue-rotate(240deg); }
    83.3% { filter: grayscale(0%) saturate(1.6) brightness(1.15) hue-rotate(300deg); }
    100% { filter: grayscale(0%) saturate(1.5) brightness(1.1) hue-rotate(360deg); }
}

.sparkle {
    position: absolute;
    pointer-events: none;
    font-size: 20px;
    animation: sparkleFloat 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(var(--tx), var(--ty)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--tx) * 2), calc(var(--ty) * 2)) scale(0.3);
    }
}

@media (min-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

.logo-text {
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #0099c9;
    transition: color 0.6s ease, text-shadow 0.6s ease;
    white-space: nowrap;
}

.logo-text.magic-reveal {
    background: linear-gradient(90deg, #FF6B9D, #C44569, #FFC312, #12CBC4, #FDA7DF, #ED4C67);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 3s ease-in-out;
}

@keyframes textGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
    }
}

.nav-links {
    display: none;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        padding: 0 2rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 0.3rem;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

@media (min-width: 900px) {
    .nav-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

.login-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-cta {
    background: transparent;
    border: 2px solid var(--color-dark);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--color-dark);
    display: none;
    border-radius: 4px;
    white-space: nowrap;
}

@media (min-width: 900px) {
    .nav-cta {
        display: inline-block;
    }
}

.nav-cta:hover {
    background: var(--color-dark);
    color: white;
}

/* Buttons - Mobile First */
.cta-primary {
    background-color: var(--color-accent);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 140, 112, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

.cta-primary:hover {
    background-color: var(--color-accent-hover);
}

/* Hero Section - Mobile First */
.hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

@media (min-width: 900px) {
    .hero {
        flex-direction: row;
        min-height: 90vh;
    }
}

.hero-split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image {
    background-image: url('/assets/section-1.webp');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    order: 2;
}

@media (min-width: 768px) {
    .hero-image {
        min-height: 600px;
        min-width: 600px;
    }
}

@media (min-width: 900px) {
    .hero-image {
        order: 1;
    }
}

@media (min-width: 1200px) {
    .hero-image {
        min-width: 700px;
    }
}

.hero-content {
    background-color: white;
    padding: 2rem 1.5rem;
    order: 1;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 4rem;
    }
}

@media (min-width: 900px) {
    .hero-content {
        order: 2;
    }
}

.content-wrapper {
    max-width: 600px;
}

.hero-audience {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 140, 112, 0.08);
    border-left: 3px solid var(--color-accent);
    border-radius: 4px;
    display: inline-block;
}

@media (min-width: 768px) {
    .hero-audience {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

.sub-headline {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .sub-headline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.hero-actions .micro-copy-hero {
    margin-top: -1rem;
    text-align: left;
}

.video-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transition: color 0.3s;
}

.video-link:hover {
    color: var(--color-accent);
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--color-accent);
    transition: background-color 0.3s;
}

.video-link:hover .play-icon {
    background-color: var(--color-accent);
    color: white;
}

.micro-copy-hero {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Container */
.container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 1000px;
        padding: 0;
    }
}

/* Definition Section - Mobile First */
.definition {
    background-color: var(--color-dark-pleasant);
    color: white;
    padding: var(--spacing-section) 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .definition {
        padding: var(--spacing-section) 2rem;
    }
}

.definition h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .definition h2 {
        font-size: 2.5rem;
    }
}

.highlight-not {
    color: var(--color-accent);
}

.definition-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .definition-text {
        font-size: 1.4rem;
    }
}

/* Accordion - Mobile First */
.briefing-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .briefing-accordion {
        margin: 3rem auto 0;
    }
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 1.5rem 0;
    }
}

.accordion-header:hover {
    color: var(--color-accent);
}

.question-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
}

@media (min-width: 768px) {
    .question-text {
        font-size: 1.3rem;
    }
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.accordion-content.open {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .accordion-content p {
        font-size: 1.1rem;
        padding-right: 2rem;
    }
}

/* Authority Section - Mobile First */
.authority {
    padding: var(--spacing-section) 1.5rem;
    background-color: #f4f4f4;
}

@media (min-width: 768px) {
    .authority {
        padding: var(--spacing-section) 2rem;
    }
}

.citation-block {
    background: white;
    padding: 2rem 1.5rem;
    border-top: 5px solid var(--color-accent);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .citation-block {
        padding: 4rem;
    }
}

.watermark {
    display: none;
}

@media (min-width: 768px) {
    .watermark {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 250px;
        height: 250px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 60 Q 100 10 160 60 T 280 60' stroke='%23E0E0E0' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M20 100 Q 100 50 180 100 T 340 100' stroke='%23E0E0E0' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M40 140 Q 100 190 160 140 T 280 140' stroke='%23E0E0E0' stroke-width='2' fill='none' opacity='0.6'/%3E%3Ccircle cx='100' cy='100' r='80' stroke='%23E0E0E0' stroke-width='1' fill='none' stroke-dasharray='5,5' opacity='0.4'/%3E%3Ccircle cx='100' cy='100' r='60' stroke='%23E0E0E0' stroke-width='1' fill='none' opacity='0.3'/%3E%3Ccircle cx='100' cy='100' r='40' stroke='%23E0E0E0' stroke-width='1' fill='none' stroke-dasharray='2,4' opacity='0.5'/%3E%3Ccircle cx='100' cy='50' r='4' fill='%23E0E0E0' opacity='0.6'/%3E%3Ccircle cx='150' cy='100' r='4' fill='%23E0E0E0' opacity='0.6'/%3E%3Ccircle cx='100' cy='150' r='4' fill='%23E0E0E0' opacity='0.6'/%3E%3Ccircle cx='50' cy='100' r='4' fill='%23E0E0E0' opacity='0.6'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.6;
        pointer-events: none;
    }
}

.citation-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .citation-block h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.research-argument {
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .research-argument {
        font-size: 1.2rem;
        columns: 2;
        column-gap: 4rem;
    }
}

.research-argument p {
    margin-bottom: 1rem;
}

/* Features Section - Mobile First */
.features {
    padding: var(--spacing-section) 1.5rem;
    background: white;
    text-align: center;
}

@media (min-width: 768px) {
    .features {
        padding: var(--spacing-section) 2rem;
    }
}

.features h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .features h2 {
        font-size: 2.5rem;
    }
}

.sub-head {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .sub-head {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 1.2rem;
    }
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 1rem;
    }
}

/* Screenshots Gallery Section - Mobile First */
.screenshots-section {
    padding: var(--spacing-section) 1.5rem;
    background-color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .screenshots-section {
        padding: var(--spacing-section) 2rem;
    }
}

.screenshots-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .screenshots-section h2 {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
}

@media (min-width: 1100px) {
    .carousel-container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 2.5rem;
    }
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-light);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
}

.carousel-slide.active {
    display: flex;
}

.screenshot-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-info {
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .screenshot-info {
        padding: 2.5rem 3rem;
    }
}

.screenshot-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .screenshot-info h3 {
        font-size: 1.6rem;
    }
}

.screenshot-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .screenshot-info p {
        font-size: 1.05rem;
    }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

@media (min-width: 768px) {
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
}

.carousel-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

@media (min-width: 1100px) {
    .carousel-prev {
        left: -60px;
    }
    
    .carousel-next {
        right: -60px;
    }
}

.carousel-btn svg {
    stroke: var(--color-dark);
    transition: stroke 0.3s;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot:hover {
    border-color: var(--color-accent);
}

.carousel-dot.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* Reality Check Section - Mobile First */
.reality-check {
    padding: var(--spacing-section) 1.5rem;
    background-color: #f0f4f8;
    text-align: center;
}

@media (min-width: 768px) {
    .reality-check {
        padding: var(--spacing-section) 2rem;
    }
}

.reality-check h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .reality-check h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

.reality-content {
    max-width: 800px;
    margin: 0 auto;
}

.pain-points-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pain-points-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

.callout-bubble {
    background-color: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 100%;
    position: relative;
    transition: transform 0.3s ease;
    text-align: left;
}

@media (min-width: 768px) {
    .callout-bubble {
        max-width: 300px;
        padding: 1.5rem 2rem;
    }
    
    .callout-bubble:nth-child(even) {
        margin-top: 3rem;
    }
    
    .callout-bubble:nth-child(3) {
        margin-top: 1.5rem;
    }
}

.callout-bubble:hover {
    transform: translateY(-3px);
}

.callout-bubble p {
    font-size: 1rem;
    font-style: italic;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.5;
    padding-left: 1.5rem;
}

@media (min-width: 768px) {
    .callout-bubble p {
        font-size: 1.2rem;
    }
}

.callout-bubble::before {
    content: '"';
    font-family: serif;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 1rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .callout-bubble::before {
        font-size: 4rem;
    }
}

.familiar-question {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .familiar-question {
        font-size: 1.8rem;
        margin-top: 3rem;
    }
}

.reality-bridge {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666;
}

@media (min-width: 768px) {
    .reality-bridge {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

.the-fix {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-accent);
}

@media (min-width: 768px) {
    .the-fix {
        padding: 3rem;
    }
}

.the-fix h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .the-fix h3 {
        font-size: 1.8rem;
    }
}

.the-fix p {
    font-size: 1rem;
    color: #444;
}

@media (min-width: 768px) {
    .the-fix p {
        font-size: 1.2rem;
    }
}

/* Testimonials Section - Mobile First */
.testimonials {
    padding: var(--spacing-section) 1.5rem;
    background-color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonials {
        padding: var(--spacing-section) 2rem;
    }
}

.testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials h2 {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    position: relative;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2.5rem;
    }
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .testimonial-card::before {
        font-size: 4rem;
        left: 1.5rem;
    }
}

.quote {
    font-size: 1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .quote {
        font-size: 1.1rem;
    }
}

.author {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.9rem;
}

/* Partners Section - Mobile First */
.partners {
    padding: 2rem 1.5rem 3rem;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

@media (min-width: 768px) {
    .partners {
        padding: 2.5rem 2rem 4rem;
    }
}

.partners .container {
    max-width: 100%;
    padding: 0;
}

.partners-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .partners-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .partners-logos {
        gap: 1.5rem 2.5rem;
    }
}

@media (min-width: 1100px) {
    .partners-logos {
        gap: 1.5rem 3rem;
    }
}

.partner-logo {
    height: auto;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Individual logo sizing to balance visual weight */
.partner-logo[alt="Microsoft"] {
    height: 30px;
}

.partner-logo[alt="Disney"] {
    height: 40px;
}

.partner-logo[alt="Intel"] {
    height: 40px;
}

.partner-logo[alt="HP"] {
    height: 40px;
}

.partner-logo[alt="Samsung"] {
    height: 38px;
}

.partner-logo[alt="Acer"] {
    height: 28px;
}

.partner-logo[alt="ASUS"] {
    height: 22px;
}

@media (min-width: 768px) {
    .partner-logo[alt="Microsoft"] {
        height: 32px;
    }
    
    .partner-logo[alt="Disney"] {
        height: 44px;
    }
    
    .partner-logo[alt="Intel"] {
        height: 44px;
    }
    
    .partner-logo[alt="HP"] {
        height: 44px;
    }
    
    .partner-logo[alt="Samsung"] {
        height: 42px;
    }
    
    .partner-logo[alt="Acer"] {
        height: 30px;
    }
    
    .partner-logo[alt="ASUS"] {
        height: 24px;
    }
}

.partner-logo:hover {
    opacity: 1;
}

/* Pricing Section - Mobile First */
.pricing {
    padding: var(--spacing-section) 1.5rem;
    background-color: #f8f9fa;
    text-align: center;
    margin-top: 0;
}

@media (min-width: 768px) {
    .pricing {
        padding: calc(var(--spacing-section) + 1rem) 2rem var(--spacing-section);
    }
}

.pricing h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .pricing h2 {
        font-size: 2.5rem;
    }
}

.pricing .sub-head {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing .sub-head {
        font-size: 1.2rem;
    }
}

.org-link-wrapper {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .org-link-wrapper {
        margin-bottom: 4rem;
    }
}

.org-link {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .org-link {
        font-size: 1.1rem;
    }
}

.org-link:hover {
    border-bottom-color: var(--color-accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        align-items: center;
    }
}

.pricing-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #eee;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 3rem 2rem;
    }
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(1);
}

@media (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.05);
        z-index: 1;
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .badge {
        font-size: 0.9rem;
    }
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .pricing-card h3 {
        font-size: 1.5rem;
    }
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

@media (min-width: 768px) {
    .price {
        font-size: 3rem;
    }
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    font-family: var(--font-sans);
}

.price-desc {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .pricing-features {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
}

.pricing-features li {
    margin-bottom: 0.8rem;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.cta-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border-radius: 4px;
}

.cta-secondary:hover {
    background-color: var(--color-dark);
    color: white;
}

.pricing-card.featured .cta-primary {
    width: 100%;
    border-radius: 4px;
}

/* Final CTA Section - Mobile First */
.final-cta {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: white;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 6rem 0;
    }
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.final-cta .micro-copy {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer - Mobile First */
footer {
    background-color: var(--color-dark-pleasant);
    color: white;
    padding: 3rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-content: space-between;
        text-align: left;
        margin-bottom: 4rem;
        max-width: 1200px;
        padding: 0 2rem;
    }
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-bottom {
        font-size: 0.9rem;
    }
}

/* Footer CTA Section */
.footer-cta-section {
    text-align: center;
}

.footer-cta {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .footer-cta {
        margin-top: 2rem;
    }
}

/* Kiosk-specific Styles - Mobile First */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-dark-pleasant);
    padding: 2rem 1rem;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.stat-item:nth-child(3n) {
    border-right: none;
}

.stat-item:nth-last-child(-n+3) {
    border-bottom: none;
}

@media (max-width: 899px) {
    .stat-item:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    .stat-item:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 599px) {
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    }
    .stat-item:last-child {
        border-bottom: none !important;
    }
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin-top: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* Kiosk Features Grid */
.kiosk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    border: none;
}

@media (min-width: 768px) {
    .kiosk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
}

.kiosk-grid .feature-card {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 2rem 1.5rem;
    transition: filter 0.3s;
    height: 100%;
}

@media (min-width: 768px) {
    .kiosk-grid .feature-card {
        padding: 3rem;
    }
}

.kiosk-grid .feature-card:nth-child(1) { background-color: rgba(212, 140, 112, 0.07); }
.kiosk-grid .feature-card:nth-child(2) { background-color: rgba(212, 140, 112, 0.14); }
.kiosk-grid .feature-card:nth-child(3) { background-color: rgba(212, 140, 112, 0.21); }
.kiosk-grid .feature-card:nth-child(4) { background-color: rgba(212, 140, 112, 0.28); }

.kiosk-grid .feature-card:hover {
    transform: none;
    box-shadow: none;
    filter: brightness(0.95);
}

.kiosk-grid h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .kiosk-grid h3 {
        font-size: 2rem;
    }
}

.kiosk-grid ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    padding-left: 1.2rem !important;
}

@media (min-width: 768px) {
    .kiosk-grid ul {
        font-size: 1.1rem;
    }
}

.kiosk-grid ul li {
    margin-bottom: 0.8rem !important;
}

/* Benefits Grid - Mobile First */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 4rem;
        margin-top: 3rem;
    }
}

.benefits-grid li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.benefits-grid li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .benefits-grid li::before {
        font-size: 2rem;
    }
}

.benefits-grid strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-family: var(--font-serif);
}

@media (min-width: 768px) {
    .benefits-grid strong {
        font-size: 1.5rem;
    }
}

.benefits-grid p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .benefits-grid p {
        font-size: 1.2rem;
    }
}

/* Hero Actions Wrapper (Kiosk) */
.hero-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-links-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-links-row {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Video Modal - Mobile First */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.show {
    display: flex;
}

.video-modal-content {
    position: relative;
    background-color: #000;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

@media (min-width: 768px) {
    .video-modal-content {
        width: 80%;
    }
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.close-modal {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: -35px;
    right: 0;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Legal Content Pages - Mobile First */
.legal-content {
    padding: var(--spacing-section) 1.5rem;
    background-color: white;
}

@media (min-width: 768px) {
    .legal-content {
        padding: var(--spacing-section) 2rem;
    }
}

/* Minimal Navigation for Legal Pages */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .nav-minimal {
        padding: 1rem 2rem;
    }
}

.nav-minimal .login-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.legal-content .container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 900px) {
    .legal-content .container {
        flex-direction: row;
        gap: 3rem;
    }
}

/* Legal Sidebar Navigation */
.legal-sidebar {
    display: none;
}

@media (min-width: 900px) {
    .legal-sidebar {
        display: block;
        flex: 0 0 240px;
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav ul li {
    margin-bottom: 0.5rem;
}

.legal-nav ul li a {
    display: block;
    padding: 0.5rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.legal-nav ul li a:hover {
    color: var(--color-accent);
    border-left-color: var(--color-accent);
}

/* Legal Main Content */
.legal-main {
    flex: 1;
    min-width: 0;
}

.legal-main h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .legal-main h1 {
        font-size: 2.5rem;
    }
}

.business-license-link {
    margin-bottom: 2rem;
}

.business-license-link a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.business-license-link a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.legal-intro {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .legal-intro {
        padding: 2rem;
    }
}

.legal-intro p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .legal-section h2 {
        font-size: 1.6rem;
    }
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.legal-section h4 {
    font-size: 1.05rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 600;
}

.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.code-example {
    background-color: #f8f9fa;
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 4px;
}

.code-example h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.code-example pre {
    background-color: #1a1a1a;
    color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 0;
}

.code-example code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.legal-footer a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.legal-footer a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Contact Page */
.contact-section {
    padding: var(--spacing-section) 2rem;
    background-color: white;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content-wrapper {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Contact Form */
.contact-form-container {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .btn-primary:hover {
    background-color: var(--color-accent-hover);
}

/* FAQ Section on Contact Page */
.faq-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-more {
    margin-top: 2rem;
    text-align: center;
}

.faq-more a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.faq-more a:hover {
    color: var(--color-accent-hover);
}
