/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --success-color: #10B981;
    --warning-color: #F97316;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'IBM Plex Sans', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--success-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: var(--primary-dark);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Glassmorphism Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-panel.success {
    border-color: rgba(16, 185, 129, 0.3);
}

.glass-panel.warning {
    border-color: rgba(249, 115, 22, 0.3);
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    will-change: transform;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(30, 64, 175, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.chart-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: -80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(30, 58, 138, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.hero-content .container {
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'IBM Plex Sans', sans-serif;
    color: white;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 12px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dots .dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Hero Dashboard */
.hero-dashboard {
    padding: 32px;
    animation: fadeInUp 0.8s ease;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.dashboard-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.dashboard-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.dashboard-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.metric-card {
    padding: 20px;
    background: rgba(249, 250, 251, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.metric-card.warning {
    border-color: rgba(249, 115, 22, 0.2);
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.metric-card.warning .metric-value {
    color: var(--warning-color);
}

.metric-unit {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 4px;
}

.metric-progress {
    margin-top: 12px;
    height: 6px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease;
    width: 0;
}

.progress-bar.success {
    background: linear-gradient(90deg, var(--success-color) 0%, #34D399 100%);
}

.progress-bar.warning {
    background: linear-gradient(90deg, var(--warning-color) 0%, #FB923C 100%);
}

.dashboard-chart {
    margin-top: 24px;
    padding: 20px;
    background: rgba(249, 250, 251, 0.6);
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Section Styles */
section {
    position: relative;
    padding: 80px 0;
}

section:first-of-type {
    padding: 0;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
}

/* Services Accordion */
.services-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(30, 64, 175, 0.02);
}

.accordion-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-header-content {
    flex: 1;
}

.accordion-header-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.accordion-header-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.accordion-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 24px 24px 124px;
}

.accordion-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-body li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.accordion-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(249, 250, 251, 0.6);
    border-radius: 8px;
}

.service-metric {
    text-align: center;
}

.service-metric .metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.service-metric .metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'IBM Plex Sans', sans-serif;
}

.service-metric .metric-unit {
    font-size: 12px;
    color: var(--text-light);
}

.service-progress {
    margin-bottom: 20px;
    height: 8px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

/* Process Section */
.process-section {
    background: white;
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 32px;
    background: rgba(249, 250, 251, 0.5);
    border-radius: 12px;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Expertise Section */
.expertise-section {
    background: var(--bg-light);
    position: relative;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.expertise-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Case Studies */
.case-studies-section {
    background: white;
    position: relative;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.case-study-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.case-study-metrics {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.case-study-metrics .metric {
    text-align: center;
}

.case-study-metrics .metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.case-study-metrics .metric-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background: white;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-family: 'IBM Plex Sans', sans-serif;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Policy Pages */
.policy-section {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.policy-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'IBM Plex Sans', sans-serif;
}

.policy-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.policy-content strong {
    color: var(--text-dark);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        min-height: 100vh;
        margin-top: -70px;
    }

    .hero-slider {
        min-height: 100vh;
    }

    .hero-slide {
        min-height: 100vh;
    }

    .hero-content {
        min-height: 100vh;
        padding: 90px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-controls {
        bottom: 30px;
        gap: 20px;
    }

    .hero-prev,
    .hero-next {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }

    .hero-dots .dot.active {
        width: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-dashboard {
        padding: 24px 20px;
    }

    .dashboard-header {
        margin-bottom: 20px;
    }

    .dashboard-header h3 {
        font-size: 17px;
    }

    .metric-card {
        padding: 18px 16px;
    }

    .dashboard-metrics .metric-value {
        font-size: 28px;
    }

    .dashboard-chart {
        padding: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 20px 16px;
        gap: 16px;
    }

    .accordion-image {
        width: 60px;
        height: 60px;
    }

    .accordion-header-content h3 {
        font-size: 18px;
    }

    .accordion-header-content p {
        font-size: 14px;
    }

    .accordion-icon {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .accordion-body {
        padding: 0 16px 20px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 100vh;
        margin-top: -70px;
    }

    .hero-slider {
        min-height: 100vh;
    }

    .hero-slide {
        min-height: 100vh;
    }

    .hero-content {
        min-height: 100vh;
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-controls {
        bottom: 20px;
        gap: 16px;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .hero-dots {
        gap: 8px;
    }

    .hero-dots .dot {
        width: 8px;
        height: 8px;
    }

    .hero-dots .dot.active {
        width: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-dashboard {
        padding: 20px 16px;
    }

    .dashboard-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .dashboard-header h3 {
        font-size: 16px;
    }

    .dashboard-badge {
        padding: 3px 10px;
        font-size: 10px;
    }

    .dashboard-metrics {
        gap: 12px;
        margin-bottom: 16px;
    }

    .metric-card {
        padding: 16px 12px;
    }

    .dashboard-metrics .metric-label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .dashboard-metrics .metric-value {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .metric-unit {
        font-size: 12px;
    }

    .metric-progress {
        margin-top: 8px;
        height: 4px;
    }

    .dashboard-chart {
        margin-top: 16px;
        padding: 12px;
        overflow: hidden;
    }

    .dashboard-chart canvas {
        max-width: 100%;
        height: auto !important;
        display: block;
    }

    .accordion-item {
        margin-bottom: 16px;
    }

    .accordion-header {
        padding: 16px;
        gap: 12px;
    }

    .accordion-image {
        width: 50px;
        height: 50px;
    }

    .accordion-header-content h3 {
        font-size: 16px;
    }

    .accordion-header-content p {
        font-size: 13px;
    }

    .accordion-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .accordion-body {
        padding: 0 16px 16px 16px;
    }

    .accordion-body p,
    .accordion-body li {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .hero-dashboard {
        padding: 16px 12px;
    }

    .dashboard-header h3 {
        font-size: 14px;
    }

    .dashboard-metrics .metric-value {
        font-size: 20px;
    }

    .dashboard-metrics .metric-label {
        font-size: 9px;
    }

    .dashboard-chart {
        padding: 8px;
    }
}
