* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Updated dark theme colors with deeper blacks and purple/pink accents */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-primary: #d4d4d4;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --accent-primary: #a855f7;
    --accent-secondary: #ec4899;
    --accent-glow: rgba(168, 85, 247, 0.5);
    --border-color: rgba(168, 85, 247, 0.1);
    --border-hover: rgba(168, 85, 247, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Remove visited link highlighting globally */
a,
a:visited {
    color: inherit;
    text-decoration: none;
}

/* Consistent anchor styling */
a:not(.btn), a:not(.btn):visited, a:not(.btn):hover, a:not(.btn):focus, a:not(.btn):active {
    color: var(--accent-primary) !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Added gradient background with glow effect */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(236, 72, 153, 0.1), transparent),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(168, 85, 247, 0.1), transparent);
    pointer-events: none;
}

/* Added fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 40px rgba(236, 72, 153, 0.3);
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(10, 10, 10, 0.7);
    /* Added animation */
    animation: fadeIn 0.6s ease-out;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent-primary);
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-primary);
    /* Added glow effect to icons */
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
}

.icon-lg {
    width: 2.5rem;
    height: 2.5rem;
    /* Approximate #a552f3 tint using filter */
    filter: brightness(0) saturate(100%) invert(38%) sepia(77%) saturate(747%) hue-rotate(230deg) brightness(95%) contrast(101%);
}

.icon-sm {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-primary {
    background: var(--accent-secondary);
    color: white;
    /* Added glow effect to primary buttons */
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.5), 0 0 40px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(30, 30, 30, 0.8);
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 4rem 1rem 4rem; /* reduced top/bottom padding */
    /* Added animation */
    animation: fadeIn 0.8s ease-out;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1.5rem; /* reduced gap below hero content */
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem; /* reduced gap below badge */
    backdrop-filter: blur(10px);
    /* Added glow animation */
    animation: glow 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem; /* reduced gap below title */
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

/* Center all major titles and headers */
.hero-title,
.section-title,
.hero-subtitle,
.section-subtitle,
.my-work-header,
.how-it-works-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.text-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto 1rem; /* reduced gap below subtitle */
    text-wrap: balance;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-primary);
    /* Added glow to stars */
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5));
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Features Section */
.features {
    padding: 2rem 1rem 3rem; /* reduced top/bottom padding */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    /* Added animation with stagger effect */
    animation: slideUp 0.6s ease-out;
    animation-fill-mode: both;
}

.features-grid .card:nth-child(1) {
    animation-delay: 0.1s;
}

.features-grid .card:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid .card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    /* Added glow effect on hover */
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2), 0 0 40px rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.5rem;
    padding-bottom: 0.5rem; /* reduced gap below card header */
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    /* Added glow to icon container */
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.2));
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content {

}

/* Form element styles: labels, inputs and textareas */
label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea,
.styled-input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.04);
    background-color: rgba(255,255,255,0.02);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.4;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.08s ease;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.styled-input:focus {
    outline: none;
    border-color: var(--border-hover);
    box-shadow: 0 6px 18px var(--accent-glow);
    transform: translateY(-1px);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

input[disabled], textarea[disabled], select[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Compact form rows for side-by-side fields */
.form-row {
    display: flex;
    gap: 0.75rem;
}
.form-row > * { flex: 1 1 0; }

/* Mobile navigation styles */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--text-primary);
}
.nav-toggle:focus { outline: 2px solid var(--accent-primary); outline-offset: 2px; }
.nav-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    display: block;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Right-side drawer menu + overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px; /* small portion of the screen */
    max-width: 85vw;
    background: linear-gradient(180deg, rgba(16,16,16,0.98), rgba(10,10,10,0.98));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1.25rem;
    z-index: 60;
    transform: translateX(110%);
    transition: transform 0.32s cubic-bezier(.2,.9,.2,1), box-shadow 0.25s;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255,255,255,0.03);
    box-shadow: -8px 0 30px rgba(0,0,0,0.6);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
    font-size: 1.05rem;
    color: var(--text-primary);
    padding: 0.6rem 0.75rem;
    width: 100%;
    display: block;
    border-radius: 0.5rem;
}
.mobile-menu .nav-link:hover { color: var(--accent-primary); background: rgba(168,85,247,0.03); }

/* Ensure desktop nav items align properly when toggle added */
.nav-content { gap: 0.5rem; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-content { padding: 0.5rem 0; }
    .brand-text { font-size: 1rem; }
    /* Make sure hero doesn't get hidden behind overlay when menu open */
    body.menu-open { overflow: hidden; }
}

/* Prevent focus outline issues for click-only elements */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu { transition: none; }
    .nav-toggle .bar { transition: none; }
    .mobile-overlay { transition: none; }
}

/* Pricing Section */
.pricing {
    padding: 4rem 1rem 6rem;
}

.pricing-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem; /* reduced gap below section title */
    text-wrap: balance;
    /* Added text glow */
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
    text-wrap: balance;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
}


.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    /* Added staggered animation */
    animation: slideUp 0.6s ease-out;
    animation-fill-mode: both;
}

.pricing-grid .pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-grid .pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-grid .pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-grid .pricing-card:nth-child(4) {
    animation-delay: 0.4s;
}

.pricing-grid .pricing-card:nth-child(5) {
    animation-delay: 0.5s;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    /* Enhanced glow on hover */
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.15);
    transform: translateY(-4px);
}

.pricing-card-popular {
    border: 2px solid rgba(168, 85, 247, 0.6);
    /* Added permanent glow to popular card */
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.2);
}

.pricing-card-popular:hover {
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4), 0 0 80px rgba(168, 85, 247, 0.3);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    /* Added glow to badge */
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
}

.pricing-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-badge {
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 0.375rem;
    color: var(--accent-primary);
    font-size: 0.875rem;
    background-color: rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    padding: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
    /* Added glow to checkmarks */
    filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.5));
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.card-footer {
    padding: 1.5rem;
    margin-top: auto;
}

/* Added How It Works section styles */
.how-it-works {
    padding: 4rem 1rem 6rem;
    position: relative;
}

.how-it-works-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideUp 0.6s ease-out;
    animation-fill-mode: both;
}

.steps-grid .step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.steps-grid .step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.steps-grid .step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2), 0 0 40px rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.2));
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.my-work {
    padding: 4rem 1rem;
    text-align: center;
}

.my-work-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.teams-section {
    padding: 4rem 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.team-item {
    position: absolute;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transform-origin: center;
}

.team-item:hover {
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.5);
    transform: scale(1.1);
}

.team-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 2s ease;
}

.team-item:hover img {
    transform: scale(1.05);
}

.team-item.active {
    z-index: 10;
    width: 500px;
    height: 300px;
    left: 50%;
    transform: translateX(-50%);
}

.team-item.prev {
    z-index: 5;
    width: 350px;
    height: 250px;
    left: 20%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0.8;
}

.team-item.next {
    z-index: 5;
    width: 350px;
    height: 250px;
    left: 80%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0.8;
}

.team-item.hidden {
    display: none;
}

.team-item-caption {
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}


/* Carousel arrow styling */
.carousel-arrow {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.25);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.carousel-arrow-left {
    left: -80px !important;
}

.carousel-arrow-right {
    right: -80px !important;
}

.team-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 16, 50, 0.85); /* purple-tinted overlay */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.3s;
}

.image-modal.show {
    display: flex;
}

.modal-img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: #222;
}

.modal-caption {
    color: #a259ff;
    font-size: 1.2rem;
    margin-top: 16px;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: #fff;
    z-index: 10000;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #a259ff;
}

/* Footer styles */
.footer {
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    backdrop-filter: blur(20px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #acacac;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-primary);
}

.call-to-action {
    padding: 4rem 1rem;
    text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .team-carousel {
        height: 300px !important;
    }

    .team-item.active {
        width: 300px;
        height: 200px;
    }

    .team-item.prev,
    .team-item.next {
        width: 200px;
        height: 150px;
    }
}
