/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange-primary: #ec6333;
    --orange-secondary: #ff7f45;
    --text-dark: #0a0a0a;
    --text-gray: #333;
    --text-light-gray: #5e5e5e;
    --text-lighter-gray: #979797;
    --bg-light: #fbfbfb;
    --white: #fff;
    --border-light: #ededed;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--white);
}

/* Password Protection Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 24px;
}

.password-overlay__content {
    background-color: var(--white);
    border-radius: 24px;
    padding: 48px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.password-overlay__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 8px;
}

.password-overlay__subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.password-form__input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.password-form__input:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.password-form__error {
    color: #d32f2f;
    font-size: 14px;
    min-height: 20px;
    margin: 0;
    text-align: left;
}

.password-form__submit {
    width: 100%;
    margin-top: 8px;
}

/* Main Content */
.main-content {
    display: block;
}

/* Header */
.header {
    background-color: var(--orange-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__content_wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}

.navigation__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navigation__brand {
    color: var(--white);
    font-size: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    line-height: 1.2;
}

.navigation__brand__main {
    font-family: 'Cooper Black', 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-variant: normal;
}

.navigation__brand__main span.navigation__brand__capital {
    text-transform: uppercase;
    display: inline;
}

.navigation__brand__capital {
    text-transform: uppercase;
}

.navigation__brand__com {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9em;
    margin-left: 2px;
}

.navigation__brand:hover {
    text-decoration: none;
}

.navigation_menu__list {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.navigation_menu__link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.6px;
    padding: 8px 16px;
    transition: text-decoration 0.2s ease;
}

.navigation_menu__link:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    padding: 120px 24px;
    text-align: center;
    color: var(--white);
}

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

.hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero__cta_wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 28px;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    border: 1px solid;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 42px;
}

.button--primary {
    background-color: var(--orange-secondary);
    border-color: var(--orange-secondary);
    color: var(--white);
}

.button--primary:hover {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.button--secondary {
    background-color: var(--white);
    border-color: var(--orange-secondary);
    color: var(--orange-secondary);
}

.button--secondary:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

/* Section Styles */
.section {
    padding: 80px 24px;
}

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

.section__title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* CGT Desk Section */
.cgt-desk {
    background-color: var(--white);
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 24px;
}

.problem-solution__label {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.problem-solution__text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.who-for,
.what-we-offer,
.how-slvr {
    margin-bottom: 48px;
}

.who-for__title,
.what-we-offer__title,
.how-slvr__title,
.target-audience__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.who-for__text,
.what-we-offer__text,
.how-slvr__text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.features__item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.04);
}

.features__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 16px;
}

.features__list {
    list-style: none;
    padding: 0;
}

.features__list li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.features__list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
}

.features__text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.target-audience {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 48px;
}

.target-audience__list {
    list-style: none;
    padding: 0;
}

.target-audience__list li {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.target-audience__list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 20px;
}

.section__cta {
    text-align: center;
    margin-top: 48px;
}

/* Silver Stream Section */
.silver-stream {
    background-color: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.steps__item {
    text-align: center;
    background-color: var(--white);
    padding: 40px 24px;
    border-radius: 24px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.04);
}

.steps__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--orange-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.steps__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.steps__text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.disclaimer {
    background-color: #fff0d3;
    border-left: 4px solid var(--orange-primary);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.disclaimer__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

/* How We Work Section */
.how-we-work {
    background-color: var(--white);
}

.process-guardrails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}

.process-guardrails__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 32px;
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.process-list__item {
    counter-increment: step-counter;
    margin-bottom: 32px;
    padding-left: 48px;
    position: relative;
}

.process-list__item:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--orange-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.process-list__item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-list__item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.guardrails-list {
    list-style: none;
    padding: 0;
}

.guardrails-list__item {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.guardrails-list__item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
}

.contact .section__title {
    color: var(--white);
}

.contact__description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form__field {
    margin-bottom: 24px;
}

.contact-form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.contact-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-gray);
    cursor: pointer;
}

.contact-form__checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--orange-primary);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__submit {
    width: 100%;
    margin-top: 32px;
    padding: 16px 32px;
    font-size: 16px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 48px 24px;
}

.footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer__brand_name {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer__brand_sub {
    font-size: 14px;
    color: var(--text-lighter-gray);
    margin-bottom: 32px;
}

.footer__disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.footer__disclaimer_text {
    font-size: 14px;
    color: var(--text-lighter-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .password-overlay__content {
        padding: 32px 24px;
    }

    .password-overlay__title {
        font-size: 28px;
    }
    .navigation {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation_menu__list {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 16px;
    }

    .navigation__brand {
        font-size: 22px;
    }

    .hero {
        padding: 80px 24px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .section {
        padding: 56px 24px;
    }

    .section__title {
        font-size: 32px;
    }

    .problem-solution {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-guardrails {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

    .hero__cta_wrapper {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

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

