/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #FFFFFF;
    --accent-amber: #F59E0B;
    --dark-graphite: #374151;
    --amber-glow: rgba(245, 158, 11, 0.3);
    --amber-light: rgba(245, 158, 11, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-amber: 0 0 20px rgba(245, 158, 11, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-graphite);
    background-color: var(--primary-white);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-graphite);
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-graphite);
    color: var(--primary-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-amber);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--accent-amber);
    color: var(--primary-white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cookie-btn:hover {
    background: #D97706;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-graphite);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

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

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

.nav-link {
    color: var(--dark-graphite);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-amber);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-amber);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--accent-amber);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark-graphite);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent-amber);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--accent-amber);
}

/* Hero Section - Full Screen Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.7) 0%, rgba(55, 65, 81, 0.4) 50%, rgba(245, 158, 11, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: var(--primary-white);
    text-align: center;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-white);
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-btn:hover {
    background: rgba(245, 158, 11, 0.8);
    border-color: var(--accent-amber);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
    background: var(--accent-amber);
    color: var(--primary-white);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: #D97706;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--dark-graphite);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
    transition: opacity 0.6s ease;
}

section.fade-in {
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--dark-graphite);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Solutions Section */
.solutions-section {
    background: var(--primary-white);
}

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

.solution-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.6s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2), var(--shadow-amber);
    border-color: var(--accent-amber);
}

.card-icon {
    margin-bottom: 1.5rem;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .card-icon img {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-graphite);
}

.solution-card p {
    color: var(--dark-graphite);
    opacity: 0.7;
    line-height: 1.7;
}

/* Features Section with Accordion */
.features-section {
    background: linear-gradient(180deg, var(--primary-white) 0%, #F9FAFB 100%);
}

.features-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2), 0 0 40px rgba(245, 158, 11, 0.1);
    border-color: var(--accent-amber);
}

.accordion-item.active {
    border-color: var(--accent-amber);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3), 0 0 40px rgba(245, 158, 11, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(245, 158, 11, 0.05);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.accordion-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.accordion-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.accordion-item.active .accordion-icon-img {
    transform: scale(1.1);
}

.accordion-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-graphite);
    font-family: 'Playfair Display', serif;
}

.accordion-arrow {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-amber);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(45deg);
    background: rgba(245, 158, 11, 0.2);
}

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

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

.accordion-body {
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.accordion-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.accordion-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-text p {
    color: var(--dark-graphite);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1.05rem;
}

.accordion-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.accordion-text li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-graphite);
    opacity: 0.8;
    line-height: 1.7;
}

.accordion-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-amber);
    font-weight: 600;
    font-size: 1.2rem;
}


/* Technology Section */
.technology-section {
    background: var(--dark-graphite);
    color: var(--primary-white);
}

.technology-section .section-title,
.technology-section .section-description {
    color: var(--primary-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-amber);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    box-shadow: 0 0 20px var(--accent-amber);
}

.tech-item:hover::before {
    transform: scaleX(1);
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3), 0 0 40px rgba(245, 158, 11, 0.2);
    border-color: var(--accent-amber);
    background: rgba(255, 255, 255, 0.08);
}

.tech-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-amber);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.tech-item:hover .tech-number {
    opacity: 0.6;
}

.tech-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.tech-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: var(--primary-white);
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: 12px;
}

.benefit-item:hover {
    background: rgba(245, 158, 11, 0.05);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-amber);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    transform: scale(1.1);
}

.benefit-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-graphite);
}

.benefit-text p {
    color: var(--dark-graphite);
    opacity: 0.7;
    line-height: 1.7;
}

.benefits-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.benefits-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    pointer-events: none;
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Applications Section */
.applications-section {
    background: linear-gradient(180deg, #F9FAFB 0%, var(--primary-white) 100%);
}

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

.application-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(245, 158, 11, 0.3);
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.application-card:hover img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(55, 65, 81, 0.95), rgba(55, 65, 81, 0.7), transparent);
    padding: 2.5rem;
    color: var(--primary-white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.application-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-white);
}

.card-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    background: var(--primary-white);
}

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

.support-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.support-feature {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.05);
    transition: var(--transition);
}

.support-feature:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.support-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-graphite);
    font-family: 'Playfair Display', serif;
}

.support-feature p {
    color: var(--dark-graphite);
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.support-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--dark-graphite);
    color: var(--primary-white);
}

.contact-section .section-title,
.contact-section .section-description {
    color: var(--primary-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-amber);
    font-family: 'Playfair Display', serif;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-item a:hover {
    color: #FCD34D;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2), 0 0 20px rgba(245, 158, 11, 0.3);
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-graphite);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-amber);
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-amber);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Policy Pages Styles */
.policy-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--primary-white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-graphite);
    font-family: 'Playfair Display', serif;
}

.policy-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-graphite);
    font-family: 'Playfair Display', serif;
}

.policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-graphite);
    font-family: 'Playfair Display', serif;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--dark-graphite);
    opacity: 0.8;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--dark-graphite);
    opacity: 0.8;
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.policy-content a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    text-decoration: underline;
    color: #D97706;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 50%, #FFFFFF 100%);
}

.thanks-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 40px rgba(245, 158, 11, 0.2);
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent-amber);
    font-family: 'Playfair Display', serif;
}

.thanks-content p {
    font-size: 1.125rem;
    color: var(--dark-graphite);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.8;
}

.thanks-content a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: var(--transition);
}

.thanks-content a:hover {
    color: #D97706;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .benefits-content,
    .support-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .support-features {
        grid-template-columns: 1fr;
    }

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

    .accordion-body {
        grid-template-columns: 1fr;
    }
    
    .accordion-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .accordion-icon-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .modal-content {
        padding: 2rem;
    }
}
