/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a7a6c;
    --primary-dark: #156b5f;
    --primary-darker: #0f4f46;
    --primary-light: #e8f5f3;
    --primary-lighter: #f0faf8;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #6b7280;
    --text-light: rgba(255, 255, 255, 0.85);
    --bg-white: #ffffff;
    --bg-light: #f8fafb;
    --bg-gray: #f3f5f7;
    --bg-dark: #1a2332;
    --bg-darker: #0f1620;
    --border-color: #e5e8eb;
    --border-light: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --danger: #dc2626;
    --danger-light: #fef2f2;
    --danger-border: #fecaca;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.text-white { color: white !important; }
.text-light { color: var(--text-light) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #133257 5%, #58b4ee 100%);
    color: white;
    box-shadow: 0 4px 14px rgb(19 50 87);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #58b3ed 0%, #133357 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(89 180 237);
}

.btn-outline {
    background: transparent;
    color: #123156;
    border: 2px solid #123156;
}

.btn-outline:hover {
    background: #123156;
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: #123156;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 8px 0;
}

.header-top-container {
    display: flex;
    justify-content: flex-end;
}

.header-contacts-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.header-phone:hover {
    color: var(--primary-light);
}

.header-phone svg {
    color: var(--primary-light);
}

.header-time,
.header-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.header-location svg {
    color: var(--primary-light);
}

.header-main {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xs);
}

.logo-icon {
    color: white;
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-xs);
    transition: all 0.2s ease;
}

.nav a:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 116px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    padding: 14px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-xs);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.mobile-phone {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 250, 251, 0.95) 0%, rgba(232, 245, 243, 0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #133257 5%, #58b4ee 100%);
    color: white;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(26, 122, 108, 0.35);
}

.hero h1 {
    margin-bottom: 20px;
    text-wrap: balance;
    background: linear-gradient(135deg, #000000 0%, #0073bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-text {
    margin-bottom: 32px;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5bb5ee 0%, #bee2f9 100%);
    border-radius: var(--radius-xs);
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
    color: #123156;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-pattern {
    background-color: var(--bg-light);
    background-image: url('images/pattern-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.section-dark {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* Section backgrounds with images */
.section-signs {
    position: relative;
    background-color: var(--bg-light);
}

.section-signs::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background-image: url('images/signs-bg.jpg');*/
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.section-signs > .container {
    position: relative;
    z-index: 1;
}

.section-addiction {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.section-addiction::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/addiction-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.section-addiction > .container {
    position: relative;
    z-index: 1;
}

.section-goals {
    position: relative;
    background: linear-gradient(135deg, #1c3c65 0%, #102f54 100%);
    overflow: hidden;
}

.section-goals::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/goals-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.section-goals > .container {
    position: relative;
    z-index: 1;
}

.section-help {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.section-help::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/help-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}

.section-help > .container {
    position: relative;
    z-index: 1;
}

.section-steps {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}

.section-steps::before {
    content: "";
    position: absolute;
    inset: 0;
   /* background-image: url('images/steps-bg.jpg');*/
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.section-steps > .container {
    position: relative;
    z-index: 1;
}

.section-denial {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.section-denial::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/denial-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}

.section-denial > .container {
    position: relative;
    z-index: 1;
}

.section-urgent {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.section-urgent::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/urgent-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.section-urgent > .container {
    position: relative;
    z-index: 1;
}

.section-why {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}

.section-why::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/why-us-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: 0;
}

.section-why > .container {
    position: relative;
    z-index: 1;
}

.section-faq {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.section-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/faq-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.section-faq > .container {
    position: relative;
    z-index: 1;
}

.section-stats {
    position: relative;
    background: linear-gradient(135deg, #1c3c65 0%, #102f54 100%);
    overflow: hidden;
}

.section-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.section-stats > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: #123156;
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-label-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.section-label-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    margin-bottom: 20px;
    text-wrap: balance;
}

.section-title.text-left {
    text-align: left;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.section-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid #5ab6ee;
    margin-top: 48px;
    background: linear-gradient(135deg, #133257 5%, #58b4ee 100%);
}

.section-note svg {
    flex-shrink: 0;
    color: #ffffff;
}

.section-note p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
}

.section-highlight-urgent {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 24px 0 40px;
}

.section-conclusion {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 800px;
    margin: 48px auto 0;
    line-height: 1.75;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background-color: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #123156;
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #5bb5ee 0%, #bee2f9 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    color: #123156;
}

.problem-card p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col-image {
    gap: 64px;
}

.two-col-image-reverse {
    gap: 64px;
}

.two-col-image-reverse .col-content {
    order: 1;
}

.two-col-image-reverse .col-card {
    order: 2;
}

.col-content .section-label {
    text-align: left;
}

.col-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-highlight-light {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.15rem;
}

.col-image img,
.rounded-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Center Image Block */
.center-image-block {
    position: relative;
    margin-bottom: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.center-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.center-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.center-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
}

.center-highlight svg {
    flex-shrink: 0;
    color: white;
}

/* Destruction Card */
.destruction-card {
    background: linear-gradient(135deg, var(--danger-light) 0%, #fee2e2 100%);
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--danger-border);
    box-shadow: var(--shadow-md);
}

.destruction-card h3 {
    color: #991b1b;
    margin-bottom: 24px;
    font-size: 1.35rem;
}

.destruction-card ul {
    list-style: none;
}

.destruction-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: #7f1d1d;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.destruction-card li:last-child {
    border-bottom: none;
}

.destruction-card li svg {
    width: 22px;
    height: 22px;
    color: #dc2626;
    flex-shrink: 0;
}

/* Help Cards */
.help-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.help-card {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-card-secondary {
    /* background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%); */
    /* border-color: var(--primary); */
}

.help-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.help-card-secondary .help-card-header {
    border-color: rgba(26, 122, 108, 0.2);
}

.help-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #133257 0%, #54ade5 100%);
    border-radius: var(--radius-sm);
}

.help-card-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.help-card-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.help-card ul {
    list-style: none;
}

.help-card li {
    position: relative;
    padding: 14px 0 14px 32px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    line-height: 1.6;
}

.help-card-secondary li {
    border-color: rgba(26, 122, 108, 0.15);
}

.help-card li:last-child {
    border-bottom: none;
}

.help-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background: #193e65;
    border-radius: 50%;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.goal-card {
    text-align: center;
    padding: 36px 28px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.goal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.goal-card h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.goal-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Check List */
.subsection-title {
    font-size: 1.15rem;
    /* color: var(--primary); */
    margin: 32px 0 20px;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 36px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 64px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #133257 0%, #57b1eb 100%);
    border-radius: 2px;
}

.timeline-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #133257 5%, #58b4ee 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.35rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(26, 122, 108, 0.35);
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Quotes Grid */
.quotes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 32px;
}

.quote-item {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
    border-radius: 100px;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
}

/* Advice Card */
.advice-card {
    background: linear-gradient(135deg, white 0%, var(--primary-lighter) 100%);
    padding: 40px;
    border-radius: var(--radius-md);
    /* border: 2px solid var(--primary); */
    box-shadow: var(--shadow-lg);
}

.advice-card h3 {
    /* color: var(--primary); */
    margin-bottom: 24px;
    font-size: 1.35rem;
}

.advice-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.advice-card li {
    position: relative;
    padding: 12px 0 12px 32px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.advice-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #193e65;
    border-radius: 50%;
}

/* Urgency Grid */
.urgency-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.urgency-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.urgency-card:hover {
    transform: translateY(-6px);
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.urgency-card svg {
    width: 40px;
    height: 40px;
    color: #f87171;
    margin-bottom: 16px;
}

.urgency-card span {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    padding: 36px;
    background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #123156;
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5bb5ee 0%, #bee2f9 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: #123156;
}

.why-card h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-btn {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background-color 0.2s ease;
    gap: 20px;
}

.faq-btn:hover {
    background-color: var(--bg-light);
}

.faq-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-btn svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 32px 28px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* CTA Section */
.cta-section {
    position: relative;
    text-align: center;
    padding: 120px 24px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1c3c65d1 0%, #102f5494 100%);
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 24px;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    text-wrap: balance;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-phone {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-note {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    gap: 20px;
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 0.6fr 1.6fr;
}

.footer-about .logo {
    margin-bottom: 24px;
}

.footer-about .logo-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
}

.footer-about .logo-name {
    color: white;
}

.footer-about .logo-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    color: white;
    margin-bottom: 28px;
    font-size: 1.15rem;
}

.footer-nav ul,
.footer-contacts ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 16px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: white;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contacts svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-light);
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contacts a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgency-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .two-col-image-reverse .col-content {
        order: 2;
    }
    
    .two-col-image-reverse .col-card {
        order: 1;
    }
    
    .col-content .section-title {
        text-align: center;
    }
    
    .col-content .section-label {
        display: block;
        text-align: center;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .mobile-menu {
        top: 80px;
    }
    
    .header-right .btn {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .col-image img,
    .rounded-image {
        height: 320px;
    }
    
    .center-image-block img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .hero-feature {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .goals-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.15rem;
    }
    
    .timeline-item:not(:last-child)::before {
        left: 24px;
    }
    
    .cta-section {
        padding: 80px 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-phone {
        font-size: 1.25rem;
    }
}
.mobile-actions {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Кнопки */
.action-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  position: relative;
}

/* WhatsApp */
.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* Телефон */
.phone {
  background: linear-gradient(135deg, #007BFF, #0056d2);
}

/* Hover эффект */
.action-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Пульсация */
.action-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Только мобилка */
@media (max-width: 768px) {
  .mobile-actions {
    display: flex;
  }
}
.mobile-actions svg {
    width: 36px;
}