:root {
    --primary-color: #3a86ff;
    --primary-dark: #2667cc;
    --primary-light: #61a0ff;
    --secondary-color: #ff9e00;
    --accent-color: #ff006e;
    --success-color: #38c976;
    --warning-color: #faad14;
    --danger-color: #f5222d;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --text-color-gray: #666666;
    --text-color-muted: #999999;
    --background-light: #ffffff;
    --background-dark: #121212;
    --background-gray: #f5f7fa;
    --background-dark-gray: #1e1e1e;
    --border-color-light: #e0e0e0;
    --border-color-dark: #333333;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-dark-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-sm: 4px;
    --transition: all 0.3s ease;
    --primary-gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, #f76e11 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    transition: var(--transition);
    overflow-x: hidden;
}

/* Light/Dark Mode Styles */
body.light-mode {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

body.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.light-mode .navbar,
.light-mode footer {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-light);
}

.dark-mode .navbar,
.dark-mode footer {
    background-color: var(--background-dark-gray);
    border-bottom: 1px solid var(--border-color-dark);
    box-shadow: var(--shadow-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.text-success {
    color: var(--success-color);
}

.text-warning {
    color: var(--warning-color);
}

.text-danger {
    color: var(--danger-color);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Light/Dark Theme Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin: 0 8px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: var(--primary-color);
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--background-light);
    box-shadow: var(--shadow-light);
}

.dark-mode header.scrolled {
    background-color: var(--background-dark-gray);
    box-shadow: var(--shadow-dark);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    transition: var(--transition);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo {
    height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-container h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    z-index: 1;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: inherit;
    margin: 0 15px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.nav-link i {
    margin-right: 6px;
    font-size: 1.1rem;
}

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

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

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

.theme-language-controls {
    display: flex;
    align-items: center;
    z-index: 2;
}

.language-selector {
    position: relative;
}

.language-selector select {
    appearance: none;
    padding: 8px 30px 8px 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color-light);
    background-color: transparent;
    font-size: 14px;
    color: inherit;
    cursor: pointer;
    margin-right: 15px;
    font-family: 'Poppins', sans-serif;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23666"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.dark-mode .language-selector select {
    border-color: var(--border-color-dark);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23ccc"/></svg>');
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.2);
}

.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-toggle i {
    font-size: 16px;
    color: var(--text-color-gray);
}

.theme-toggle .fa-sun {
    color: #ffc107;
}

.theme-toggle .fa-moon {
    color: #6f42c1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color-dark);
    margin: 2px 0;
    transition: var(--transition);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

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

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

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

.dark-mode .hamburger span {
    background-color: var(--text-color-light);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: 0 4px 10px rgba(58, 134, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(58, 134, 255, 0.4);
    color: var(--text-color-light);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    box-shadow: 0 4px 10px rgba(255, 158, 0, 0.3);
}

.btn-secondary:hover {
    background-color: darken(var(--secondary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 158, 0, 0.4);
    color: var(--text-color-light);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(58, 134, 255, 0.2);
}

.btn-large {
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hero Section */
main {
    margin-top: 0;
    padding-bottom: 0;
}

.hero {
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    background: var(--primary-gradient);
    color: var(--text-color-light);
    border-radius: 0 0 0 100px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-dots.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--background-light);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
}

.dark-mode .hero::after {
    background-color: var(--background-dark);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: -webkit-linear-gradient(#ffffff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero .btn-outline {
    border-color: var(--text-color-light);
    color: var(--text-color-light);
}

.hero .btn-outline:hover {
    background-color: var(--text-color-light);
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: floating 3s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    left: -20px;
    animation-delay: 0.5s;
}

.floating-3 {
    top: 30%;
    right: 0;
    animation-delay: 1s;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Trusted section */
.trusted-section {
    background-color: var(--background-light);
    padding: 50px 5%;
    text-align: center;
}

.dark-mode .trusted-section {
    background-color: var(--background-dark);
}

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

.trusted-section h3 {
    font-size: 1.1rem;
    color: var(--text-color-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.trusted-logo {
    height: 50px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.trusted-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.trusted-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.dark-mode .trusted-logo img {
    filter: brightness(2);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light {
    color: var(--text-color-light);
}

.section-header.light .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    background-color: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark-mode .section-badge {
    background-color: rgba(58, 134, 255, 0.2);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color-gray);
    max-width: 700px;
    margin: 20px auto 0;
}

.section-header.light h2::after {
    background-color: var(--text-color-light);
}

.section-header.light .section-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Features Section */
.features {
    padding: 80px 5%;
    background-color: var(--background-light);
    position: relative;
}

.dark-mode .features {
    background-color: var(--background-dark);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-light.svg');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.dark-mode .features::before {
    background-image: url('assets/pattern-dark.svg');
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.light-mode .feature-card {
    background-color: var(--background-gray);
    box-shadow: var(--shadow-light);
}

.dark-mode .feature-card {
    background-color: var(--background-dark-gray);
    box-shadow: var(--shadow-dark);
}

.feature-card:hover {
    transform: translateY(-7px);
}

.light-mode .feature-card:hover {
    box-shadow: var(--shadow-hover);
}

.dark-mode .feature-card:hover {
    box-shadow: var(--shadow-dark-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background-color: rgba(58, 134, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.dark-mode .feature-card h3 {
    color: var(--text-color-light);
}

.feature-card p {
    color: var(--text-color-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color-gray);
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    min-width: 14px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-link i {
    margin-left: 5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
}

.feature-link:hover i {
    transform: translateX(5px);
}

.view-all-features {
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.benefits {
    padding: 80px 5%;
    text-align: center;
    background: var(--primary-gradient);
    color: var(--text-color-light);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-dots.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.benefit {
    flex: 1;
    min-width: 250px;
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 auto 25px;
}

.benefit:hover i {
    background-color: var(--secondary-color);
    transform: rotateY(180deg);
}

.benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background-color: var(--background-light);
}

.dark-mode .testimonials {
    background-color: var(--background-dark);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-light);
    display: none;
}

.dark-mode .testimonial-item {
    background-color: var(--background-dark-gray);
    box-shadow: var(--shadow-dark);
}

.testimonial-item:first-child {
    display: block;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-dark);
    font-style: italic;
}

.dark-mode .testimonial-text {
    color: var(--text-color-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.dark-mode .testimonial-author h4 {
    color: var(--text-color-light);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color-gray);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color-light);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode .dot {
    background-color: var(--border-color-dark);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Pricing Section */
.pricing {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--background-gray);
}

.dark-mode .pricing {
    background-color: var(--background-dark-gray);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-period {
    cursor: pointer;
    padding: 5px 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.6;
    user-select: none;
}

.pricing-period.active {
    opacity: 1;
    color: var(--primary-color);
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 10px;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.pricing-toggle input:checked + .pricing-slider {
    background-color: var(--primary-color);
}

.pricing-toggle input:checked + .pricing-slider:before {
    transform: translateX(30px);
}

.pricing-discount {
    background-color: var(--accent-color);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-cards.annual .amount.monthly {
    display: none;
}

.pricing-cards:not(.annual) .amount.annual {
    display: none;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.light-mode .pricing-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-light);
}

.dark-mode .pricing-card {
    background-color: var(--background-dark);
    border: 1px solid var(--border-color-dark);
    box-shadow: var(--shadow-dark);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.light-mode .pricing-card:hover {
    box-shadow: var(--shadow-hover);
}

.dark-mode .pricing-card:hover {
    box-shadow: var(--shadow-dark-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: -5px;
    right: 20px;
    padding: 6px 15px;
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 10px rgba(255, 158, 0, 0.3);
}

.ribbon::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    border-bottom: 5px solid #d77e0b;
    border-left: 5px solid transparent;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.dark-mode .pricing-card h3 {
    color: var(--text-color-light);
}

.pricing-description {
    color: var(--text-color-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    min-height: 45px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-size: 1.8rem;
    margin-right: 5px;
    vertical-align: top;
    margin-top: 5px;
}

.period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color-gray);
}

.pricing-card ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-color-dark);
    padding-left: 5px;
}

.dark-mode .pricing-card li {
    color: var(--text-color-light);
}

.pricing-card li i {
    margin-right: 10px;
    font-size: 0.9rem;
    min-width: 16px;
}

.pricing-card li.unavailable {
    color: var(--text-color-gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-card li.unavailable i {
    color: #f5222d;
}

.pricing-card li i.fa-check {
    color: #52c41a;
}

.pricing-note {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-gray);
    font-size: 0.9rem;
}

.pricing-note i {
    margin-right: 8px;
    color: var(--primary-color);
}

.custom-plan {
    margin-top: 60px;
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-light);
}

.dark-mode .custom-plan {
    background-color: var(--background-dark);
    box-shadow: var(--shadow-dark);
}

.custom-plan-content {
    flex: 1;
    min-width: 250px;
    margin-right: 30px;
    text-align: left;
}

.custom-plan-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.dark-mode .custom-plan-content h3 {
    color: var(--text-color-light);
}

.custom-plan-content p {
    color: var(--text-color-gray);
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 5%;
    background-color: var(--background-light);
}

.dark-mode .faq {
    background-color: var(--background-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.dark-mode .faq-item {
    box-shadow: var(--shadow-dark);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.light-mode .faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.dark-mode .faq-item:hover {
    box-shadow: var(--shadow-dark-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--background-gray);
}

.dark-mode .faq-question {
    background-color: var(--background-dark-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color-dark);
    transition: all 0.3s ease;
}

.dark-mode .faq-question h3 {
    color: var(--text-color-light);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-color-gray);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--background-light);
}

.dark-mode .faq-answer {
    background-color: var(--background-dark);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

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

.faq-more {
    text-align: center;
    margin-top: 40px;
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    background-color: var(--background-gray);
}

.dark-mode .contact {
    background-color: var(--background-dark-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotateY(180deg);
}

.contact-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.dark-mode .contact-text h4 {
    color: var(--text-color-light);
}

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

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.dark-mode .contact-social h4 {
    color: var(--text-color-light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.social-icon:nth-child(2) {
    background-color: #1da1f2;
}

.social-icon:nth-child(3) {
    background-color: #0077b5;
}

.social-icon:nth-child(4) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-form {
    flex: 1;
    min-width: 400px;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
}

.dark-mode .contact-form {
    background-color: var(--background-dark);
    box-shadow: var(--shadow-dark);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color-dark);
}

.dark-mode .form-group label {
    color: var(--text-color-light);
}

.required {
    color: var(--danger-color);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color-gray);
}

.input-icon input,
.input-icon select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
    background-color: transparent;
    color: inherit;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.dark-mode .input-icon input,
.dark-mode .input-icon select {
    border-color: var(--border-color-dark);
}

.textarea-icon i {
    top: 15px;
    transform: none;
}

.input-icon textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
    background-color: transparent;
    color: inherit;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 120px;
}

.dark-mode .input-icon textarea {
    border-color: var(--border-color-dark);
}

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    accent-color: var(--primary-color);
}

.form-check label {
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2051b3 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-dots.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a2942 0%, #121921 100%);
    color: white;
    padding: 70px 5% 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/footer-pattern.svg');
    background-size: cover;
    opacity: 0.04;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-primary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(10);
}

.footer-logo h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex: 2;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-links-column {
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
    font-weight: 600;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links-column a i {
    margin-right: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    min-width: 20px;
}

.footer-links-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links-column a:hover i {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.footer-secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-languages {
    margin-right: 20px;
    margin-bottom: 15px;
}

.footer-language-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 15px;
}

.footer-language-selector i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-language-selector select {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    appearance: none;
    cursor: pointer;
    outline: none;
    padding-right: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="white"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-certifications img {
    height: 40px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(10);
}

.footer-certifications img:hover {
    opacity: 1;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-payment-methods img {
    height: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(10);
}

.footer-payment-methods img:hover {
    opacity: 1;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Language notification */
.language-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--background-light);
    color: var(--text-color-dark);
    padding: 15px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.3s forwards;
}

.dark-mode .language-notification {
    background-color: var(--background-dark-gray);
    color: var(--text-color-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.language-notification.success {
    background-color: #e6f7ee;
    color: #10b981;
}

.dark-mode .language-notification.success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.language-notification i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.language-notification.success i {
    color: #10b981;
}

.language-notification p {
    margin: 0;
    font-size: 0.95rem;
}

.language-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.dark-mode .language-loader {
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--primary-color);
}

.language-notification.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-image {
        max-width: 45%;
    }
}

@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 80px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .custom-plan {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .custom-plan-content {
        margin-right: 0;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form {
        min-width: 100%;
    }
    
    .navbar {
        padding: 15px 3%;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: var(--background-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-light);
        transition: left 0.3s ease;
        z-index: 1;
    }
    
    .dark-mode .nav-links {
        background-color: var(--background-dark-gray);
        box-shadow: var(--shadow-dark);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        margin: 12px 0;
        width: 100%;
        padding: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-container {
        gap: 20px;
    }
    
    .benefit {
        min-width: 100%;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-item {
        padding: 25px 20px;
    }
    
    .footer-primary {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
    
    .footer-links-column {
        min-width: 40%;
    }
    
    .footer-secondary {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .floating-element {
        display: none;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .trusted-logos {
        gap: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .benefit i {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin: 0 0 10px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .footer-links-column {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-column a {
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}