/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d9488;
    --primary-deep: #0f766e;
    --secondary-color: #14b8a6;
    --accent-color: #fbbf24;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

body.page-home {
    font-family: var(--font-display);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.page-home .navbar {
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.page-home .nav-menu a.btn-primary {
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.page-home .nav-menu a.btn-login {
    border-radius: 999px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-deep);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    transition: opacity 0.2s ease;
}

.page-home .logo a:hover {
    opacity: 0.85;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-deep), #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(14, 165, 233, 0.25));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Login button in navigation */
.nav-menu a.btn-login {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.nav-menu a.btn-login:hover {
    background: var(--primary-color);
    color: white;
}

.nav-menu a.btn-login i {
    font-size: 0.9rem;
}

/* Contact button in navigation - only show btn-primary when not active */
.nav-menu a.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-menu a.btn-primary:hover {
    background: var(--secondary-color);
}

/* When Contact is active (on contact page), remove btn-primary styling */
.nav-menu a.active.btn-primary {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-pill {
    border-radius: 999px;
    padding-left: 28px;
    padding-right: 28px;
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-color) 50%, #0ea5e9 100%);
    background-size: 200% auto;
    color: white;
}

.btn-primary:hover {
    background-position: 100% center;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-deep);
    border: 2px solid rgba(13, 148, 136, 0.45);
}

.btn-secondary:hover {
    background: rgba(13, 148, 136, 0.08);
    color: var(--primary-deep);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-dark);
}

.testimonial-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: white;
}

.partners-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.partner-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.partner-name {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.partner-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.partner-link {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.partner-link i {
    margin-left: 6px;
    font-size: 0.8rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.guarantee-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.stars {
    color: #ffc107;
}

/* Expert Team Section */
.expert-team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.expert-team-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.problem-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.problem, .solution {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.problem h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.solution h3 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-list {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Advanced Techniques */
.advanced-techniques {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.advanced-techniques p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-main {
    max-width: 500px;
}

.footer-contact {
    max-width: 400px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info-footer i {
    color: var(--primary-color);
    margin-top: 4px;
    min-width: 20px;
}

.contact-info-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-footer a:hover {
    color: white;
}

.social-links a:hover {
    color: white !important;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    gap: 40px;
    margin: 40px 0;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
}

.case-study-header h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.case-study-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.case-study-content h3:first-child {
    margin-top: 0;
}

.case-study-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.case-study-content ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.case-study-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.case-study-quote {
    background: var(--bg-light);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
    border-radius: 5px;
}

.case-study-quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.case-study-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: bold;
    color: var(--primary-color);
}

/* Resources Page */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.resource-card .resource-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.resource-card ul li:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.resource-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

/* Success Dialog */
.success-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-dialog-overlay.show {
    opacity: 1;
}

.success-dialog {
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-dialog-overlay.show .success-dialog {
    transform: scale(1);
}

.success-dialog-content {
    padding: 40px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-dialog-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.success-dialog-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-message {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 30px;
}

.success-dialog-content .btn {
    min-width: 120px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .problem-solution {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main,
    .footer-contact {
        max-width: 100%;
    }

    .contact-info-footer p {
        flex-direction: row;
        align-items: center;
    }
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-item ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* ========== Hacbase home (proxy landing) ========== */
@keyframes hero-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -8px) scale(1.02); }
}

.hero--proxy {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: clamp(72px, 12vw, 120px) 0 96px;
    text-align: center;
    background: linear-gradient(125deg, #020617 0%, #0f172a 25%, #134e4a 55%, #0d9488 85%, #0ea5e9 100%);
    background-size: 200% 200%;
    animation: hero-gradient-shift 18s ease infinite;
}

.hero--proxy .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(45, 212, 191, 0.45), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 60%, rgba(14, 165, 233, 0.2), transparent),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
    opacity: 1;
    pointer-events: none;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orbs::before,
.hero-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: hero-float 12s ease-in-out infinite;
}

.hero-orbs::before {
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    top: -12%;
    right: -8%;
    background: rgba(45, 212, 191, 0.35);
}

.hero-orbs::after {
    width: min(320px, 70vw);
    height: min(320px, 70vw);
    bottom: 5%;
    left: -6%;
    background: rgba(14, 165, 233, 0.28);
    animation-delay: -4s;
}

.hero--proxy .container {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(204, 251, 241, 0.92);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5eead4, #38bdf8);
    box-shadow: 0 0 16px rgba(45, 212, 191, 0.9);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(1.15); }
}

.hero--proxy .hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.hero--proxy .hero-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.72;
    color: rgba(226, 232, 240, 0.92);
    margin-top: 20px;
}

.hero-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin: 32px auto 0;
    max-width: 640px;
    padding: 0;
}

.hero-stats li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-stat-num {
    font-weight: 800;
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(148, 163, 184, 0.95);
    font-weight: 500;
}

.hero--proxy .hero-buttons {
    margin-top: 40px;
    gap: 14px;
}

.hero--proxy .hero-btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.06);
}

.hero--proxy .hero-btn-outline:hover {
    background: #fff;
    color: var(--primary-deep);
    border-color: #fff;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.section-wave-top {
    position: relative;
    padding-top: 96px;
}

.section-wave-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-light) 50%) left / 50.25% 100% no-repeat,
        linear-gradient(to bottom left, transparent 49.5%, var(--bg-light) 50%) right / 50.25% 100% no-repeat;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-title--decor {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-title--decor::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-deep), #0ea5e9);
}

.section-kicker {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

.section-kicker.pricing-lead {
    max-width: 560px;
}

.page-home .testimonials-section .testimonial-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.page-home .testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-deep), #0ea5e9);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.page-home .testimonials-section .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.25);
}

.page-home .testimonials-section .testimonial-card:hover::before {
    opacity: 1;
}

.page-home .testimonials-section .testimonial-card h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.testimonial-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--primary-deep), var(--primary-color) 40%, #0ea5e9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.28);
}

.pricing-section {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.pricing-lead {
    text-align: center;
    color: var(--text-light);
    margin-top: -36px;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.2);
}

.price-card--featured {
    background: linear-gradient(165deg, #ecfdf5 0%, #fff 42%, #f8fafc 100%);
    border: 2px solid rgba(13, 148, 136, 0.45);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.15);
    transform: scale(1.02);
    z-index: 1;
}

.price-card--featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 24px 56px rgba(13, 148, 136, 0.22);
}

.price-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #422006;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.price-tier {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-deep), #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
}

.price-amount .currency {
    font-size: 1.15rem;
    font-weight: 800;
    margin-right: 2px;
}

.price-amount .per {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
    background: none;
}

.price-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    font-size: 0.9375rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--success-color);
    margin-top: 3px;
}

.btn-block {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.specs-section {
    padding: 88px 0 100px;
    background: var(--bg-light);
    position: relative;
}

.specs-panel {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.specs-list {
    margin: 0;
}

.spec-row {
    display: grid;
    grid-template-columns: minmax(120px, 160px) 1fr;
    gap: 12px 28px;
    padding: 22px 32px;
    border-bottom: 1px solid var(--border-color);
    align-items: start;
    transition: background 0.2s ease;
}

.spec-row:hover {
    background: rgba(241, 245, 249, 0.65);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row dt {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-deep);
    margin: 0;
}

.spec-row dd {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-content--proxy {
    grid-template-columns: 1.2fr minmax(140px, auto) 1fr 1.15fr;
    gap: 40px;
}

.footer-wechat h3,
.footer-docs h3 {
    font-size: 1.1rem;
}

.footer-qr-wrap {
    margin-top: 12px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    display: inline-block;
}

.footer-qr-wrap img {
    display: block;
    border-radius: 6px;
    max-width: 128px;
    height: auto;
}

.footer-docs ul {
    list-style: none;
    margin-top: 12px;
}

.footer-docs ul li {
    margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
    .hero--proxy {
        animation: none;
    }

    .hero-orbs::before,
    .hero-orbs::after {
        animation: none;
    }

    .hero-eyebrow-dot {
        animation: none;
    }

    .price-card,
    .page-home .testimonials-section .testimonial-card {
        transition: none;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .price-card--featured {
        order: -1;
        transform: none;
    }

    .price-card--featured:hover {
        transform: translateY(-6px);
    }

    .footer-content--proxy {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero--proxy {
        min-height: auto;
        padding: 72px 0 64px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats li {
        justify-content: center;
    }

    .section-wave-top {
        padding-top: 72px;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-content--proxy {
        grid-template-columns: 1fr;
    }
}

