/* ===================================
   CSS Reset & Base Styles
   =================================== */

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

:root {
    /* Colors */
    --color-primary: #0074AE;
    --color-secondary: #F58220;
    --color-dark-gray: #6D6863;
    --color-light-gray: #F5F5F5;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-text: #333333;
    --color-border: #DDDDDD;
    --color-disabled-bg: #E3E3E3;
    --color-disabled-text: #9F9F9F;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;
    
    /* Container */
    --container-max-width: 1440px;
    --container-padding: 2rem;
    
    /* Border Radius */
    --radius-sm: 7px;
    --radius-md: 10px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header */
.header {
    background-color: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 24px;
}

.logo img {
    width: 200px;
    height: auto;
    max-width: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #6d6863;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0074ae;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 0.25rem;
    font-size: 14px;
    font-weight: 600;
}

.lang-switcher .lang-link {
    color: #6d6863;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lang-switcher .lang-link:hover {
    color: #0074ae;
}

.lang-switcher .lang-link-active {
    color: #0074ae;
    cursor: default;
}

.lang-switcher .lang-sep {
    color: #6d6863;
    opacity: 0.6;
    user-select: none;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #6d6863;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #f58220;
    color: white;
    border-color: #0074ae;
}

.btn-primary:hover {
    background-color: #e67312;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #6d6863;
    border-color: #9f9f9f;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

.btn-download {
    background-color: #0074ae;
    color: white;
    border-color: #6d6863;
    width: 210px;
}

.btn-download:hover {
    background-color: #005a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 116, 174, 0.3);
}

.btn-large {
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    font-size: 18px;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(59.69deg, rgba(0, 0, 0, 0.5) 6.3%, rgba(0, 0, 0, 0) 81.11%);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
}

.hero-content {
    padding: 5rem 0;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    line-height: 1.5;
}

/* Section Styles */
section {
    padding: 72px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0074ae;
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

/* Benefits Section */
.benefits-section {
    background-color: #f5f5f5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 70px;
    position: relative;
}

.benefits-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 24px;
    border: 3px solid #f58220;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    width: 144px;
    height: 124px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0074ae;
    text-align: center;
    margin-top: 36px;
    margin-bottom: 12px;
}

.benefit-body {
    font-size: 20px;
    font-weight: 500;
    color: #0074ae;
    text-align: center;
    line-height: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-body p {
    margin-bottom: 20px;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
.process-section {
    background-color: #0074ae;
    color: white;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.process-header p {
    font-size: 20px;
    font-weight: 500;
    max-width: 1000px;
    margin: 0 auto;
}

.process-cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.process-cards::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 100px;
    right: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, transparent 50%, white 50%, white 100%);
    background-size: 12px 3px;
    z-index: 0;
}

.process-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-card p {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background-color: #F58220;
    color: white;
}

.features-section .section-subtitle {
    padding: 0 100px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0074ae;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 20px;
    color: #0074ae;
    line-height: 1.2;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px 48px;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonials-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 28px;
    position: relative;
}

.testimonials-slide.is-visible:not(.is-first-visible)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(0, 116, 174, 0.22);
}

.testimonials-carousel-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #0074ae;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.testimonials-carousel-btn:hover {
    transform: translateY(-50%) scale(1.04);
    opacity: 0.85;
}

.testimonials-carousel-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.testimonials-carousel-btn:focus-visible {
    outline: 2px solid rgba(0, 116, 174, 0.35);
    outline-offset: 4px;
}

.testimonials-carousel-btn-prev {
    left: 8px;
}

.testimonials-carousel-btn-next {
    right: 8px;
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.testimonials-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 116, 174, 0.25);
    cursor: pointer;
}

.testimonials-indicators button.active {
    background: #0074ae;
}

@media (max-width: 1024px) {
    .testimonials-slide {
        flex-basis: 50%;
    }
}

.testimonial-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    padding: 0 60px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0074ae;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #6d6863;
}

/* Pricing Section */
.pricing-section {
    background-color: #f5f5f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    padding: 104px 32px 48px;
    border: 3px solid #0074ae;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 116, 174, 0.2);
}

.pricing-card.highlighted {
    border-color: #f58220;
    border-width: 4px;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f58220;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 112px;
    height: 112px;
    margin: 0;
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .pricing-card {
        padding-top: 88px;
    }

    .pricing-icon {
        width: 90px;
        height: 90px;
        top: 18px;
        left: 18px;
    }
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0074ae;
    margin-bottom: 24px;
}

.pricing-tagline {
    font-size: 18px;
    font-style: italic;
    color: #0074ae;
    margin-bottom: 32px;
    font-weight: 500;
}

.pricing-card ul {
    list-style: disc;
    text-align: left;
    max-width: 350px;
    margin: 0 auto 32px;
    padding-left: 22px;
}

.pricing-card li {
    font-size: 16px;
    color: #0074ae;
    margin-bottom: 16px;
    padding-left: 0;
}

.pricing-card .btn {
    margin-top: 8px;
}

.pricing-cta {
    text-align: center;
    font-size: 18px;
    color: #6d6863;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Team Section
   =================================== */

.team-section {
    background-color: var(--color-primary);
    padding: 3.375rem 0;
}

.team-section .section-title {
    color: white;
}

.team-section .section-title h2 {
    font-size: 36px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
    margin-bottom: 3rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.3125rem;
    max-width: 300px;
}

.team-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
    /* border: 5px solid var(--color-white); */
    margin-bottom: 0.5rem;
    transition: transform var(--transition-fast);
}

.team-card img:hover {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    text-align: center;
}

.team-card p {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
}

.team-role {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
}

.team-bio {
    font-size: 0.875rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-white);
    text-align: center;
    line-height: 1.5;
    max-width: 241px;
}

.advisory-header {
    text-align: center;
    margin: 2.75rem 0 2rem;
}

.advisory-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0074ae;
    text-align: center;
    margin-bottom: 40px;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem 1.125rem;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===================================
   Carousel
   =================================== */

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Carousel buttons */
.carousel-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: auto;
    height: auto;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.8;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1);
}

.carousel-btn svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* Carousel indicators */
.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-indicator.active {
    background-color: var(--color-white);
    width: 30px;
    border-radius: 5px;
}

/* Desktop: Hide carousel controls, show grid */
@media (min-width: 769px) {
    .carousel-container {
        display: contents;
    }
    
    .carousel-wrapper {
        display: contents;
    }
    
    .carousel-track {
        display: contents;
    }
    
    .carousel-slide {
        min-width: auto;
        flex-shrink: 1;
        width: auto;
    }
    
    .carousel-btn,
    .carousel-indicators {
        display: none !important;
    }
    
    /* Ensure team-grid works with carousel structure */
    .team-grid .carousel-container,
    .advisory-grid .carousel-container {
        display: contents;
    }
}

/* Mobile: Show carousel */
@media (max-width: 768px) {
    .team-grid,
    .advisory-grid {
        display: block;
        grid-template-columns: none;
    }
    
    .carousel-container {
        display: block;
        width: 100%;
    }
    
    .carousel-wrapper {
        display: block;
        overflow: hidden;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    
    .carousel-slide {
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .carousel-btn {
        display: flex;
    }
    
    .carousel-indicators {
        display: flex;
    }
    
    .team-card {
        max-width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background-color: #6d6863;
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #9f9f9f;
    border-radius: 7px;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f58220;
}

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

.contact-form .btn-large {
    margin: 24px auto 0;
    display: block;
}

/* ===================================
   Footer
   =================================== */

   .footer {
    background-color: var(--color-black);
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 4rem;
}

.footer-logo svg {
    width: 114px;
    height: 62px;
}

.footer-copyright p {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 10px;
    color: white;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:visited {
    color: var(--color-white);
}

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

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.footer-social a:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .benefits-grid-2 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-carousel {
        padding-left: 48px;
        padding-right: 48px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-cards::before {
        display: none;
    }

    .process-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f5f5f5;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hero {
        padding: 40px 24px;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .benefit-card h3 {
        font-size: 24px;
    }

    .benefit-body {
        font-size: 18px;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-header p {
        font-size: 18px;
    }

    .process-card {
        flex: 0 0 100%;
    }

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

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

    .features-section .section-subtitle {
        padding: 0;
        font-size: 16px;
    }

    .testimonials-carousel {
        padding-left: 44px;
        padding-right: 44px;
    }

    .testimonials-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .testimonials-slide {
        flex-basis: 100%;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .testimonials-carousel {
        padding-left: 40px;
        padding-right: 40px;
    }

    .testimonials-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .testimonial-card {
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }
}

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

.benefit-card,
.feature-card,
.testimonial-card,
.team-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
:focus-visible {
    outline: 3px solid #f58220;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    section {
        page-break-inside: avoid;
    }
}
