/* Georgia Landing Page Styles */
/* Minimalist, card-based design inspired by Reddit Ads */

:root {
    --georgia-primary: #059669;
    --georgia-primary-hover: #047857;
    --georgia-bg: #FFFFFF;
    --georgia-bg-light: #F9FAFB;
    --georgia-text-primary: #111827;
    --georgia-text-secondary: #6B7280;
    --georgia-border: #E5E7EB;
    --georgia-error: #DC2626;
    --georgia-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --georgia-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --georgia-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.georgia-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--georgia-text-primary);
    background-color: var(--georgia-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header - Minimal and clean */
.georgia-header {
    background: var(--georgia-bg);
    border-bottom: 1px solid var(--georgia-border);
    padding: 1rem 0;
}

.georgia-header__content {
    display: flex;
    align-items: center;
}

.georgia-header__logo {
    display: block;
    line-height: 0;
}

.georgia-header__logo img {
    display: block;
    height: 36px;
    width: auto;
}

@media (max-width: 767px) {
    .georgia-header {
        padding: 0.75rem 0;
    }
}

/* Hero Section - Modern Card Elevation */
.georgia-hero {
    padding: 3rem 0 2rem;
    background-color: #F9FAFB;
}

.georgia-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "copy"
        "card"
        "trust";
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .georgia-hero__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "copy card"
            "trust card";
        gap: 4rem;
    }
}

.georgia-hero__copy {
    grid-area: copy;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.georgia-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: #111827;
}

@media (min-width: 768px) {
    .georgia-hero__title {
        font-size: 2.75rem;
    }
}

.georgia-hero__body {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--georgia-text-secondary);
    margin: 0;
}

/* Lead Card */
.georgia-hero__card-wrapper {
    grid-area: card;
    position: relative;
}

.georgia-lead-card {
    background: #FFFFFF;
    border: 1px solid var(--georgia-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.georgia-lead-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.georgia-lead-card--expanded {
    /* Card grows smoothly when expanded */
}

.georgia-lead-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: var(--georgia-text-primary);
}

.georgia-lead-card__errors {
    background-color: #FEE2E2;
    border: 1px solid #FCA5A5;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.georgia-lead-card__errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.georgia-lead-card__errors li {
    color: var(--georgia-error);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.georgia-lead-card__errors li:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.georgia-form__initial {
    display: flex;
    flex-direction: column;
}

.georgia-form__divider {
    margin: 1.5rem 0 1.25rem;
    text-align: center;
    position: relative;
}

.georgia-form__divider::before,
.georgia-form__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 100px);
    height: 1px;
    background-color: var(--georgia-border);
}

.georgia-form__divider::before {
    left: 0;
}

.georgia-form__divider::after {
    right: 0;
}

.georgia-form__divider span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--georgia-text-secondary);
    background-color: var(--georgia-bg);
}

.georgia-form__manual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.georgia-form__manual-field {
    display: flex;
    flex-direction: column;
}

@media (max-width: 640px) {
    .georgia-form__manual-grid {
        grid-template-columns: 1fr;
    }
    
    .georgia-form__divider::before,
    .georgia-form__divider::after {
        width: calc(50% - 80px);
    }
}

.georgia-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--georgia-text-primary);
    margin-bottom: 0.5rem;
}

.georgia-form__optional {
    font-weight: 400;
    color: var(--georgia-text-secondary);
    font-size: 0.8125rem;
}

.georgia-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 16px;
    border: 1px solid var(--georgia-border);
    border-radius: 8px;
    background-color: var(--georgia-bg);
    color: var(--georgia-text-primary);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.georgia-form__input:focus {
    outline: none;
    border: 2px solid var(--georgia-primary);
    padding: calc(0.75rem - 1px) calc(1rem - 1px);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.georgia-form__input--error {
    border-color: var(--georgia-error);
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Buttons */
.georgia-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.georgia-btn--primary {
    background: linear-gradient(to bottom, #10B981, #059669);
    color: white;
    margin-top: 1rem;
}

.georgia-btn--primary:hover {
    background: linear-gradient(to bottom, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: var(--georgia-shadow-md);
}

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

.georgia-btn--full {
    width: 100%;
}

/* Expanded Fields */
.georgia-form__expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.georgia-form__expanded--visible {
    max-height: 800px;
    opacity: 1;
    margin-top: 1.5rem;
}

.georgia-form__field {
    margin-bottom: 1.25rem;
}

.georgia-form__field:last-child {
    margin-bottom: 0;
}

/* Toggle/Radio Buttons */
.georgia-form__toggle {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.georgia-form__toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.georgia-form__toggle-option {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--georgia-border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    background-color: var(--georgia-bg);
}

.georgia-form__toggle input[type="radio"]:checked + .georgia-form__toggle-option {
    border-color: var(--georgia-primary);
    background-color: rgba(5, 150, 105, 0.05);
    color: var(--georgia-primary);
}

.georgia-form__toggle-option:hover {
    border-color: var(--georgia-primary);
}

/* Trust Bar - Positioned under heading */
.georgia-trust {
    padding: 0 0 2.5rem 0;
    background-color: #F9FAFB;
}

.georgia-trust-inline {
    grid-area: trust;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .georgia-trust-inline {
        margin-top: 3rem;
    }
}

.georgia-trust__text {
    text-align: left;
    font-size: 0.8125rem;
    color: var(--georgia-text-secondary);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Logo Slider */
.georgia-trust__slider {
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.georgia-trust__track {
    display: grid;
    grid-template-columns: repeat(20, 120px);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem 2rem;
    animation: discrete-scroll 40s linear infinite;
    grid-auto-flow: column;
    align-items: center;
}

.georgia-trust__track:hover {
    animation-play-state: paused;
}

@keyframes discrete-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.georgia-trust__logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.georgia-trust__logo {
    height: 36px;
    width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.georgia-trust__logo:hover {
    opacity: 0.8;
}

/* Step-by-Step Process */
.georgia-steps {
    padding: 2rem 0;
    background-color: var(--georgia-bg-light);
}

.georgia-steps__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.georgia-steps__step {
    font-size: 0.875rem;
    color: var(--georgia-text-secondary);
}

.georgia-steps__step strong {
    color: var(--georgia-primary);
    font-weight: 700;
}

.georgia-steps__divider {
    color: var(--georgia-primary);
    font-size: 1.25rem;
    font-weight: 300;
}

@media (max-width: 767px) {
    .georgia-steps {
        padding: 1.5rem 0;
    }
    
    .georgia-steps__row {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .georgia-steps__divider {
        transform: none;
    }
}

/* Legal Argument */
.georgia-legal {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.georgia-legal__headline {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--georgia-text-primary);
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.georgia-legal__copy {
    font-size: 0.9375rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.georgia-legal__copy em {
    font-style: italic;
    color: #6B7280;
}

@media (max-width: 767px) {
    .georgia-legal {
        padding: 2.5rem 0;
    }
    
    .georgia-legal__headline {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .georgia-legal__copy {
        font-size: 0.875rem;
    }
}

/* Process Footer */
.georgia-process {
    padding: 2rem 0;
    background-color: var(--georgia-bg-light);
}

.georgia-process__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.georgia-process__step {
    font-size: 0.875rem;
    color: var(--georgia-text-secondary);
}

.georgia-process__step strong {
    color: var(--georgia-primary);
    font-weight: 700;
}

.georgia-process__divider {
    color: var(--georgia-primary);
    font-size: 1.25rem;
    font-weight: 300;
}

@media (max-width: 767px) {
    .georgia-process {
        padding: 1.5rem 0;
    }
    
    .georgia-process__steps {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .georgia-process__divider {
        transform: rotate(90deg);
    }
}

/* Footer */
.georgia-footer {
    padding: 3rem 0 2rem;
    background-color: var(--georgia-bg-light);
}

.georgia-footer__accordion {
    margin: 0 auto 1.5rem;
    max-width: 800px;
}

.georgia-footer__summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--georgia-text-primary);
    list-style: none;
    padding: 0.75rem;
    border: 1px solid var(--georgia-border);
    border-radius: 8px;
    background-color: var(--georgia-bg);
    transition: background-color 0.2s ease;
}

.georgia-footer__summary::-webkit-details-marker {
    display: none;
}

.georgia-footer__summary:hover {
    background-color: var(--georgia-bg-light);
}

.georgia-footer__content {
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--georgia-text-secondary);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.georgia-footer__content p {
    margin: 0;
}

.georgia-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.georgia-footer__link {
    color: var(--georgia-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.georgia-footer__link:hover {
    color: var(--georgia-primary);
    text-decoration: underline;
}

.georgia-footer__separator {
    margin: 0;
    color: var(--georgia-text-secondary);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .georgia-hero {
        padding: 1.25rem 0 1rem;
    }

    .georgia-hero__grid {
        gap: 1.5rem;
    }
    
    .georgia-trust {
        padding: 1.5rem 0;
    }
    
    .georgia-hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .georgia-hero__body {
        font-size: 1rem;
    }
    
    .georgia-lead-card {
        padding: 1.25rem;
    }
    
    .georgia-trust {
        padding: 2rem 0;
    }
    
    .georgia-how {
        padding: 2rem 0;
    }

    .georgia-trust-inline {
        margin-top: 1.5rem;
        text-align: center;
    }

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

    .georgia-trust__slider {
        max-width: 100%;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .georgia-trust__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(2, auto);
        gap: 0.5rem 0.75rem;
        animation: none;
        transform: none;
    }

    .georgia-trust__track img:nth-child(n + 7) {
        display: none;
    }

    .georgia-trust__logo {
        width: 100%;
        height: 32px;
    }

    .georgia-form__divider {
        margin: 1rem 0 0.75rem;
    }

    .georgia-form__divider span {
        font-size: 0.8125rem;
    }

    .georgia-form__manual-grid {
        gap: 0.75rem;
    }

    .georgia-steps__row {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .georgia-steps__divider {
        transform: none;
        font-size: 0;
        display: none;
    }

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

    .georgia-footer__links {
        flex-wrap: nowrap;
    }
}
