:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --background: #fefefe;
    --surface: #ffffff;
    --surface-dark: #1e293b;
    --text: #1e293b;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;
    
    --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.04), 0 1px 3px rgba(30, 41, 59, 0.08);
    --shadow-md: 0 4px 16px rgba(30, 41, 59, 0.08), 0 2px 8px rgba(30, 41, 59, 0.12);
    --shadow-lg: 0 8px 32px rgba(30, 41, 59, 0.12), 0 4px 16px rgba(30, 41, 59, 0.16);
    --shadow-xl: 0 16px 48px rgba(30, 41, 59, 0.16), 0 8px 24px rgba(30, 41, 59, 0.20);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

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

a:hover {
    color: var(--primary-dark);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1240px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-base);
}

.nav-floating.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

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

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

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white;
    margin-left: 8px;
}

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

.nav-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition-base);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 60px;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
}

.hero-content {
    padding-left: 60px;
}

.hero-text h1 {
    margin-bottom: 24px;
    color: var(--text);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlap {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: -1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-layered {
    padding: 100px 0;
    position: relative;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.9);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    margin-bottom: 16px;
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.section-dark .section-intro p {
    color: rgba(255, 255, 255, 0.8);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.card-hover {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.section-dark .card-hover {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.section-dark .card-hover:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-md);
    font-size: 28px;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.card-hover:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-hover h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.card-hover p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-dark .card-hover p {
    color: rgba(255, 255, 255, 0.85);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.section-dark .card-link {
    color: var(--primary-light);
}

.section-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

.accordion-services {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.section-dark .accordion-item {
    background: rgba(255, 255, 255, 0.05);
}

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

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(37, 99, 235, 0.05);
}

.accordion-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-sm);
    font-size: 20px;
}

.accordion-title {
    flex: 1;
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.section-dark .accordion-title {
    color: white;
}

.accordion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 32px 32px;
    color: var(--text-light);
    line-height: 1.8;
}

.section-dark .accordion-content p {
    color: rgba(255, 255, 255, 0.85);
}

.section-journey {
    padding: 100px 0;
    background: var(--background);
}

.journey-map {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.journey-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.journey-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.journey-step:hover .journey-icon {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.journey-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.journey-step p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

.journey-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin-top: 64px;
    flex-shrink: 0;
}

.tabs-container {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tabs-navigation {
    display: flex;
    border-bottom: 2px solid var(--border);
    background: rgba(37, 99, 235, 0.03);
}

.tab-button {
    flex: 1;
    padding: 20px 24px;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.tab-button:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--text);
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tabs-content {
    padding: 48px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-panel-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tab-panel-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tab-panel-image:hover img {
    transform: scale(1.05);
}

.tab-panel-text h3 {
    margin-bottom: 16px;
}

.tab-panel-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 18px;
}

.section-cta {
    background: var(--surface-dark);
    padding: 100px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-text h2 {
    color: white;
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.cta-text > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: white;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-disclaimer a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cta-links h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.cta-links ul {
    list-style: none;
}

.cta-links li {
    margin-bottom: 12px;
}

.cta-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-fast);
}

.cta-links a:hover {
    color: white;
    padding-left: 8px;
}

.cta-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.cta-buttons-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.footer {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 32px;
}

.footer-content {
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 24px;
}

.footer-brand > p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.hero-inner {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
}

.hero-inner h1 {
    margin-bottom: 20px;
}

.hero-inner p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main h2 {
    margin-bottom: 20px;
}

.content-main h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.sidebar-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    position: sticky;
    top: 120px;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

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

.focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
}

.focus-list i {
    color: var(--primary);
    font-size: 8px;
}

.focus-list a {
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.focus-list a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.approach-item {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.approach-item h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary);
}

.approach-item i {
    font-size: 24px;
}

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

.section-image-text {
    padding: 100px 0;
}

.image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text-wrapper.reverse {
    direction: rtl;
}

.image-text-wrapper.reverse > * {
    direction: ltr;
}

.image-text-content h2 {
    margin-bottom: 20px;
}

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

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

.image-text-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-text-image:hover img {
    transform: scale(1.05);
}

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

.content-wide h2 {
    margin-bottom: 20px;
}

.content-wide h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.info-box {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 32px 0;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.info-box h4 {
    margin-bottom: 12px;
    color: var(--primary);
}

.info-box p {
    margin-bottom: 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.method-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.section-dark .method-card {
    background: rgba(255, 255, 255, 0.05);
}

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

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

.method-card h4 {
    margin-bottom: 12px;
}

.method-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.section-dark .method-card p {
    color: rgba(255, 255, 255, 0.85);
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.planning-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.planning-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.25rem;
}

.planning-card i {
    font-size: 24px;
}

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

.organization-list {
    margin-top: 40px;
}

.organization-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.organization-item:last-child {
    border-bottom: none;
}

.org-number {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.org-content h3 {
    margin-bottom: 12px;
}

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

.section-dark .organization-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark .org-content p {
    color: rgba(255, 255, 255, 0.85);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.principle-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.section-dark .principle-card {
    background: rgba(255, 255, 255, 0.05);
}

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

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

.principle-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.principle-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.section-dark .principle-card p {
    color: rgba(255, 255, 255, 0.85);
}

.onboarding-phases {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.phase-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.section-dark .phase-card {
    background: rgba(255, 255, 255, 0.05);
}

.phase-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.125rem;
}

.phase-card h4 {
    flex: 1;
    font-size: 1.25rem;
}

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

.section-dark .phase-card p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

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

.contact-text h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

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

.contact-text a {
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary);
}

.office-hours {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.office-hours h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.office-hours i {
    color: var(--primary);
}

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

.contact-form-wrapper {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

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

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.section-map {
    padding: 80px 0;
    background: var(--background);
}

.section-map h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

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

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

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.thanks-links p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.thanks-links a {
    color: var(--primary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.thanks-links a:hover {
    padding-left: 8px;
}

.legal-section {
    padding: 140px 0 80px;
}

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

.legal-content h1 {
    margin-bottom: 12px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 48px;
}

.legal-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

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

.contact-info-legal {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-top: 32px;
    border-left: 4px solid var(--primary);
}

.contact-info-legal p {
    margin-bottom: 8px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

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

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

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 24px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-content h3 {
    margin-bottom: 32px;
}

.cookie-category {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

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

.cookie-category input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 140px;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .journey-map {
        flex-direction: column;
    }
    
    .journey-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .tab-panel-content {
        grid-template-columns: 1fr;
    }
    
    .content-columns {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card {
        position: static;
    }
    
    .image-text-wrapper {
        grid-template-columns: 1fr;
    }
    
    .image-text-wrapper.reverse {
        direction: ltr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 12px;
        width: calc(100% - 24px);
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }
    
    .nav-menu.active {
        display: block;
        max-height: 500px;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .tabs-navigation {
        flex-direction: column;
    }
    
    .tabs-content {
        padding: 32px 24px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-modal-content {
        padding: 32px 24px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-layered {
        padding: 60px 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .approach-grid,
    .methods-grid,
    .planning-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }
}