* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --ink: #1a202c;
    --slate: #555;
    --brand: #2563eb;
    --brand-strong: #1e40af;
    --accent: #764ba2;
    --accent-soft: #667eea;
    --surface: #ffffff;
    --surface-alt: #f8fbff;
    --border: #e5e7eb;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    color: #333;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #f0f0f0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: -0.5px;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--brand);
    transition: width 0.3s ease;
}

.nav-primary,
.nav-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-primary {
    background: var(--brand);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.nav-primary:hover {
    background: var(--brand-strong);
    transform: translateY(-2px);
}

.nav-ghost {
    color: var(--brand-strong);
    border-color: rgba(37, 99, 235, 0.35);
    background: rgba(255, 255, 255, 0.6);
}

.nav-ghost:hover {
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    background: var(--brand);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: var(--brand-strong);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.dropdown-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    margin-top: 12px;
    z-index: 1000;
    overflow: hidden;
    animation: slideDown 0.3s ease;
    max-width: calc(100vw - 30px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 1rem 1.4rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.dropdown-item:hover {
    background: #f9f9fb;
    color: var(--accent-soft);
    padding-left: 1.6rem;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.company-btn {
    background: transparent;
    border: 2px solid var(--accent-soft);
    color: var(--accent-soft);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-wrapper {
    display: contents;
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cta-link {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--brand-strong);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.hero-proof span {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-weight: 600;
}

.hero-visual {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    animation: float 4s ease-in-out infinite;
}

.hero-visual svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.15));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
}

.hero-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--brand);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-btn {
    background: var(--brand);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--brand-strong);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.cta-btn.primary {
    background: var(--brand);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.cta-btn.primary:hover {
    background: var(--brand-strong);
}

.cta-btn.ghost {
    background: transparent;
    color: var(--brand);
    border: 1px solid rgba(37, 99, 235, 0.4);
}

.cta-btn.ghost:hover {
    background: rgba(37, 99, 235, 0.1);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.section-heading p {
    color: #666;
    font-size: 1.05rem;
}

.quick-start {
    padding: 90px 0;
    background: var(--surface);
}

.login-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--border);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 240px;
}

.login-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.4);
}

.login-icon {
    font-size: 2.2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
}

.card-user .login-icon {
    background: rgba(37, 99, 235, 0.12);
}

.card-club .login-icon {
    background: rgba(118, 75, 162, 0.16);
}

.card-company .login-icon {
    background: rgba(102, 126, 234, 0.18);
}

.login-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.login-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.login-cta {
    margin-top: auto;
    font-weight: 700;
    color: var(--brand);
}

.value-props {
    padding: 90px 0;
    background: var(--surface-alt);
}

.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.prop-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.prop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.prop-card p {
    color: #666;
    margin-bottom: 1.2rem;
}

.text-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

.text-link:hover {
    color: var(--brand-strong);
}

.cta-band {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.cta-band .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.cta-band-content p {
    color: #666;
    font-size: 1.05rem;
}

.cta-band-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero {
    padding: 90px 0 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.footer-compact {
    background: #1a202c;
    color: #cbd5f5;
    padding: 3.5rem 0 1.5rem;
}

.footer-compact .logo {
    color: #667eea;
}

.footer-compact-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    max-width: 320px;
    color: #cbd5e1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-compact .footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

.footer-compact .footer-bottom a {
    color: #667eea;
}

.footer-compact .footer-bottom a:hover {
    color: #8ea1ff;
}

.faq-details details {
    margin-bottom: 1rem;
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-details details[open] {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.4);
}

.faq-details summary {
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
}

.faq-details p {
    margin-top: 0.8rem;
    color: var(--slate);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about .container {
    max-width: 900px;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about h3 {
    font-size: 1.3rem;
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about > .container > p {
    font-size: 1.05rem;
    text-align: center;
    color: #666;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-card {
    background: #f8fbff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--brand);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.about-card h4 {
    font-size: 1.25rem;
    color: var(--brand-strong);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* What We Offer Section */
.what-we-offer {
    padding: 100px 0;
    background: #f8fbff;
}

.what-we-offer h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
}

.what-we-offer h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand);
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 3rem !important;
    font-weight: 500;
}

.offer-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offer-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.offer-item::before {
    content: '';
    display: none;
}

.offer-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--brand);
}

.offer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offer-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

.offer-item:hover .offer-icon {
    background: var(--brand);
    transform: scale(1.1);
}

.offer-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.offer-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.offer-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.offer-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.offer-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
    font-size: 1.1rem;
}

.offer-features li:hover {
    color: var(--brand);
    padding-left: 2rem;
}

.offer-link {
    color: var(--brand-strong);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.offer-link:hover {
    color: var(--brand);
    transform: translateX(4px);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
}

.why-choose h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.why-choose > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    line-height: 1.8;
}

.why-choose h3 {
    text-align: center;
    color: var(--brand-strong);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit {
    padding: 1.8rem;
    background: #f8fbff;
    border-radius: 10px;
    border-top: 3px solid var(--brand);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.benefit h4 {
    font-size: 1.15rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fbff;
}

.faq .container {
    max-width: 800px;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
}

.faq h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1a202c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    background: #f8fbff;
}

.faq-answer {
    padding: 1.5rem;
    padding-top: 0;
    color: #666;
    line-height: 1.8;
    display: none;
    border-top: 1px solid #e5e7eb;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.contact .container {
    max-width: 800px;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: white;
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.contact > .container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.contact-details a:hover {
    color: #f0f7ff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: white;
    color: var(--brand-strong);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a202c;
    color: #ccc;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--brand);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--brand-strong);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 100;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
    }
    
    .nav-buttons {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 10px;
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
        transition: all 0.3s ease;
    }
    
    .nav-buttons.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        display: flex;
    }
    
    .nav-buttons .login-btn {
        width: 100%;
        text-align: center;
    }

    .nav-buttons a {
        width: 100%;
        text-align: center;
    }

    .nav-buttons button {
        width: 100%;
        text-align: center;
    }

    .dropdown {
        position: static;
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: 1px solid #f0f0f0;
        border-radius: 0;
        margin-top: 0;
        min-width: unset;
        max-width: unset;
    }

    .dropdown-menu.active {
        display: block;
        animation: none;
    }

    .dropdown-item {
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-compact-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero h1 {
        font-size: 2.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .offer-items {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about h2,
    .what-we-offer h2,
    .why-choose h2,
    .faq h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-links a {
        display: block;
        text-align: center;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f9f9f9;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.team .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 20px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.team-photo svg {
    width: 120px;
    height: 120px;
}

.team-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.team-post {
    font-size: 0.95rem;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-card {
        padding: 15px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto 15px;
    }

    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        image-rendering: -webkit-optimize-contrast;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }

    .team-photo svg {
        width: 100px;
        height: 100px;
    }

    .team-card h3 {
        font-size: 1.1rem;
    }

    .team h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
