/* ============================================
   TITAN PRINT PORTAL - SERVICE PAGES CSS
   Matches existing design system exactly
   ============================================ */

:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d5;
    --primary-light: #6b7ff7;
    --secondary-color: #ffbe0b;
    --accent-color: #fb5607;
    --success-color: #06d6a0;
    --warning-color: #ffd60a;
    --error-color: #ef476f;
    --text-color: #2d3436;
    --text-light: #636e72;
    --text-muted: #95a5a6;
    --background-color: #f8f9fa;
    --surface-color: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max-width: 1400px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* === HEADER === */
header {
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-medium);
    background-color: rgba(255,255,255,0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover { transform: scale(1.05); }

.logo span {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 12px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.nav-links li { position: relative; }

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--primary-color); }

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after { width: 100%; }

/* Services Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    min-width: 260px;
    z-index: 999;
    padding: 8px 0;
    animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: rgba(67,97,238,0.05);
    color: var(--primary-color);
}

.nav-dropdown-menu a i {
    width: 24px;
    color: var(--primary-color);
    font-size: 15px;
}

.nav-dropdown > a::after { display: none; }

.nav-dropdown > a .dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-dropdown:hover > a .dropdown-arrow { transform: rotate(180deg); }

/* === BUTTONS === */
.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-light);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.large-btn { padding: 16px 32px; font-size: 17px; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px; height: 44px;
    position: relative;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-btn span {
    display: block;
    width: 25px; height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* === SERVICE HERO === */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 40%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(67,97,238,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255,190,11,0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(107,127,247,0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Animated grid dots bg */
.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(67,97,238,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67,97,238,0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(67,97,238,0.2);
}

.hero-badge i { font-size: 12px; }

.service-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-visual {
    position: relative;
    width: 360px;
    height: 400px;
}

.hc-main {
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 50px rgba(67,97,238,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: white;
    z-index: 3;
}

.hc-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    border-radius: 20px;
}

.hc-chip {
    width: 40px; height: 30px;
    background: linear-gradient(135deg, #ffbe0b, #ff9f00);
    border-radius: 6px;
}

.hc-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hc-logo-area i { font-size: 28px; }

.hc-text { font-size: 13px; font-weight: 600; opacity: 0.9; }

.hc-number {
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
}

.hc-name {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.hc-floating {
    position: absolute;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 4;
    white-space: nowrap;
}

.hc-floating i {
    color: var(--primary-color);
    font-size: 18px;
    width: 36px; height: 36px;
    background: rgba(67,97,238,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-floating .fc-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    display: block;
}

.hc-floating .fc-sub {
    font-size: 11px;
    color: var(--text-light);
    display: block;
}

.hc-f1 { top: 10px; right: -40px; animation: floatBob 3s ease-in-out infinite; }
.hc-f2 { bottom: 20px; left: -50px; animation: floatBob 3.5s ease-in-out infinite reverse; }

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

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--surface-color);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 70px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-list a:hover { text-decoration: underline; }

.breadcrumb-list .sep { color: var(--text-muted); font-size: 11px; }

.breadcrumb-list .current { color: var(--text-light); font-weight: 500; }

/* === SECTION COMMONS === */
.section { padding: 90px 0; }
.section-alt { background: var(--surface-color); }

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(67,97,238,0.08);
    color: var(--primary-color);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.25;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === SERVICE INFO SECTION === */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.info-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(67,97,238,0.04);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.info-feature:hover {
    background: rgba(67,97,238,0.08);
    transform: translateX(4px);
}

.info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    width: 32px; height: 32px;
    background: rgba(67,97,238,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.info-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

/* Benefits Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(67,97,238,0.2);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(67,97,238,0.1), rgba(67,97,238,0.05));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-color);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === PROCESS SECTION === */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-bottom: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--secondary-color));
    z-index: 0;
}

.process-step-item {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 8px 24px rgba(67,97,238,0.35);
    border: 4px solid var(--surface-color);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step-item:hover .step-circle {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(67,97,238,0.45);
}

.step-content {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    margin-top: 8px;
}

.process-step-item:hover .step-content {
    box-shadow: var(--shadow-medium);
    border-color: rgba(67,97,238,0.2);
}

.step-content i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-color);
}

.step-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* === DOCUMENTS SECTION === */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.doc-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: default;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(67,97,238,0.25);
}

.doc-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(67,97,238,0.1), rgba(67,97,238,0.05));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--primary-color);
    transition: var(--transition);
}

.doc-card:hover .doc-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.doc-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 6px;
}

.doc-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Required badge */
.doc-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.doc-badge.required {
    background: rgba(239,71,111,0.1);
    color: var(--error-color);
}

.doc-badge.optional {
    background: rgba(6,214,160,0.1);
    color: var(--success-color);
}

/* === ELIGIBILITY SECTION === */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.eligibility-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.elig-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.elig-icon.green {
    background: rgba(6,214,160,0.1);
    color: var(--success-color);
}

.elig-icon.blue {
    background: rgba(67,97,238,0.1);
    color: var(--primary-color);
}

.elig-icon.yellow {
    background: rgba(255,190,11,0.1);
    color: var(--secondary-color);
}

.elig-icon.orange {
    background: rgba(251,86,7,0.1);
    color: var(--accent-color);
}

.elig-text h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text-color);
}

.elig-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* === PRICING SECTION === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 8px 40px rgba(67,97,238,0.2);
}

.popular-badge {
    position: absolute;
    top: 20px; right: -28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.pricing-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.pricing-card:not(.popular) .pricing-icon {
    background: rgba(67,97,238,0.1);
    color: var(--primary-color);
}

.pricing-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-price .currency { font-size: 22px; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-price .period { font-size: 15px; color: var(--text-light); font-weight: 400; }

.pricing-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    text-align: left;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-color);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: var(--success-color);
    font-size: 13px;
    flex-shrink: 0;
}

/* === FAQ SECTION === */
.faq-container { max-width: 820px; margin: 0 auto; }

.faq-item {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(67,97,238,0.3);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover { background: rgba(67,97,238,0.03); }

.faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.faq-item.open .faq-q-text { color: var(--primary-color); }

.faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(67,97,238,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-toggle {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 0;
}

/* === SUPPORT SECTION === */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.support-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(67,97,238,0.2);
    color: inherit;
}

.support-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.support-card:hover .support-icon { transform: scale(1.1); }

.support-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text-color);
}

.support-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.support-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.support-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    position: relative;
}

.support-cta p {
    font-size: 15px;
    opacity: 0.85;
    margin: 0 0 28px;
    position: relative;
}

.support-cta .btn-white {
    background: white;
    color: var(--primary-color);
    border: none;
    position: relative;
}

.support-cta .btn-white:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* === RELATED SERVICES === */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.related-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: block;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(67,97,238,0.25);
    color: inherit;
}

.related-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(67,97,238,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 auto 12px;
    transition: var(--transition);
}

.related-card:hover .related-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.related-card h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 6px;
}

.related-card p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

.related-active {
    border-color: var(--primary-color);
    background: rgba(67,97,238,0.04);
}

.related-active .related-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #001233 0%, #1e3c72 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--secondary-color));
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 40px; height: 2px;
    background: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 600;
}

.footer-logo .highlight { color: var(--primary-light); }

.footer-column p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary-light);
}

.footer-contact {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact i { color: var(--primary-light); margin-top: 2px; }

.footer-social {
    display: flex; gap: 10px; margin-top: 16px;
}

.footer-social .social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-social .social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 8px;
}

.footer-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .copyright {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex; gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: white; }

/* === FLOATING BUTTONS === */
.floating-whatsapp, #back-to-top {
    position: fixed;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 999;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.floating-whatsapp {
    bottom: 28px; right: 28px;
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-whatsapp:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-heavy); }

#back-to-top {
    bottom: 28px; left: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0; visibility: hidden;
}

#back-to-top.visible { opacity: 1; visibility: visible; }

#back-to-top:hover { transform: translateY(-4px); }

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* === UTILITY === */
.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    .info-grid { gap: 40px; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-top .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .service-hero p { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .info-grid { grid-template-columns: 1fr; }
    .process-timeline::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        gap: 28px;
    }
    .nav-links.active { display: flex; }
    .nav-links li a { font-size: 22px; font-weight: 600; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        text-align: center;
    }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }
    .section { padding: 60px 0; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .info-features { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .support-cta { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .service-hero { padding: 100px 0 60px; }
    .docs-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
