/* CHUNK 1: Navigation & Header Styles */

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

:root {
    /* Colors - Matching existing site */
    --background: hsl(0, 0%, 4%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(0, 0%, 8%);
    --border: hsl(0, 0%, 20%);
    --muted-foreground: hsl(0, 0%, 64%);
    --primary: hsl(0, 0%, 98%);
    --accent: hsl(0, 0%, 15%);
    
    /* Spacing */
    --header-height: 80px;
    --header-height-mobile: 64px;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.9;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

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

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.nav-link:hover {
    color: var(--foreground);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    outline: none;
}

.chevron {
    transition: transform 0.2s;
}

.dropdown-trigger.active .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 256px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    pointer-events: none;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-align: left;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.dropdown-item:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--background);
    background: var(--primary);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-desktop {
    display: none;
}

@media (min-width: 768px) {
    .btn-desktop {
        display: inline-flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--card);
    border-left: 1px solid var(--border);
    z-index: 101;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 6rem 1.5rem 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    width: 100%;
    text-align: left;
    min-height: 48px;
}

.mobile-nav-link:hover {
    color: var(--foreground);
}

/* Mobile Collapsible */
.mobile-collapsible {
    display: flex;
    flex-direction: column;
}

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

.collapsible-trigger .chevron {
    transition: transform 0.2s;
}

.collapsible-trigger.active .chevron {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
}

.collapsible-content.active {
    max-height: 600px;
}

.mobile-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    color: var(--muted-foreground);
    text-align: left;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    min-height: 48px;
}

.mobile-dropdown-item:hover {
    color: var(--foreground);
}

.btn-mobile {
    margin-top: 1.5rem;
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

/* Main Content Spacing */
main {
    padding-top: var(--header-height);
}

@media (max-width: 767px) {
    main {
        padding-top: var(--header-height-mobile);
    }
    
    .header-content {
        height: var(--header-height-mobile);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* CHUNK 2: Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Tablet optimization for longer headlines */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.25;
    }
}


.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--background);
    background: linear-gradient(135deg, var(--primary) 0%, hsl(0, 0%, 85%) 100%);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-hero:active {
    transform: translateY(0);
}

.arrow-icon {
    transition: transform 0.3s;
}

.btn-hero:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
        min-height: calc(100vh - var(--header-height-mobile));
    }
    
    .title-line {
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* CHUNK 3: FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--background);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-card.active {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

.faq-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.2s;
}

.faq-card:hover .faq-title {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.faq-card:hover .faq-chevron {
    color: var(--primary);
}

.faq-card.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content.active {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-content p {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    padding-top: 2rem;
    margin-top: 0;
}

/* Process Steps */
.process-steps {
    padding: 2rem 2rem;
    border-top: 1px solid rgba(51, 51, 51, 0.5);
}

.process-step {
    margin-bottom: 2rem;
}

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

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    padding: 0;
    border: none;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .faq-header {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-content p {
        padding: 0 1.5rem 1.25rem;
        padding-top: 1.25rem;
    }
    
    .process-steps {
        padding: 1.25rem 1.5rem;
    }
    
    .process-step {
        margin-bottom: 1.25rem;
    }
}

/* CHUNK 4: Service Tiles */
.services-section {
    padding: 5rem 0;
    background: var(--background);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card.active {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    min-height: 3rem;
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
    transition: color 0.2s;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-chevron {
    flex-shrink: 0;
    margin-left: 0.75rem;
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.service-card:hover .service-chevron {
    color: var(--primary);
}

.service-card.active .service-chevron {
    transform: rotate(180deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.service-content.active {
    max-height: 800px;
    transition: max-height 0.5s ease-in;
}

.service-detail {
    padding: 1rem;
    border-top: 1px solid rgba(51, 51, 51, 0.5);
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.service-detail p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--foreground);
    margin: 0;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--muted);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.platform-badge:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        padding: 1.25rem 1rem;
    }
    
    .service-title {
        font-size: 0.9375rem;
    }
    
    .service-detail {
        padding: 1rem;
    }
}

/* CHUNK 5: IntakeForm */
.intake-section {
    padding: 5rem 0;
    background: var(--background);
}

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

.intake-header {
    text-align: center;
    margin-bottom: 3rem;
}

.intake-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 700px;
    margin: 1rem auto 0;
}

.intake-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Client Selection */
.client-selection {
    text-align: center;
}

.selection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.selection-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.selection-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.selection-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: all 0.3s;
}

.selection-option:hover .option-radio {
    border-color: var(--primary);
}

.option-content {
    text-align: left;
}

.option-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.option-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Form Styles */
.intake-form {
    animation: fadeIn 0.3s;
}

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

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-back {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    background: none;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-back:hover {
    color: var(--foreground);
    border-color: var(--foreground);
}

.form-section {
    margin-bottom: 2rem;
}

.section-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.field-input,
.field-select,
.field-textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-family: inherit;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.field-input.error,
.field-select.error,
.field-textarea.error {
    border-color: #ef4444;
}

.field-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.field-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Consent */
.form-consent {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.6;
}

.consent-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    flex-shrink: 0;
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--background);
    background: linear-gradient(135deg, var(--primary) 0%, hsl(0, 0%, 85%) 100%);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.success-message p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .intake-section {
        padding: 3rem 0;
    }
    
    .intake-form-card {
        padding: 1.5rem;
    }
    
    .selection-options {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* CHUNK 6: Footer */
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.footer-link:hover {
    color: var(--primary);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    background: var(--input);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-message {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    min-height: 1rem;
}

.newsletter-message.success {
    color: #10b981;
}

.newsletter-message.error {
    color: #ef4444;
}

/* Social Section */
.social-section {
    margin-top: 1.5rem;
}

.social-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

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