/* Base Styles & Reset */
:root {
    --primary: #24C6DC;
    --secondary: #31E28E;
    --gradient-primary: linear-gradient(135deg, #24C6DC 0%, #31E28E 100%);
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(36, 198, 220, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(36, 198, 220, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 198, 220, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 198, 220, 0.3);
}

/* Header & Navigation */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: var(--white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 198, 220, 0.9) 0%, rgba(49, 226, 142, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 48px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.trusted-by {
    margin-top: 60px;
}

.trusted-by p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.partner-logos img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.partner-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23FFFFFF"/></svg>');
    background-size: 100% 100%;
    z-index: 2;
}

/* Problem Solution Section */
.problem-solution {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(36, 198, 220, 0.15);
}

.problem-side {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(36, 198, 220, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.solution-side {
    padding: 30px;
    background: linear-gradient(135deg, rgba(49, 226, 142, 0.1) 0%, rgba(36, 198, 220, 0.1) 100%);
    flex-grow: 1;
}

.solution-side h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.solution-headline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-primary);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    color: var(--white);
    box-shadow: var(--shadow);
}

.solution-headline h2 {
    margin-bottom: 15px;
    font-size: 36px;
}

.solution-headline p {
    font-size: 20px;
    margin-bottom: 0;
}

/* How We Work Section */
.how-we-work {
    position: relative;
    background-color: var(--white);
}

.steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-timeline {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(36, 198, 220, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
    z-index: 2;
}

.steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.steps::-webkit-scrollbar {
    display: none;
}

.step-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 80px 40px 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: var(--transition);
}

.step-card.active {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(36, 198, 220, 0.3);
}

.step-content {
    margin-bottom: 30px;
}

.step-icon {
    width: 100px;
    height: 100px;
}

.steps-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.step-prev,
.step-next {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.step-prev:hover,
.step-next:hover {
    background-color: rgba(36, 198, 220, 0.1);
}

.step-indicators {
    display: flex;
    gap: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(36, 198, 220, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.step-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.section-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23F8F9FA"/></svg>');
    background-size: cover;
    z-index: 2;
}

/* For Whom Section */
.for-whom {
    background-color: var(--bg-light);
    position: relative;
}

.business-types {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.business-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(36, 198, 220, 0.15);
}

.business-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient-primary) border-box;
    transform: scale(1.05);
}

.business-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.business-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.business-features {
    margin-top: 20px;
    text-align: left;
}

.business-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.business-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* Our Experts Section */
.experts {
    background-color: var(--white);
    position: relative;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expert-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(36, 198, 220, 0.15);
}

.expert-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
}

.expert-info {
    padding: 30px;
}

.expert-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.expert-description {
    color: var(--text-medium);
    margin-bottom: 0;
}

.section-shape-alt {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23F8F9FA"/></svg>');
    background-size: 100% 100%;
    z-index: 2;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
    position: relative;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(36, 198, 220, 0.15);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient-primary) border-box;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    margin-bottom: 15px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-medium);
    vertical-align: top;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 0;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.pricing-card .btn {
    margin: 0 30px 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 15px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.8;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 80px;
    color: rgba(36, 198, 220, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: rgba(36, 198, 220, 0.1);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(36, 198, 220, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Contact Form Section */
.contact {
    background-color: var(--bg-light);
    position: relative;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.google-map {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 198, 220, 0.1);
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    margin-right: 10px;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.contact-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23FFFFFF"/></svg>');
    background-size: 100% 100%;
    z-index: 2;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--white);
    padding: 60px 0;
}

.newsletter-container {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--white);
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h3 {
    margin-bottom: 10px;
}

.newsletter-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-field {
    display: flex;
}

.newsletter-field input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 16px;
}

.newsletter-field .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--white);
    color: var(--primary);
}

.newsletter-field .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer Section */
.footer {
    background-color: #2C3E50;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 1.5px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-icon {
    margin-right: 10px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(36, 198, 220, 0.3);
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    bottom: 30px;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(36, 198, 220, 0.4);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-list.active {
        height: auto;
        padding: 20px 0;
    }
    
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .partner-logos {
        flex-wrap: wrap;
    }
    
    .footer-top > div {
        flex: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-field {
        flex-direction: column;
    }
    
    .newsletter-field input {
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }
    
    .newsletter-field .btn {
        border-radius: var(--border-radius);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}