:root {
    --primary: #0f766e; /* Teal 700 */
    --primary-dark: #115e59; /* Teal 800 */
    --accent: #f59e0b; /* Amber 500 */
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-light: #f0fdfa; /* Teal 50 */
    --text-main: #1e293b; /* Slate 800 */
    --text-muted: #64748b; /* Slate 500 */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(15, 118, 110, 0.08);
    --gradient-1: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Floating Background Gradients */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    animation: float 25s infinite ease-in-out;
}

.orb-1 { width: 500px; height: 500px; background: #14b8a6; top: -150px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: #f59e0b; bottom: 10%; right: -100px; animation-delay: -8s; }
.orb-3 { width: 300px; height: 300px; background: #0d9488; top: 50%; left: 40%; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

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

/* Typography & Utilities */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--bg-dark); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.25rem; color: var(--text-muted); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Glassmorphism */
.glass-nav, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-dark);
    letter-spacing: -0.03em;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.4);
}

.glow-btn {
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 15px rgba(15, 118, 110, 0.3); }
    to { box-shadow: 0 0 30px rgba(20, 184, 166, 0.6); }
}

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

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

.btn-text {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-text:hover { gap: 0.85rem; color: var(--primary-dark); }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--bg-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.animated-badge {
    display: inline-block;
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 118, 110, 0.15);
    letter-spacing: 0.02em;
}

.hero-intro {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 350px;
    height: 350px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 10s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    animation: floatCard 7s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.8);
}

.card-1 { top: 15%; left: 5%; }
.card-2 { bottom: 15%; right: 5%; animation-delay: -3.5s; }

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Sections General */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 5rem; }

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-8px); }

.stat-card .counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(15, 118, 110, 0.12);
    border-color: rgba(15, 118, 110, 0.2);
}

.icon-box {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(15, 118, 110, 0.08);
    border-radius: 16px;
}

.feature-list {
    list-style: none;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

/* Process Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.15);
    font-size: 1.1rem;
}

.timeline-content {
    padding: 2rem;
    border-radius: var(--radius);
    flex: 1;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
}

/* Results Section (CSS Abstract) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
}

.css-abstract {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.abstract-1 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.abstract-2 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.abstract-3 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: white;
    padding: 2.5rem 2rem;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.result-card:hover .css-abstract { transform: scale(1.1); }
.result-card:hover .result-overlay { transform: translateY(0); opacity: 1; }
.result-overlay h4 { color: white; margin-bottom: 0.5rem; font-size: 1.25rem; }
.result-overlay p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }

/* Article Section */
.article-section {
    background: white;
    padding: 120px 0;
}

.article-container {
    max-width: 850px;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.25rem;
    font-weight: 500;
}

.article-content h2 {
    margin-top: 3.5rem;
    color: var(--bg-dark);
    border-bottom: 2px solid rgba(15, 118, 110, 0.1);
    padding-bottom: 0.75rem;
}

.article-content h3 {
    margin-top: 2.5rem;
    color: var(--primary-dark);
}

.article-content a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(15, 118, 110, 0.3);
    text-underline-offset: 4px;
}

.article-content a:hover {
    text-decoration-color: var(--primary);
    color: var(--primary-dark);
}

.process-list {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.callout-box {
    padding: 1.75rem;
    border-radius: var(--radius);
    margin: 2.5rem 0;
    border-left: 5px solid;
    font-size: 1.05rem;
}

.warning-box {
    background: rgba(239, 68, 68, 0.06);
    border-color: #ef4444;
    color: #991b1b;
}

.tip-box {
    background: rgba(15, 118, 110, 0.06);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(15, 118, 110, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: var(--bg-dark);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover { background: #f0fdfa; }

.stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: #f8fafc;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-icon { font-size: 2.25rem; }

/* FAQ Accordion */
.faq-container {
    margin: 2.5rem 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.75rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 1.75rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 300px; transition: max-height 0.4s ease-in-out; }

.summary-box {
    background: var(--gradient-1);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-top: 4rem;
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
}

.summary-box h3 { color: white; margin-top: 0; font-size: 1.5rem; }

.checklist {
    list-style: none;
    margin-top: 1.5rem;
}

.checklist li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rating { color: var(--accent); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 0.25rem; }
.location { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-form-wrapper {
    padding: 3rem;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255,255,255,0.6);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
    background: white;
}

.full-width { width: 100%; margin-top: 0.5rem; }

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.footer-logo span { color: #14b8a6; }

.footer-col p { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; }

.footer-col h4 {
    color: white;
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.85rem; }

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: #14b8a6; padding-left: 5px; }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: 1fr; margin-top: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links.active { transform: translateY(0); }
    .mobile-menu-btn { display: flex; }
    .nav-cta { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-actions { flex-direction: column; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}