:root {
    --color-background: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-surface-elevated: #2a2a2a;
    --color-foreground: #e8e8e8;
    --color-foreground-muted: #a0a0a0;
    --color-accent: #000000;
    --color-accent-hover: #333333;
    --color-border: #333333;
    --color-gradient-start: #1a1a1a;
    --color-gradient-end: #0a0a0a;
    --font-family: "Lora", serif;
    --font-size-base: 15px;
    --radius: 0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-surface);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-foreground);
    text-decoration: none;
    letter-spacing: 2px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.nav-desktop {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-desktop a {
    color: var(--color-foreground-muted);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-foreground);
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--color-foreground);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-foreground);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 92px;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-surface);
    padding: 80px 40px 40px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid var(--color-border);
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    color: var(--color-foreground);
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav-mobile a:hover {
    padding-left: 10px;
    color: var(--color-foreground-muted);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.main-container {
    background-color: var(--color-background);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-foreground-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 45px;
    background-color: var(--color-accent);
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--color-foreground);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    font-weight: 600;
}

.btn:hover {
    box-shadow: 8px 8px 0 var(--color-foreground);
    transform: translate(-4px, -4px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-surface-elevated);
    box-shadow: 8px 8px 0 var(--color-border);
}

.section {
    padding: 100px 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-foreground-muted);
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--color-surface);
    padding: 40px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-foreground-muted);
}

.card-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-foreground-muted);
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
}

.service-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: scale(1.03);
    border-color: var(--color-foreground);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-foreground-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-surface-elevated);
    padding: 30px;
    border-left: 3px solid var(--color-border);
    border-bottom: 3px solid var(--color-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-left-color: var(--color-foreground);
    border-bottom-color: var(--color-foreground);
    transform: translateX(5px);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--color-foreground-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 13px;
    color: var(--color-foreground-muted);
}

.faq-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-border);
    overflow-y: hidden;
}

.faq-tab {
    padding: 15px 30px;
    background: none;
    border: none;
    color: var(--color-foreground-muted);
    font-family: var(--font-family);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.faq-tab.active {
    color: var(--color-foreground);
    border-bottom-color: var(--color-foreground);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item {
    padding: 30px;
    border-left: 3px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 20px;
    transition: var(--transition);
}

.faq-item:hover {
    border-left-color: var(--color-foreground);
    background-color: var(--color-surface);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--color-foreground-muted);
    line-height: 1.8;
}

.form-container {
    background-color: var(--color-surface);
    padding: 50px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--color-background);
    border: 2px solid var(--color-border);
    color: var(--color-foreground);
    font-family: var(--font-family);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-foreground);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.gallery-container {
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.gallery-track::-webkit-scrollbar {
    height: 8px;
}

.gallery-track::-webkit-scrollbar-track {
    background: var(--color-surface);
}

.gallery-track::-webkit-scrollbar-thumb {
    background: var(--color-border);
}

.gallery-item {
    min-width: 400px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border);
    color: var(--color-foreground);
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.gallery-btn:hover {
    background-color: var(--color-foreground);
    color: var(--color-background);
}

.map-container {
    width: 100%;
    height: 400px;
    border: 2px solid var(--color-border);
}

.cta-section {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.cta-text {
    font-size: 20px;
    color: var(--color-foreground-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
    padding: 80px 20px 40px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-column:first-child {
    align-items: flex-start;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: var(--color-foreground-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-nav a:hover {
    color: var(--color-foreground);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p,
.footer-contact a {
    color: var(--color-foreground-muted);
    font-size: 15px;
}

.footer-contact a:hover {
    color: var(--color-foreground);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    color: var(--color-foreground-muted);
    font-size: 14px;
}

.checkbox-link {
    color: var(--color-foreground);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-link:hover {
    color: var(--color-foreground-muted);
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-mobile {
        display: block;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        align-items: flex-start !important;
    }

    .map-container {
        width: 100%;
    }

    .faq-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .card {
        padding: 25px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .gallery-item {
        min-width: 300px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 13px;
    }

    .contact-section {
        padding: 60px 10px;
    }

    .info-main a {
        font-size: 18px;
    }
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.bg-surface {
    background-color: var(--color-surface);
}

.border-box {
    border: 1px solid var(--color-border);
    padding: 40px;
}

.methodology-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.methodology-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
}

.process-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-foreground-muted);
}

.process-item:last-child {
    border-bottom: none;
}

.process-step {
    color: var(--color-foreground);
}

.strategy-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.strategy-content {
    max-width: 600px;
    text-align: left;
}

.strategy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.strategy-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.strategy-buttons {
    display: flex;
    gap: 20px;
}

.strategy-image {
    max-width: 400px;
    margin-left: auto;
}

.strategy-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.strategy-image img:hover {
    transform: scale(1.05);
}

@media (min-width: 900px) {
    .strategy-callout .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .strategy-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .strategy-image {
        margin: 0 auto;
    }

    .strategy-buttons {
        justify-content: center;
    }
}

.hero-about {
    min-height: 60vh;
}

.story-grid {
    gap: 80px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
    font-size: 17px;
}

.story-image {
    width: 100%;
}

.story-img {
    width: 100%;
    height: auto;
    border: 2px solid var(--color-border);
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

.team-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-role {
    color: var(--color-foreground-muted);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--color-foreground-muted);
    line-height: 1.8;
}

.methodology-steps {
    max-width: 900px;
    margin: 0 auto;
}

.methodology-step {
    padding: 40px;
    border-left: 4px solid var(--color-foreground);
    margin-bottom: 40px;
    background-color: var(--color-surface-elevated);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 20px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.vision-text-small {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-section {
    padding-top: 140px;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.contact-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--color-foreground-muted);
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-grid {
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-foreground-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-main {
    font-size: 22px;
    color: var(--color-foreground);
    margin-bottom: 10px;
}

.info-main a {
    color: var(--color-foreground);
}

.info-main a:hover {
    color: var(--color-foreground-muted);
}

.info-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-full {
    width: 100%;
}

.strategy-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.strategy-content {
    max-width: 600px;
    text-align: left;
}

.strategy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.strategy-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.strategy-buttons {
    display: flex;
    gap: 20px;
}

.strategy-image {
    max-width: 400px;
    margin-left: auto;
}

.strategy-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.strategy-image img:hover {
    transform: scale(1.05);
}

@media (min-width: 900px) {
    .strategy-callout .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .strategy-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .strategy-image {
        margin: 0 auto;
    }

    .strategy-buttons {
        justify-content: center;
    }
}

.disclaimer-section {
    padding-top: 140px;
}

.disclaimer-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}

.disclaimer-update {
    color: var(--color-foreground-muted);
    margin-bottom: 60px;
    font-size: 16px;
}

.disclaimer-content {
    max-width: 900px;
}

.disclaimer-section {
    margin-bottom: 50px;
}

.disclaimer-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.disclaimer-link {
    color: var(--color-foreground);
    text-decoration: underline;
    transition: var(--transition);
}

.disclaimer-link:hover {
    color: var(--color-foreground-muted);
}

.strategy-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.strategy-content {
    max-width: 600px;
    text-align: left;
}

.strategy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.strategy-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.strategy-buttons {
    display: flex;
    gap: 20px;
}

.strategy-image {
    max-width: 400px;
    margin-left: auto;
}

.strategy-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.strategy-image img:hover {
    transform: scale(1.05);
}

@media (min-width: 900px) {
    .strategy-callout .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .strategy-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .strategy-image {
        margin: 0 auto;
    }

    .strategy-buttons {
        justify-content: center;
    }
}

.terms-section {
    padding-top: 140px;
}

.terms-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}

.terms-update {
    color: var(--color-foreground-muted);
    margin-bottom: 60px;
    font-size: 16px;
}

.terms-content {
    max-width: 900px;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-link {
    color: var(--color-foreground);
    text-decoration: underline;
    transition: var(--transition);
}

.terms-link:hover {
    color: var(--color-foreground-muted);
}

.refund-section {
    padding-top: 140px;
}

.refund-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}

.refund-update {
    color: var(--color-foreground-muted);
    margin-bottom: 60px;
    font-size: 16px;
}

.refund-content {
    max-width: 900px;
}

.refund-section {
    margin-bottom: 50px;
}

.refund-text {
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.refund-link {
    color: var(--color-foreground);
    text-decoration: underline;
    transition: var(--transition);
}

.refund-link:hover {
    color: var(--color-foreground-muted);
}

.refund-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.refund-item {
    padding: 8px 0;
    color: var(--color-foreground-muted);
}

.strategy-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.strategy-content {
    max-width: 600px;
    text-align: left;
}

.strategy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.strategy-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.strategy-buttons {
    display: flex;
    gap: 20px;
}

.strategy-image {
    max-width: 400px;
    margin-left: auto;
}

.strategy-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.strategy-image img:hover {
    transform: scale(1.05);
}

@media (min-width: 900px) {
    .strategy-callout .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .strategy-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .strategy-image {
        margin: 0 auto;
    }

    .strategy-buttons {
        justify-content: center;
    }
}

.footer-links {
    margin-top: 20px;
}

.footer-link {
    color: var(--color-foreground-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-foreground);
}

.connect-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.connect-content {
    max-width: 600px;
    text-align: left;
}

.connect-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.connect-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.connect-buttons {
    display: flex;
    gap: 20px;
}

.connect-image {
    max-width: 400px;
    margin-left: auto;
}

.connect-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.connect-image img:hover {
    transform: scale(1.05);
}

.mission-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.mission-content {
    max-width: 600px;
    text-align: left;
}

.mission-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.mission-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-buttons {
    display: flex;
    gap: 20px;
}

.mission-image {
    max-width: 400px;
    margin-left: auto;
}

.mission-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.mission-image img:hover {
    transform: scale(1.05);
}

.mastery-callout {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
}

.mastery-content {
    max-width: 600px;
    text-align: left;
}

.mastery-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.mastery-text {
    font-size: 18px;
    color: var(--color-foreground-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mastery-buttons {
    display: flex;
    gap: 20px;
}

.mastery-image {
    max-width: 400px;
    margin-left: auto;
}

.mastery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.mastery-image img:hover {
    transform: scale(1.05);
}

.hero-thanks {
    z-index: 1;
}

@media (min-width: 900px) {

    .connect-callout .container,
    .mission-callout .container,
    .mastery-callout .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }
}

@media (max-width: 900px) {

    .connect-content,
    .mission-content,
    .mastery-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .connect-image,
    .mission-image,
    .mastery-image {
        margin: 0 auto;
    }

    .connect-buttons,
    .mission-buttons,
    .mastery-buttons {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .disclaimer-title,
    .refund-title,
    .terms-title {
        font-size: 40px;
    }
}