/* ============================================
   NovaPay Fintech - Estilos Globales 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #1E3A5F;
  --navy-light: #2D5186;
  --teal: #00D4AA;
  --teal-dark: #00A882;
  --gold: #FFB800;
  --gold-dark: #E5A500;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-light: #EFF3FB;
  --gray: #8A9BB5;
  --text: #2C3E50;
  --text-light: #5A6E8C;
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #2D5186 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f6ff 100%);
  --gradient-teal: linear-gradient(135deg, #00D4AA 0%, #00A882 100%);
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --shadow-teal: 0 8px 32px rgba(0,212,170,0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,22,40,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,212,170,0.15); transition: var(--transition); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-icon { width: 40px; height: 40px; background: var(--gradient-teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 900; color: var(--navy); box-shadow: var(--shadow-teal); }
.nav-logo-text { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--teal); }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-menu a { text-decoration: none; color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.875rem; border-radius: 8px; transition: var(--transition); white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active { color: var(--teal); background: rgba(0,212,170,0.1); }
.nav-cta { background: var(--gradient-teal) !important; color: var(--navy) !important; font-weight: 700 !important; padding: 0.6rem 1.25rem !important; border-radius: 10px !important; box-shadow: var(--shadow-teal); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,212,170,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero { min-height: 100vh; background: var(--gradient-hero); position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 72px; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(0,212,170,0.08) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -10%; left: -10%; width: 60%; height: 60%; background: radial-gradient(ellipse, rgba(255,184,0,0.05) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--teal); margin-bottom: 1.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(1.3)} }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.hero-title .highlight { color: var(--teal); }
.hero-title .highlight-gold { color: var(--gold); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-image-wrap::before { content: ''; position: absolute; inset: -3px; border-radius: calc(var(--radius-lg) + 3px); background: linear-gradient(135deg,var(--teal),transparent,var(--gold)); z-index: -1; opacity: 0.5; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3rem; }
.hero-stat { text-align: center; padding: 1.25rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); backdrop-filter: blur(10px); }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--teal); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; font-weight: 500; }

/* PAGE HERO */
.page-hero { background: var(--gradient-hero); padding: 8rem 0 5rem; position: relative; overflow: hidden; text-align: center; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,212,170,0.12); border: 1px solid rgba(0,212,170,0.3); border-radius: 50px; padding: 0.4rem 1.2rem; font-size: 0.8rem; font-weight: 600; color: var(--teal); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.page-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 2rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; justify-content: center; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--teal); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 12px; font-size: 0.95rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; font-family: 'Inter', sans-serif; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255,255,255,0.1); transition: 0.4s; }
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--gradient-teal); color: var(--navy); box-shadow: var(--shadow-teal); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,212,170,0.45); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
.btn-gold { background: linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%); color: var(--navy); box-shadow: 0 8px 32px rgba(255,184,0,0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(255,184,0,0.45); }
.btn-dark { background: var(--navy-mid); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-3px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* LAYOUT */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.section-bg { background: var(--off-white); }
.section-dark { background: var(--gradient-hero); color: var(--white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; }
.section-dark .section-title { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); border: 1px solid rgba(0,0,0,0.06); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-body { padding: 2rem; }
.card-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.25rem; }
.icon-teal { background: rgba(0,212,170,0.12); color: var(--teal); }
.icon-gold { background: rgba(255,184,0,0.12); color: var(--gold-dark); }
.icon-navy { background: rgba(30,58,95,0.1); color: var(--navy-mid); }
.card-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.card-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.feature-card { padding: 2.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-light); transition: var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; bottom: 0; left: 0; height: 4px; width: 0; background: var(--gradient-teal); transition: width 0.4s ease; }
.feature-card:hover::before { width: 100%; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,212,170,0.2); }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* IMAGE SECTION */
.img-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.img-section.reverse { direction: rtl; }
.img-section.reverse > * { direction: ltr; }
.img-section img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.img-wrap { position: relative; }
.img-wrap::before { content: ''; position: absolute; inset: -3px; border-radius: calc(var(--radius-lg) + 3px); background: linear-gradient(135deg,rgba(0,212,170,0.4),transparent 50%,rgba(255,184,0,0.2)); z-index: -1; }
.img-badge { position: absolute; bottom: -1.5rem; left: 2rem; background: var(--white); border-radius: 14px; padding: 1rem 1.5rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.75rem; }
.img-badge-icon { width: 44px; height: 44px; background: var(--gradient-teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.img-badge-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--navy); }
.img-badge-text span { font-size: 0.75rem; color: var(--text-light); }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 40px; left: 10%; width: 80%; height: 2px; background: linear-gradient(to right,var(--teal),var(--gold)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 80px; height: 80px; background: var(--white); border: 3px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: var(--teal); margin: 0 auto 1.5rem; box-shadow: var(--shadow-teal); }
.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step-text { font-size: 0.875rem; color: var(--text-light); }

/* TESTIMONIALS */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.975rem; color: var(--text-light); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-teal); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* PRICING */
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 2px solid var(--gray-light); transition: var(--transition); position: relative; }
.pricing-card.featured { border-color: var(--teal); transform: scale(1.04); box-shadow: var(--shadow-lg); }
.pricing-card.featured::before { content: 'MÁS POPULAR'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-teal); color: var(--navy); font-size: 0.7rem; font-weight: 800; padding: 0.3rem 1rem; border-radius: 50px; letter-spacing: 1px; }
.pricing-plan { font-size: 0.85rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.pricing-desc { font-size: 0.875rem; color: var(--text-light); margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; color: var(--text); }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--gray); text-decoration: line-through; }
.pricing-features li.disabled::before { content: '✗'; color: var(--gray); }

/* FAQ */
.faq-item { border: 1px solid var(--gray-light); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(0,212,170,0.3); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Inter', sans-serif; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--teal); font-weight: 300; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

/* FORMS */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.875rem 1.25rem; border: 2px solid var(--gray-light); border-radius: 12px; font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,212,170,0.1); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* TAGS */
.tag { display: inline-block; padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-teal { background: rgba(0,212,170,0.12); color: var(--teal); }
.tag-gold { background: rgba(255,184,0,0.12); color: var(--gold-dark); }
.tag-navy { background: rgba(10,22,40,0.08); color: var(--navy); }

/* FOOTER */
footer { background: var(--navy); color: var(--white); padding: 5rem 0 0; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right,var(--teal),var(--gold),var(--teal)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin: 1.25rem 0; max-width: 320px; }
.footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.social-btn:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); transform: translateY(-3px); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-col ul li a:hover { color: var(--teal); padding-left: 6px; }
.footer-newsletter { margin-top: 1.5rem; }
.footer-newsletter h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }
.footer-newsletter p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.75rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07); color: var(--white); font-size: 0.875rem; outline: none; font-family: 'Inter', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-form button { padding: 0.75rem 1.25rem; background: var(--gradient-teal); border: none; border-radius: 10px; color: var(--navy); font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; }
.newsletter-form button:hover { transform: scale(1.05); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.75rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* CTA SECTION */
.cta-section { background: var(--gradient-teal); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 120%; height: 200%; background: radial-gradient(ellipse at center,rgba(255,255,255,0.12) 0%,transparent 60%); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(10,22,40,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; position: relative; }
.cta-section .btn-dark { background: var(--navy); }

/* COUNTER */
.counter-section { background: var(--gradient-hero); padding: 5rem 0; position: relative; overflow: hidden; }
.counter-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(0,212,170,0.1) 0%,transparent 60%); }
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; position: relative; }
.counter-item { padding: 2rem; }
.counter-num { font-size: 3rem; font-weight: 900; color: var(--teal); line-height: 1; display: block; font-family: 'Playfair Display', serif; }
.counter-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-weight: 500; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-icon { width: 52px; height: 52px; background: rgba(0,212,170,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; color: var(--teal); }
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* BLOG CARDS */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.8rem; color: var(--gray); }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; text-decoration: none; display: block; }
.blog-card-title:hover { color: var(--teal); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--teal); font-weight: 600; font-size: 0.875rem; text-decoration: none; margin-top: 1.25rem; transition: var(--transition); }
.blog-read-more:hover { gap: 0.75rem; }

/* TABLE */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
thead { background: var(--gradient-hero); color: var(--white); }
th { padding: 1rem 1.5rem; text-align: left; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
td { padding: 1rem 1.5rem; font-size: 0.925rem; color: var(--text); border-bottom: 1px solid var(--gray-light); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--off-white); }

/* PROGRESS */
.progress-bar { background: var(--gray-light); border-radius: 50px; height: 8px; overflow: hidden; margin-top: 0.5rem; }
.progress-fill { height: 100%; background: var(--gradient-teal); border-radius: 50px; transition: width 1s ease; }

/* TIMELINE */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom,var(--teal),var(--gold)); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.5rem; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 0 0 3px rgba(0,212,170,0.3); z-index: 1; }
.timeline-date { font-size: 0.8rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.timeline-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* TEAM */
.team-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); transition: var(--transition); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--gradient-hero); margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--teal); border: 3px solid rgba(0,212,170,0.3); }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: 0.85rem; color: var(--teal); font-weight: 500; margin: 0.25rem 0 0.75rem; }
.team-bio { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease,transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* UTILITY */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 1rem; }
.fw-bold { font-weight: 700; }
.color-teal { color: var(--teal); }
.color-gold { color: var(--gold); }
.w-100 { width: 100%; }

/* STAT CARD */
.stat-card { background: var(--gradient-hero); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 100%; background: radial-gradient(circle,rgba(0,212,170,0.15),transparent 70%); }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--teal); display: block; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

/* INFO BAR */
.info-bar { background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.2); border-radius: var(--radius); padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.info-bar .icon { font-size: 1.4rem; flex-shrink: 0; }
.info-bar p { font-size: 0.925rem; color: var(--text); }
.info-bar p strong { color: var(--navy); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero-grid, .img-section, .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: 72px; }
  .hero-image-wrap { display: none; }
  .img-section.reverse { direction: ltr; }
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 2rem; gap: 0.5rem; max-height: calc(100vh - 72px); overflow-y: auto; border-top: 1px solid rgba(0,212,170,0.1); }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: 0.75rem 1rem; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .pricing-card.featured { transform: scale(1); }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
