* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c4ff61;
    --primary-dark: #a8e052;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --border-radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 32px rgba(196, 255, 97, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
}

body::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 30, 30, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(40, 40, 40, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(35, 35, 35, 0.5) 0%, transparent 50%);
}

body::after {
    background: 
        radial-gradient(circle at 60% 70%, rgba(25, 25, 25, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(45, 45, 45, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 70% 40%, rgba(38, 38, 38, 0.5) 0%, transparent 50%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.navbar {
    background: var(--bg-card);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-apply {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(196, 255, 97, 0.3);
}

.btn-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196, 255, 97, 0.4);
}

.btn-apply:active {
    transform: translateY(0);
}

.hero {
    padding: 80px 0 120px;
    background: url('bgneuro.png') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(196, 255, 97, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196, 255, 97, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-person {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.glow-badge {
    position: absolute;
    background: rgba(196, 255, 97, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 255, 97, 0.4);
    padding: 12px 24px;
    border-radius: 16px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 8px 32px rgba(196, 255, 97, 0.3);
    z-index: 2;
}

.glow-1 {
    top: 15%;
    right: 10%;
}

.glow-2 {
    top: 45%;
    left: 5%;
}

.glow-3 {
    bottom: 25%;
    right: 15%;
}

.comparison {
    padding: 100px 0;
    background: #141414;
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.comparison-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-4px);
}

.comparison-item:nth-child(1) {
    border: 2px solid #ff4444;
    box-shadow: 0 8px 32px rgba(255, 68, 68, 0.15);
}

.comparison-item:nth-child(1):hover {
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.25);
}

.comparison-item:nth-child(2) {
    border: 2px solid #ff9944;
    box-shadow: 0 8px 32px rgba(255, 153, 68, 0.15);
}

.comparison-item:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(255, 153, 68, 0.25);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, rgba(196, 255, 97, 0.05) 0%, rgba(196, 255, 97, 0.02) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(196, 255, 97, 0.3), 0 0 60px rgba(196, 255, 97, 0.2);
}

.comparison-item.highlight:hover {
    box-shadow: 0 12px 40px rgba(196, 255, 97, 0.4), 0 0 80px rgba(196, 255, 97, 0.3);
}

.comparison-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.comparison-item.highlight .comparison-title {
    color: var(--primary);
}

.comparison-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
}

.comparison-item.highlight .stat-value {
    color: var(--primary);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 12px;
    transition: width 1s ease-out;
}

.comparison-item.highlight .progress-fill {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 0 20px rgba(196, 255, 97, 0.4);
}

.comparison-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-description {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
}

.comparison-description .highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.btn-cta {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 22px 56px;
    border-radius: 14px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 32px rgba(196, 255, 97, 0.5), 0 0 60px rgba(196, 255, 97, 0.3);
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(196, 255, 97, 0.6), 0 0 80px rgba(196, 255, 97, 0.4);
}

.btn-cta:active {
    transform: translateY(-1px);
}

.how-it-works {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--primary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 60px;
    gap: 20px;
}

.step {
    flex: 1;
    background: linear-gradient(135deg, rgba(196, 255, 97, 0.03) 0%, rgba(26, 26, 26, 1) 100%);
    border: 2px solid rgba(196, 255, 97, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(196, 255, 97, 0.2), 0 0 60px rgba(196, 255, 97, 0.1);
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(196, 255, 97, 0.3), 0 0 80px rgba(196, 255, 97, 0.2);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(196, 255, 97, 0.5), 0 0 40px rgba(196, 255, 97, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(196, 255, 97, 0.3);
}

.step-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
}

.arrow-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arrow-separator svg {
    opacity: 0.8;
}

.cta-wrapper {
    text-align: center;
}

.results {
    padding: 100px 0;
    background: #141414;
    position: relative;
    z-index: 1;
}

.results-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.results-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.results-tab {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.results-tab:hover {
    border-color: rgba(196, 255, 97, 0.4);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(196, 255, 97, 0.15);
}

.results-tab.active {
    background: linear-gradient(135deg, rgba(196, 255, 97, 0.15) 0%, rgba(196, 255, 97, 0.05) 100%);
    border-color: var(--primary);
    box-shadow: 0 6px 28px rgba(196, 255, 97, 0.35), 0 0 60px rgba(196, 255, 97, 0.2);
    transform: translateX(8px);
}

.tab-period {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

.results-tab.active .tab-period {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(196, 255, 97, 0.4);
}

.results-content {
    position: relative;
    min-height: 500px;
}

.result-panel {
    display: none;
    flex-direction: column;
    gap: 32px;
    animation: fadeIn 0.4s ease;
}

.result-panel.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-stats {
    background: linear-gradient(135deg, rgba(196, 255, 97, 0.03) 0%, rgba(26, 26, 26, 1) 100%);
    border: 2px solid rgba(196, 255, 97, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(196, 255, 97, 0.2), 0 0 60px rgba(196, 255, 97, 0.1);
}

.result-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.3;
}

.result-title .success-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(196, 255, 97, 0.6), 0 0 80px rgba(196, 255, 97, 0.3);
    display: inline-block;
    margin-right: 8px;
}

.result-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 500;
}

.result-screenshot {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.result-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.screenshot-expand {
    position: absolute;
    top: 32px;
    right: 32px;
    background: rgba(196, 255, 97, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bg-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 255, 97, 0.3);
    z-index: 10;
}

.screenshot-expand:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(196, 255, 97, 0.5);
}

.screenshot-expand:active {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-image {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 16px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.calculator {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.calculator-input {
    flex: 1;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 32px;
    font-size: 20px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.calculator-input::placeholder {
    color: var(--text-gray);
}

.calculator-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 255, 97, 0.1);
}

.calculator-input::-webkit-outer-spin-button,
.calculator-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculator-input[type=number] {
    -moz-appearance: textfield;
}

.btn-calculate {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 24px 48px;
    border-radius: 16px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(196, 255, 97, 0.4);
    white-space: nowrap;
}

.btn-calculate:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 32px rgba(196, 255, 97, 0.5);
}

.btn-calculate:active {
    transform: translateY(-1px);
}

.calculator-result {
    display: none;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.calculator-result.active {
    display: grid;
}

.result-box {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
}

.result-box.profit {
    background: linear-gradient(135deg, rgba(196, 255, 97, 0.1) 0%, rgba(196, 255, 97, 0.05) 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(196, 255, 97, 0.2);
}

.result-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.result-value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
}

.result-value-profit {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(196, 255, 97, 0.3);
}

.result-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-section {
    padding: 100px 0;
    background: #141414;
    position: relative;
    z-index: 1;
}

.form-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.form-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.form-main-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 0 40px rgba(196, 255, 97, 0.5);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.application-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 24px;
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-gray);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 255, 97, 0.1);
    background: rgba(196, 255, 97, 0.02);
}

.btn-submit {
    width: 100%;
    background: var(--text-light);
    color: var(--bg-dark);
    border: 3px solid var(--primary);
    padding: 20px 32px;
    border-radius: 14px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(196, 255, 97, 0.6), 0 0 60px rgba(196, 255, 97, 0.3), inset 0 0 20px rgba(196, 255, 97, 0.1);
    margin-top: 12px;
}

.btn-submit:hover {
    background: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(196, 255, 97, 0.8), 0 0 80px rgba(196, 255, 97, 0.4), inset 0 0 30px rgba(196, 255, 97, 0.2);
    border-color: var(--primary);
}

.btn-submit:active {
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-person {
        max-height: 500px;
    }

    .nav-links {
        gap: 24px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison {
        padding: 60px 0;
    }

    .comparison-description {
        font-size: 18px;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .arrow-separator {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .results-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .results-tabs {
        flex-direction: row;
    }

    .results {
        padding: 60px 0;
    }

    .result-title {
        font-size: 26px;
    }

    .result-title .success-number {
        font-size: 48px;
    }

    .result-description {
        font-size: 16px;
    }

    .result-stats {
        padding: 32px;
    }

    .comparison-description {
        font-size: 20px;
    }

    .btn-cta {
        padding: 20px 48px;
        font-size: 18px;
    }

    .calculator {
        padding: 60px 0;
    }

    .calculator-input-group {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .calculator-input {
        width: 100%;
    }

    .btn-calculate {
        width: 100%;
    }

    .calculator-result {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .result-arrow {
        transform: rotate(90deg);
    }

    .result-value {
        font-size: 36px;
    }

    .result-value-profit {
        font-size: 40px;
    }

    .form-section {
        padding: 60px 0;
    }

    .form-main-title {
        font-size: 36px;
    }

    .form-subtitle {
        font-size: 18px;
    }

    .application-form {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 48px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-person {
        max-height: 400px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .logo img {
        height: 40px;
    }

    .glow-badge {
        font-size: 18px;
        padding: 8px 16px;
    }

    .comparison-title {
        font-size: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .comparison-item {
        padding: 24px;
    }

    .btn-cta {
        width: 100%;
        padding: 18px 40px;
        font-size: 17px;
    }

    .comparison-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .step {
        padding: 32px 24px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 16px;
    }

    .results-tabs {
        flex-direction: column;
    }

    .results-tab {
        padding: 20px 24px;
    }

    .tab-period {
        font-size: 18px;
    }

    .result-stats {
        padding: 28px 20px;
    }

    .result-title {
        font-size: 20px;
    }

    .result-title .success-number {
        font-size: 40px;
    }

    .result-description {
        font-size: 15px;
    }

    .results-content {
        min-height: 400px;
    }

    .screenshot-expand {
        width: 40px;
        height: 40px;
        top: 28px;
        right: 28px;
    }

    .screenshot-expand svg {
        width: 20px;
        height: 20px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    .calculator-input {
        padding: 20px 24px;
        font-size: 18px;
    }

    .btn-calculate {
        padding: 20px 32px;
        font-size: 16px;
    }

    .result-box {
        padding: 28px 20px;
    }

    .result-value {
        font-size: 32px;
    }

    .result-value-profit {
        font-size: 36px;
    }

    .application-form {
        padding: 28px 20px;
    }

    .form-main-title {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 16px;
    }

    .form-input {
        padding: 16px 20px;
        font-size: 15px;
    }

    .btn-submit {
        padding: 18px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-person {
        max-height: 320px;
    }
}

