:root {
    --color-primary: #FF3B30;
    --color-secondary: #1A1A1A;
    --color-accent: #FF3B30;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F8F8;
    --color-text: #1A1A1A;
    --color-text-light: #666666;
    --color-border: #E5E5E5;
    
    --font-primary: 'Onest', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: clamp(16px, 1vw + 14px, 18px);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--color-accent);
    z-index: 10000;
    transition: width 0.1s ease;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(16px, 2vw, 24px) clamp(20px, 4vw, 40px);
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: clamp(32px, 4vw, 40px);
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
}

.nav-link {
    font-size: clamp(15px, 1vw, 16px);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    padding: 10px 24px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-sm);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: #E63429;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(120px, 15vh, 160px) 0 clamp(80px, 10vh, 120px);
    overflow: hidden;
}

.hero-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    animation: float 6s ease-in-out infinite;
}

.badge i {
    color: var(--color-accent);
    font-size: 18px;
}

.badge-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.badge-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(24px, 3vw, 32px);
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--color-accent);
}

.hero-description {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: clamp(32px, 4vw, 48px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: #E63429;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    background: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.section {
    padding: clamp(60px, 10vw, 120px) 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-dark {
    background: var(--color-secondary);
    color: white;
}

.section-dark .section-title,
.section-dark .cta-title {
    color: white;
}

.section-header,
.section-header-center {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--color-accent);
}

.section-intro {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--color-text-light);
    line-height: 1.7;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.card-title {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.split-description {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--color-text-light);
    line-height: 1.8;
}

.split-description p {
    margin-bottom: 20px;
}

.split-description p:last-child {
    margin-bottom: 0;
}

.split-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.calculator-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 60px);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 60px);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
}

.form-control {
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.result-item {
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.result-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.result-value {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -0.02em;
}

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

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: clamp(20px, 3vw, 28px);
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--color-bg-alt);
}

.accordion-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
}

.accordion-title {
    flex: 1;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--color-text);
}

.accordion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 18px;
    transition: var(--transition);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
    color: var(--color-text-light);
    line-height: 1.8;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.process-info {
    flex: 1;
}

.process-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    margin-bottom: 8px;
}

.process-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.faq-item {
    background: white;
    padding: clamp(24px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-answer {
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-cta {
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background: white;
    color: var(--color-accent);
}

.cta-content .btn-primary:hover {
    background: var(--color-bg-alt);
    transform: translateY(-4px);
}

.footer {
    background: var(--color-secondary);
    color: white;
}

.footer-cta {
    background: var(--color-text);
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
}

.footer-cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.footer-cta-text {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-main {
    padding: clamp(60px, 8vw, 80px) 0 clamp(40px, 5vw, 60px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(32px, 5vw, 60px);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #E63429;
    transform: translateY(-4px);
}

.page-header {
    padding: clamp(140px, 18vh, 200px) 0 clamp(80px, 10vh, 120px);
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.page-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.page-title-line {
    display: block;
}

.page-title-accent {
    color: var(--color-accent);
}

.page-description {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.value-card {
    background: white;
    padding: clamp(28px, 4vw, 36px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.value-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
}

.value-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 28px);
}

.expertise-item {
    background: white;
    padding: clamp(24px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.expertise-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.expertise-title {
    font-size: clamp(17px, 2vw, 19px);
    font-weight: 700;
    margin-bottom: 12px;
}

.expertise-text {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 15px;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    padding: clamp(48px, 6vw, 80px);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
}

.cta-box-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.02em;
}

.cta-box-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-primary {
    background: white;
    color: var(--color-accent);
}

.cta-box .btn-primary:hover {
    background: var(--color-bg-alt);
}

.journey-path {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 48px);
}

.journey-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 48px);
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 6px solid var(--color-accent);
}

.journey-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.journey-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.journey-volume {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-weight: 600;
}

.journey-intro {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.journey-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    margin: 28px 0 16px;
}

.journey-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.journey-list li {
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
    color: var(--color-text-light);
}

.journey-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

.journey-outcome {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
    margin-top: 28px;
}

.journey-outcome h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.journey-outcome p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.journey-duration {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-weight: 600;
}

.journey-duration i {
    color: var(--color-accent);
    font-size: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 3vw, 32px);
}

.service-card {
    background: white;
    padding: clamp(28px, 4vw, 36px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.service-title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    color: var(--color-text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.service-duration {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
}

.selection-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.selection-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.selection-list li {
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    color: var(--color-text-light);
}

.selection-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

.selection-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 48px);
}

.article-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.article-featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-content {
    padding: clamp(28px, 4vw, 40px);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.article-category {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 600;
}

.article-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.article-excerpt {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: clamp(16px, 1.5vw, 18px);
}

.article-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-points p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 6vw, 80px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-text {
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--color-accent);
    transition: var(--transition);
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-info-note {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.contact-form-wrapper {
    background: white;
    padding: clamp(32px, 5vw, 48px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-form-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox-text {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 15px;
}

.form-checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-title {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--color-accent), #FF6B66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: white;
}

.thanks-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.thanks-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.legal-section {
    padding: clamp(120px, 15vh, 160px) 0 clamp(80px, 10vh, 120px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 48px;
    font-weight: 600;
}

.legal-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-text h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-text li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: clamp(20px, 3vw, 32px);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    color: var(--color-text-light);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cookie-category-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-category-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-category-header p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 15px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-border);
    transition: var(--transition);
    border-radius: 24px;
}

.cookie-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--color-accent);
}

input:checked + .cookie-slider::before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .split-content,
    .article-featured,
    .calculator-card,
    .contact-layout,
    .selection-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-badges {
        display: none;
    }
    
    .form-row,
    .cookie-content {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .thanks-actions .btn {
        width: 100%;
    }
}