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

:root {
    --primary: #2563EB;
    --accent: #F59E0B;
    --accent-pink: #EC4899;
    --accent-purple: #8B5CF6;
    --accent-teal: #14B8A6;
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
    --text-gray: #64748B;
    --white: #ffffff;
    --border: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--accent-purple));
    top: -200px;
    right: -200px;
}

body::after {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent), var(--accent-pink));
    bottom: -150px;
    left: -150px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s;
}

.nav.scrolled {
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--accent);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #ea580c;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: var(--white);
    font-size: 1.125rem;
    width: 100%;
    text-align: center;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0077b5, #1e8bc3);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #FEF3C7 50%, #FBCFE8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    top: -200px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #F59E0B, #EC4899);
    bottom: -150px;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(255,255,255,0.8);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

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

.subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badge {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-badge .small {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.companies {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
}

.hero-image {
    position: relative;
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 8px rgba(255,255,255,0.9);
    object-fit: cover;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: rotate(0deg) scale(1.02);
}

.photo-placeholder {
    background: linear-gradient(135deg, rgba(30,64,175,0.2), rgba(249,115,22,0.2));
    border-radius: 1.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.photo-placeholder.large {
    aspect-ratio: 3/4;
}

.photo-content {
    text-align: center;
}

.avatar {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.avatar.large {
    font-size: 8rem;
}

.name {
    font-size: 1.5rem;
    font-weight: 700;
}

.title, .exp {
    color: var(--text-gray);
}

.stat-badge {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 4px rgba(255,255,255,0.95);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    animation: floatBadge 4s ease-in-out infinite;
}

.stat-badge span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-1 {
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #D97706;
    transform: rotate(5deg);
}

.stat-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: #1D4ED8;
    transform: rotate(-5deg);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

.section.bg-gradient {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

/* Blob decorations for sections */
.section::before,
.section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.section:nth-child(odd)::before {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    top: -250px;
    right: -200px;
}

.section:nth-child(odd)::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #F59E0B, #EC4899);
    bottom: -200px;
    left: -150px;
}

.section:nth-child(even)::before {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
    top: -200px;
    left: -150px;
}

.section:nth-child(even)::after {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    bottom: -250px;
    right: -200px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 4px;
    opacity: 0.3;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
}

.step {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 3px solid rgba(255,255,255,0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
}

.step:hover {
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(245, 158, 11, 0.3);
}

.step-number {
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #F97316 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), 0 0 0 4px rgba(255,255,255,0.95);
}

.step-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.step p {
    text-align: center;
    color: var(--text-gray);
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 2.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 3px solid rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.4s;
}

.benefit-card:hover::before {
    top: -20%;
    right: -20%;
}

.benefit-card:hover {
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px) rotate(-1deg);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.benefit-detail {
    font-size: 0.875rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* Highlight Boxes */
.highlight-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    border: 4px solid rgba(255,255,255,0.9);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
    border-radius: 50%;
}

.highlight-box p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight-box.gradient {
    background: linear-gradient(135deg, #FEF3C7 0%, #FBCFE8 100%);
    border: 4px solid rgba(255,255,255,0.9);
}

.highlight-box.gradient h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-photo {
    position: relative;
}

.about-photo-img {
    width: 100%;
    max-width: 450px;
    border-radius: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 0 6px rgba(255,255,255,0.9);
    object-fit: cover;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.about-photo-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.exp-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: var(--white);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4), 0 0 0 6px rgba(255,255,255,0.95);
    text-align: center;
    transform: rotate(-8deg);
}

.exp-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.role {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.edu-item {
    background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
    padding: 1rem;
    border-radius: 1.5rem;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.edu-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.edu-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.875rem;
}

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

.info-box {
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 3px solid rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.info-box h4 {
    margin-bottom: 0.75rem;
}

.info-box.highlight {
    background: linear-gradient(135deg, #FEF3C7 0%, #FBCFE8 100%);
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.process {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* Insights */
.insights {
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255,255,255,0.9);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insight-card:hover {
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.12);
    transform: translateX(8px);
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.insight-title {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.insight-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3), 0 0 0 3px rgba(255,255,255,0.9);
}

.insight-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.insight-subtitle {
    color: var(--primary);
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    transition: transform 0.3s;
}

.insight-card.active .toggle-icon {
    transform: rotate(45deg);
}

.insight-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.insight-card.active .insight-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.insight-intro {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.insight-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.insight-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.insight-content ul li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.insight-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.insight-highlight {
    background: linear-gradient(135deg, rgba(30,64,175,0.1), rgba(249,115,22,0.1));
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent);
    margin-top: 1rem;
}

.insight-highlight p {
    font-weight: 500;
}

/* Summary Box */
.summary-box {
    max-width: 900px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, #2563EB 0%, #8B5CF6 50%, #F59E0B 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 6px rgba(255,255,255,0.95);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.summary-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
}

.summary-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.summary-box p {
    position: relative;
    z-index: 1;
}

.summary-box ul {
    list-style: none;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.summary-box ul li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

.summary-box .bold {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1.5rem;
    display: block;
}

/* Industries */
.industries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border: 3px solid rgba(255,255,255,0.9);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.industry-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px) scale(1.05);
}

.industry-card.highlight {
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(30,64,175,0.1));
    border-color: var(--accent);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Quote Box */
.quote-box {
    max-width: 900px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, #DBEAFE 0%, #FEF3C7 100%);
    border: 4px solid rgba(255,255,255,0.9);
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '💬';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 8rem;
    opacity: 0.1;
}

.quote-box blockquote {
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-box p {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quote-box footer {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Approach */
.approach-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.approach-desc {
    max-width: 800px;
    margin: 1rem auto 0;
}

.process-arrow {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 3rem;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* HADI Section */
.hadi-section {
    margin: 4rem 0;
    background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 100%);
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border: 4px solid rgba(255,255,255,0.9);
}

.hadi-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.hadi-visual {
    position: relative;
    text-align: center;
}

.hadi-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: contain;
    background: linear-gradient(135deg, #FFFFFF, #F0F9FF);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 8px rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    padding: 1rem;
}

.hadi-cycle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cycle-step {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), 0 0 0 4px rgba(255,255,255,0.95);
    animation: pulse 2s ease-in-out infinite;
}

.cycle-step:nth-child(1) { animation-delay: 0s; }
.cycle-step:nth-child(3) { animation-delay: 0.5s; }
.cycle-step:nth-child(5) { animation-delay: 1s; }
.cycle-step:nth-child(7) { animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cycle-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hadi-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hadi-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hadi-steps {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hadi-item {
    background: rgba(255,255,255,0.7);
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hadi-item strong {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    margin-right: 1rem;
    font-size: 1.125rem;
}

.hadi-item p {
    display: inline;
    color: var(--text-gray);
}

.hadi-benefit {
    background: rgba(245, 158, 11, 0.15);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border-left: 4px solid var(--accent);
    font-weight: 600;
    color: var(--text-dark);
}

.phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.phase-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.phase-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.phase-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phase-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.phase-badge {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
}

.phase-card h3 {
    font-size: 1.125rem;
}

.phase-card ul {
    list-style: none;
}

.phase-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.phase-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tools-box {
    background: linear-gradient(135deg, rgba(30,64,175,0.05), rgba(249,115,22,0.05));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(30,64,175,0.2);
    margin-bottom: 2rem;
}

.tools-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tools span {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Peak Challenge Section */
.peak-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
}

.peak-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.peak-image {
    position: relative;
}

.peak-photo {
    width: 100%;
    border-radius: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 6px rgba(255,255,255,0.15);
    object-fit: cover;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.peak-photo:hover {
    transform: rotate(0deg) scale(1.02);
}

.peak-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.peak-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.famous-quote {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.famous-quote p {
    font-size: 1.375rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.famous-quote footer {
    font-size: 1rem;
    color: var(--accent);
    font-style: normal;
}

.peak-quote {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin: 1.5rem 0;
}

.peak-text .btn {
    margin-top: 2rem;
}

/* Fit */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fit-box {
    padding: 2.5rem;
    border-radius: 2.5rem;
    border: 4px solid;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.fit-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.15;
}

.fit-box.good {
    background: linear-gradient(135deg, #D1FAE5 0%, #DBEAFE 100%);
    border-color: rgba(16, 185, 129, 0.5);
}

.fit-box.good::before {
    background: radial-gradient(circle, #10B981, transparent);
}

.fit-box.bad {
    background: linear-gradient(135deg, #FEE2E2 0%, #FED7AA 100%);
    border-color: rgba(239, 68, 68, 0.5);
}

.fit-box.bad::before {
    background: radial-gradient(circle, #EF4444, transparent);
}

.fit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 4px rgba(255,255,255,0.95);
}

.fit-box.good .fit-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.fit-box.bad .fit-icon {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.fit-box h3 {
    font-size: 1.5rem;
}

.fit-box ul {
    list-style: none;
}

.fit-box ul li {
    padding: 0.75rem 0;
    font-size: 1rem;
}

.cta-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, #2563EB 0%, #8B5CF6 50%, #F59E0B 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 3rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3), 0 0 0 6px rgba(255,255,255,0.95);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
}

.cta-box h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.contact-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 2.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 4px solid rgba(255,255,255,0.9);
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-header.telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
}

.calendly-embed {
    padding: 0.5rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-header p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.telegram-benefits {
    padding: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-item span {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.meeting-info {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 4px solid rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.meeting-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
    border-radius: 50%;
}

.meeting-info h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.meeting-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.meeting-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.flow-step {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 3px solid rgba(255,255,255,0.9);
    position: relative;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.flow-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(30,64,175,0.3);
}

.flow-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.flow-content p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.meeting-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
}

.result-box.success {
    background: linear-gradient(135deg, #F0FDF4, #DBEAFE);
    border-color: #10B981;
}

.result-box.neutral {
    background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
    border-color: #94A3B8;
}

.result-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.result-box.success .result-icon {
    background: #10B981;
}

.result-box.neutral .result-icon {
    background: #94A3B8;
}

.result-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.result-box p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.guarantee-box-new {
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(30,64,175,0.15));
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--accent);
    text-align: center;
}

.guarantee-box-new h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.guarantee-box-new p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* FAQ */
.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255,255,255,0.9);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.15);
    transform: translateX(8px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-number {
    width: 2rem;
    height: 2rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-weight: 700;
    font-size: 1.125rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 4.5rem;
}

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

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-intro p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.footer-location {
    font-size: 0.875rem;
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--accent);
}

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

.footer-love {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .summary-content {
        grid-template-columns: 1fr;
    }

    .summary-photos {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .photo-2 {
        transform: translateY(0);
    }

    .photo-3 {
        grid-column: 1 / 4;
    }

    .peak-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hadi-content {
        grid-template-columns: 1fr;
    }

    .hadi-section {
        padding: 2rem;
    }

    .footer-hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
    }

    .footer-buttons {
        justify-content: center;
    }

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

    .meeting-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .meeting-result {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 2rem;
    }

    .stat-badge {
        padding: 1rem;
        font-size: 1.5rem;
    }

    .steps {
        gap: 2rem;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .industries {
        grid-template-columns: 1fr;
    }

    .phases {
        grid-template-columns: 1fr;
    }
}

