/* ==========================================================================
   DIGITAL AGENCY THEME - MASTER STYLESHEET
   Design Style: Premium Modern IT & Digital Marketing Agency
   Palette: Navy Slate (#0f172a), Deep Blue (#1e293b), Primary Blue (#2563eb), Cyan (#06b6d4)
   ========================================================================== */

/* --- 1. CSS VARIABLES & DESIGN SYSTEM --- */
:root {
    --bg-dark: #0f172a;
    --bg-dark-card: #1e293b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --brand-primary: #2563eb;
    --brand-primary-hover: #1d4ed8;
    --brand-secondary: #06b6d4;
    --brand-accent: #3b82f6;
    --brand-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    --whatsapp-color: #25d366;
    --whatsapp-hover: #1da851;
    --border-color: #e2e8f0;
    --border-dark: #334155;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);
    
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. BASE & RESET --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--brand-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

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

/* Section Typography & Tags */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-tag.light-tag {
    color: var(--brand-secondary);
    background: rgba(6, 182, 212, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 48px;
}

/* --- 3. BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--bg-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(37, 99, 235, 0.35);
    color: var(--bg-white);
}

.btn-outline {
    background: transparent;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: var(--bg-white);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.btn-outline-light:hover {
    background: var(--bg-white);
    color: var(--bg-dark);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
}

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

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

.btn-block {
    width: 100%;
}

/* --- 4. HEADER & NAVIGATION --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.brand-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background: var(--bg-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- 5. HERO SECTION --- */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: var(--dark-gradient);
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--brand-primary);
}

.shape-2 {
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: var(--brand-secondary);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-secondary);
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.trust-point i {
    color: var(--brand-secondary);
}

/* Hero Lead Form Card */
.lead-card {
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.lead-card-header {
    margin-bottom: 24px;
}

.lead-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 6px;
}

.lead-card-header p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.col-12 { grid-column: span 12; }
.col-6  { grid-column: span 6; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.form-group label .required {
    color: #ef4444;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--bg-white);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

select.form-input option {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.radio-group {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-top: 4px;
}

.radio-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.privacy-note {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 10px;
    text-align: center;
}

.form-response-msg {
    grid-column: span 12;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-response-msg.success {
    display: block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    color: #4ade80;
}

.form-response-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
}

/* --- 6. TRUST BADGES SECTION --- */
.trust-badges-section {
    padding: 48px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.badge-item {
    text-align: center;
    padding: 16px 12px;
}

.badge-item i {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.badge-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --- 7. COUNTERS SECTION --- */
.counters-section {
    padding: 60px 0;
    background: var(--dark-gradient);
    color: var(--text-light);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.counter-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-primary);
}

.counter-icon {
    font-size: 2.2rem;
    color: var(--brand-secondary);
    margin-bottom: 12px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* --- 8. ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--brand-gradient);
    color: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 16px;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 120px;
    line-height: 1.3;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pillar i {
    font-size: 1.5rem;
    color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.pillar h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- 9. SERVICES SECTION (10 CARDS) --- */
.services-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
    background: var(--bg-white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features-list {
    margin-bottom: 24px;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}

.service-features-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list i {
    color: var(--brand-primary);
}

.btn-service-details {
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

.btn-service-details:hover {
    background: var(--brand-primary);
    color: var(--bg-white);
}

/* --- 10. SERVICE POPUP MODAL SYSTEM --- */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.service-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal-overlay.active .service-modal-dialog {
    transform: scale(1);
}

.service-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
}

.service-modal-close-btn:hover {
    background: #ef4444;
    color: var(--bg-white);
    border-color: #ef4444;
}

.service-modal-content {
    overflow-y: auto;
    padding: 40px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.modal-section {
    margin-bottom: 36px;
}

.modal-sec-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.modal-sec-title i {
    color: var(--brand-primary);
}

.modal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.modal-check-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-check-list i {
    color: #22c55e;
}

.modal-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-feature-pills li {
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-feature-pills i {
    color: var(--brand-secondary);
}

.modal-benefits-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-card i {
    color: var(--brand-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.modal-process-steps {
    padding-left: 20px;
}

.modal-process-steps li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.why-us-modal-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.modal-guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
}

/* Modal Pricing Cards */
.modal-pricing-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

.modal-pricing-section .modal-sec-title {
    color: var(--bg-white);
}

.pricing-sub {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

.modal-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.modal-price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-price-card.popular-card {
    border-color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.15);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    right: 12px;
    background: var(--brand-gradient);
    color: var(--bg-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-secondary);
    margin-bottom: 16px;
}

.pkg-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.pkg-features li {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-features i {
    color: #22c55e;
}

.modal-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.modal-faq-q {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-faq-q i {
    color: var(--brand-primary);
}

.modal-faq-a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-bottom-cta {
    background: var(--dark-gradient);
    color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
}

.cta-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-inner p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- 11. WHY CHOOSE US --- */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.why-icon {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- 12. OUR PROCESS --- */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 12px;
    opacity: 0.8;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --- 13. PORTFOLIO SECTION --- */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--brand-primary);
    color: var(--bg-white);
    border-color: var(--brand-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.portfolio-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-box img {
    transform: scale(1.08);
}

.portfolio-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.8);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.portfolio-tech {
    display: flex;
    gap: 8px;
}

.portfolio-tech span {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--brand-primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

/* --- 14. INDUSTRIES WE SERVE --- */
.industries-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.industry-card:hover {
    background: var(--bg-white);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.industry-card i {
    font-size: 2rem;
    color: var(--brand-primary);
}

.industry-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

/* --- 15. RESULTS & ACHIEVEMENTS --- */
.achievements-section {
    padding: 80px 0;
    background: var(--dark-gradient);
    color: var(--text-light);
}

.achievements-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.achievements-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.achievements-content p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.achievements-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-secondary);
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.88rem;
    color: #cbd5e1;
}

/* --- 16. TESTIMONIALS --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- 17. FAQ ACCORDION --- */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-light);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1rem;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- 18. BLOG SECTION --- */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-img-box {
    position: relative;
    height: 200px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--brand-primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--text-primary);
}

.blog-title a:hover {
    color: var(--brand-primary);
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- 19. FINAL CTA BANNER --- */
.final-cta-section {
    padding: 80px 0;
    background: var(--dark-gradient);
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}

.final-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.final-cta-card p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto 32px;
}

.final-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- 20. CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-gradient);
    color: var(--bg-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 36px;
    border-radius: var(--radius-lg);
}

/* --- 21. FOOTER --- */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-bio {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--brand-primary);
    color: var(--bg-white);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-primary);
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--brand-primary);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-contact-info i {
    color: var(--brand-secondary);
    margin-top: 4px;
}

.footer-contact-info a {
    color: #94a3b8;
}

.footer-contact-info a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 24px 0;
}

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

.copyright-text {
    font-size: 0.85rem;
    color: #64748b;
}

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

.legal-links a {
    font-size: 0.85rem;
    color: #64748b;
}

.legal-links a:hover {
    color: var(--bg-white);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--bg-white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: var(--bg-dark);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- 22. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .hero-container, .about-grid, .achievements-box, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .why-us-grid, .process-timeline, .portfolio-grid, .blog-grid, .testimonials-grid, .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .header-actions .header-cta {
        display: none;
    }
    
    .mobile-toggle-btn {
        display: flex;
    }
    
    .main-navigation {
        position: absolute;
        top: var(--header-height);
        left: 0; right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        display: none;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .services-grid, .why-us-grid, .process-timeline, .portfolio-grid, .blog-grid, .testimonials-grid, .industries-grid, .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-grid-2, .benefits-grid, .modal-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .col-6 {
        grid-column: span 12;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .service-modal-content {
        padding: 24px 16px;
    }
}

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