:root {
  --navy: #050d1a;
  --navy-mid: #0b1929;
  --navy-light: #112236;
  --blue: #0e4bef;
  --blue-bright: #1a5cff;
  --red: #e63946;
  --red-dark: #c1121f;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray: #8892a4;
  --gray-light: #d1d9e6;
  --text: #1a2233;
  --text-light: #4a5568;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-blue: 0 8px 32px rgba(14,75,239,0.25);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 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: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { margin-bottom: 1em; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(14,75,239,0.1); color: var(--blue);
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 4px; margin-bottom: 16px;
  border-left: 3px solid var(--red);
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ─── HEADER TOP ─── */
.header-top {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
}
.header-top-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.ht-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--gray-light);
}
.ht-right { display: flex; gap: 20px; }
.ht-phone { color: var(--red) !important; font-weight: 700; }
.ht-item a { color: inherit; transition: color 0.2s; }
.ht-item a:hover { color: white; }

/* ─── MAIN NAV ─── */
.main-nav {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.main-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 1.8rem; }
.logo-text strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--navy); letter-spacing: 0.02em; line-height: 1; }
.logo-text small { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--blue); background: rgba(14,75,239,0.06); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--red);
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--off-white); color: var(--blue); padding-left: 18px; }

.nav-cta {
  background: var(--red); color: white;
  padding: 10px 22px; border-radius: 6px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,57,70,0.4); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 0;
}
.breadcrumb .container { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: 0.85rem; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray); }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  min-height: 90vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(14,75,239,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(230,57,70,0.08) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
  color: var(--red); padding: 8px 16px; border-radius: 50px;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: white; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 .accent { color: var(--red); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: white; line-height: 1; }
.hero-stat .num span { color: var(--red); }
.hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 36px; position: relative;
}
.hero-card-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: white; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-card-title::before { content: ''; width: 4px; height: 24px; background: var(--red); border-radius: 2px; }
.quick-contact { display: flex; flex-direction: column; gap: 12px; }
.quick-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  transition: var(--transition); cursor: pointer; text-decoration: none;
}
.quick-btn-call { background: var(--red); color: white; }
.quick-btn-call:hover { background: var(--red-dark); transform: translateX(4px); }
.quick-btn-wa { background: #25D366; color: white; }
.quick-btn-wa:hover { background: #1da851; transform: translateX(4px); }
.quick-btn-email { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.quick-btn-email:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.hero-trust {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 16px; flex-wrap: wrap;
}
.trust-chip {
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
}
.trust-chip::before { content: '✓'; color: var(--red); font-weight: 700; }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--navy-mid); padding: 30px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; color: white; }
.trust-item .ti-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.trust-item .ti-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── SERVICES ─── */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-bottom-color: var(--red); }
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(14,75,239,0.06) 0%, transparent 70%);
}
.service-icon { font-size: 2.8rem; margin-bottom: 16px; line-height: 1; }
.service-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; }
.service-card .card-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em;
  transition: var(--transition);
}
.service-card .card-link:hover { gap: 12px; color: var(--red); }

/* ─── WHY CHOOSE US ─── */
.why-section { background: var(--navy); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content h2 { color: white; margin-bottom: 16px; }
.why-content .lead { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.04); border-radius: var(--radius);
  padding: 16px; border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(14,75,239,0.3); }
.why-icon { font-size: 1.6rem; flex-shrink: 0; }
.why-text strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 4px; }
.why-text span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.why-visual { position: relative; }
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.why-stat-card:first-child { grid-column: 1 / -1; background: var(--red); border-color: var(--red); }
.why-stat-card .big { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: white; line-height: 1; }
.why-stat-card .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }

/* ─── PROCESS ─── */
.process-section { background: white; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: white;
  background: var(--navy); margin: 0 auto 20px; position: relative;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.process-step:hover .step-num { background: var(--red); transform: scale(1.1); }
.process-step h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-light); }

/* ─── INDUSTRIES ─── */
.industries-section { background: var(--off-white); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card {
  background: white; border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 2px solid transparent;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.industry-card .ind-icon { font-size: 2.4rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.industry-card p { font-size: 0.82rem; color: var(--text-light); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.65); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-stars { color: #ffd700; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.author-info strong { display: block; color: white; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ─── FAQ ─── */
.faq-section { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 20px 24px; text-align: left;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy);
  transition: var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-q .faq-arrow { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.faq-a.open { display: block; }

/* ─── CONTACT SECTION ─── */
.contact-section { background: white; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 16px; }
.contact-info .lead { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
}
.cd-text strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.cd-text span, .cd-text a { font-size: 0.92rem; color: var(--text-light); }
.cd-text a:hover { color: var(--blue); }

/* ─── FORM ─── */
.contact-form {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.contact-form .form-subtitle { font-size: 0.92rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-light);
  border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: white; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,75,239,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 10px; text-align: center; }

/* ─── MAP SECTION ─── */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 400px; border: none; }

/* ─── FLOATING BUTTONS ─── */
.fab-whatsapp, .fab-call {
  position: fixed; bottom: 90px; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition); cursor: pointer;
}
.fab-whatsapp { right: 20px; background: #25D366; color: white; bottom: 90px; }
.fab-whatsapp:hover { background: #1da851; transform: scale(1.1) translateY(-2px); }
.fab-call { right: 20px; background: var(--red); color: white; bottom: 20px; }
.fab-call:hover { background: var(--red-dark); transform: scale(1.1) translateY(-2px); }

/* ─── STICKY MOBILE CTA ─── */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: white; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 8000; padding: 10px 16px;
  gap: 10px;
}
.btn-call-mobile, .btn-wa-mobile {
  flex: 1; padding: 14px; border-radius: 8px; text-align: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: block;
}
.btn-call-mobile { background: var(--red); color: white; }
.btn-wa-mobile { background: #25D366; color: white; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-mid); }
.footer-main { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.4fr; gap: 40px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  padding: 4px 12px; background: rgba(14,75,239,0.15); border: 1px solid rgba(14,75,239,0.3);
  border-radius: 4px; font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 600;
}
.footer-col h3 { font-size: 1rem; color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: white; padding-left: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 1.1rem; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.5; }
.contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.contact-list li a { color: rgba(255,255,255,0.75); }
.contact-list li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom p a { color: rgba(255,255,255,0.6); }
.footer-bottom p a:hover { color: white; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-legal a:hover { color: white; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy); padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(14,75,239,0.12) 0%, transparent 70%);
}
.page-hero-inner { position: relative; max-width: 800px; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.page-hero .hero-badge { margin-bottom: 16px; }

/* ─── CONTENT SECTIONS ─── */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.content-main h2 { color: var(--navy); margin: 32px 0 16px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { color: var(--navy); margin: 24px 0 12px; font-size: 1.4rem; }
.content-main p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.content-main ul { margin: 0 0 20px 0; }
.content-main ul li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.content-main ul li::before { content: '›'; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 1.1rem; }

/* ─── SIDEBAR ─── */
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--navy); border-radius: var(--radius); padding: 28px;
  margin-bottom: 24px; color: white;
}
.sidebar-card h3 { font-size: 1.3rem; color: white; margin-bottom: 16px; }
.sidebar-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.sidebar-cta { width: 100%; margin-bottom: 10px; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links li a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.88rem; padding: 8px 12px;
  border-radius: 6px; transition: var(--transition);
  border-left: 2px solid transparent;
}
.sidebar-links li a:hover { color: white; background: rgba(255,255,255,0.06); border-left-color: var(--red); padding-left: 16px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(14,75,239,0.15) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── AREA PAGE ─── */
.area-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.area-highlight { background: var(--off-white); border-radius: var(--radius); padding: 20px; border-left: 4px solid var(--blue); }
.area-highlight h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.area-highlight p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.mt-40 { margin-top: 40px; }
.bg-dark { background: var(--navy); }
.bg-light { background: var(--off-white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col.footer-brand { grid-column: 1 / -1; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 100px 24px 40px; gap: 4px;
    transform: translateX(-100%); transition: var(--transition); z-index: 900;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { color: white; font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .nav-cta { display: none; }
  .header-top { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .area-highlights { grid-template-columns: 1fr; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); padding: 4px 0 4px 12px; border-radius: 0; display: none; }
  .dropdown.open { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.7) !important; font-size: 0.92rem; padding: 8px 14px; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .fab-whatsapp { bottom: 160px; }
  .fab-call { bottom: 90px; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-banner .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
