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

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0;
  --slate-300: #cbd5e1; --slate-400: #94a3b8; --slate-500: #64748b;
  --slate-600: #475569; --slate-700: #334155; --slate-800: #1e293b;
  --slate-900: #0f172a; --slate-950: #020617;
  --blue-300: #93c5fd; --blue-400: #60a5fa; --blue-500: #3b82f6;
  --blue-600: #2563eb; --blue-700: #1d4ed8;
  --green-500: #22c55e; --green-600: #16a34a;
  --purple-500: #a855f7; --purple-600: #9333ea;
  --orange-500: #f97316; --orange-600: #ea580c;
  --red-500: #ef4444; --red-600: #dc2626;
  --pink-500: #ec4899; --pink-600: #db2777;
  --teal-500: #14b8a6; --teal-600: #0d9488;
  --cyan-400: #22d3ee;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--slate-950);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.1);
  padding: .5rem 0; transition: padding .3s;
}
.header.scrolled { padding: .25rem 0; }
.header nav { display: flex; align-items: center; justify-content: space-between; }
.header .logo img { height: 3rem; width: auto; }
@media (min-width: 768px) { .header .logo img { height: 3.5rem; } }

.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  position: relative; font-size: .875rem; font-weight: 500;
  color: var(--slate-900); transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--blue-500); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-500); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; background: var(--blue-600);
  color: #fff; font-weight: 600; border-radius: .5rem;
  transition: all .3s; border: none; cursor: pointer; font-size: .875rem;
}
.btn-primary:hover { background: var(--blue-500); transform: scale(1.05); box-shadow: 0 0 30px rgba(59,130,246,.3); }

.btn-outline {
  display: inline-flex; align-items: center; padding: .75rem 1.5rem;
  background: rgba(30,41,59,.5); color: #fff; font-weight: 500;
  border-radius: .5rem; border: 1px solid var(--slate-700); transition: all .3s;
}
.btn-outline:hover { background: rgba(51,65,85,.5); border-color: rgba(59,130,246,.5); }

.header .btn-cta { display: none; }
@media (min-width: 768px) { .header .btn-cta { display: inline-flex; } }

/* Mobile Menu */
.mobile-toggle { display: flex; padding: .5rem; background: none; border: none; color: var(--slate-900); cursor: pointer; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none; background: #fff; border-bottom: 1px solid var(--slate-200);
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: 1.125rem; font-weight: 500; color: var(--slate-900); }
.mobile-menu a:hover { color: var(--blue-500); }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--slate-950); padding-top: 4rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,6,23,.6), rgba(2,6,23,.4), rgba(2,6,23,.9));
}
.hero-grid {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(59,130,246,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 56rem; margin: 0 auto; }
.hero h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; color: #fff; }
.hero .highlight { background: linear-gradient(to right, var(--blue-400), var(--blue-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.125rem; max-width: 42rem; margin: 0 auto 2.5rem; color: rgba(255,255,255,.85); }
.hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 8rem;
  background: linear-gradient(to top, var(--slate-950), transparent); pointer-events: none;
}

/* ============ SERVICES SECTION ============ */
.services-section {
  position: relative; min-height: 70vh; display: flex; flex-direction: column;
  justify-content: center; padding: 6rem 0 4rem; background: var(--slate-950); overflow: hidden;
}
.services-section .bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,6,23,.7), rgba(15,23,42,.8), rgba(2,6,23,.95));
}
.services-section .bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2;
}
.section-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 10; }
.section-header h2 { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-header h2 { font-size: 3rem; } }
.section-header p { max-width: 42rem; margin: 0 auto; font-size: 1.125rem; color: rgba(255,255,255,.85); }

/* Service Cards Grid */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.services-grid-bottom {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 64rem; margin: 1.5rem auto 0; position: relative; z-index: 10;
}
@media (min-width: 768px) { .services-grid-bottom { grid-template-columns: repeat(3, 1fr); } }

/* Service Card */
.service-card {
  display: block; position: relative; overflow: hidden; border-radius: .75rem;
  background: rgba(15,23,42,.9); backdrop-filter: blur(12px);
  border: 1px solid var(--slate-800); padding: 1.5rem;
  transition: all .5s; height: 100%;
}
.service-card:hover {
  border-color: rgba(59,130,246,.5);
  box-shadow: 0 25px 50px rgba(59,130,246,.1);
  transform: translateY(-4px);
}
.service-card .top-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-500), transparent);
  opacity: 0; transition: opacity .5s;
}
.service-card:hover .top-glow { opacity: 1; }
.service-card .icon-box {
  width: 3rem; height: 3rem; border-radius: .5rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(59,130,246,.2);
  transition: box-shadow .3s;
}
.service-card:hover .icon-box { box-shadow: 0 4px 25px rgba(59,130,246,.4); }
.service-card .icon-box svg { width: 1.375rem; height: 1.375rem; color: #fff; }
.service-card h3 {
  font-size: 1.125rem; font-weight: 600; color: var(--slate-100);
  margin-bottom: .5rem; transition: color .3s;
}
.service-card:hover h3 { color: var(--blue-400); }
.service-card p { font-size: .875rem; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; line-height: 1.6; }
.service-card .card-link {
  display: flex; align-items: center; gap: .5rem; font-size: .875rem;
  font-weight: 500; color: var(--blue-400); transition: color .3s;
}
.service-card:hover .card-link { color: var(--blue-300); }
.service-card .arrow-circle {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--slate-800); display: flex; align-items: center;
  justify-content: center; transition: all .3s;
}
.service-card:hover .arrow-circle { background: var(--blue-600); }
.service-card .arrow-circle svg { width: .875rem; height: .875rem; color: var(--slate-400); transition: color .3s; }
.service-card:hover .arrow-circle svg { color: #fff; }

/* ============ FOOTER ============ */
.footer {
  padding: .75rem 0; background: var(--slate-900);
  border-top: 1px solid rgba(30,41,59,.5); text-align: center;
}
.footer img { height: 4rem; width: auto; margin: 0 auto .5rem; }
@media (min-width: 768px) { .footer img { height: 5rem; } }
.footer .motivational {
  font-size: .75rem; color: var(--blue-400); font-weight: 500;
  font-style: italic; max-width: 42rem; margin: 0 auto .5rem;
}
.footer .rights { font-size: .75rem; color: var(--slate-400); margin-bottom: .25rem; }
.footer .developed-by {
  display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .25rem;
}
.footer .developed-by span { font-size: .75rem; color: var(--slate-500); }
.footer .developed-by img { height: 2rem; width: auto; margin: 0; border-radius: 2px; }

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--green-500); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(34,197,94,.3); transition: all .3s;
}
.whatsapp-btn:hover { background: var(--green-600); transform: scale(1.1); box-shadow: 0 4px 25px rgba(34,197,94,.5); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; color: #fff; }

/* ============ BACK BUTTON ============ */
.back-btn {
  position: fixed; top: 5rem; left: 1rem; z-index: 40;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; background: rgba(30,41,59,.8); backdrop-filter: blur(8px);
  border: 1px solid var(--slate-700); border-radius: .5rem;
  color: var(--slate-300); font-size: .875rem; font-weight: 500;
  cursor: pointer; transition: all .3s;
}
.back-btn:hover { background: rgba(51,65,85,.8); color: #fff; border-color: rgba(59,130,246,.5); }

/* ============ HUB PAGE ============ */
.hub-section { position: relative; min-height: 100vh; padding: 5rem 0; background: var(--slate-950); overflow: hidden; }
.hub-circle {
  width: 8rem; height: 8rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  margin: 0 auto 3rem; box-shadow: 0 25px 50px rgba(59,130,246,.3);
  border: 4px solid rgba(96,165,250,.3);
}
@media (min-width: 768px) { .hub-circle { width: 10rem; height: 10rem; } }
.hub-circle .hub-name { color: #fff; font-weight: 700; font-size: 1rem; }
@media (min-width: 768px) { .hub-circle .hub-name { font-size: 1.25rem; } }
.hub-circle .hub-sub { color: var(--blue-200); font-size: .75rem; }
@media (min-width: 768px) { .hub-circle .hub-sub { font-size: .875rem; } }
.hub-card {
  display: block; position: relative; padding: 1.5rem; border-radius: 1rem;
  background: rgba(30,41,59,.5); backdrop-filter: blur(8px);
  border: 1px solid rgba(51,65,85,.5); transition: all .3s; height: 100%; min-height: 180px;
}
.hub-card:hover { border-color: rgba(59,130,246,.5); box-shadow: 0 20px 40px rgba(59,130,246,.1); }
.hub-card .dot {
  position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--blue-500);
  box-shadow: 0 0 10px rgba(59,130,246,.5);
}
.hub-card .hub-icon {
  width: 3rem; height: 3rem; border-radius: .75rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(59,130,246,.2); transition: transform .3s;
}
.hub-card:hover .hub-icon { transform: scale(1.1); }
.hub-card .hub-icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.hub-card h3 { font-weight: 600; color: #fff; margin-bottom: .5rem; transition: color .3s; }
.hub-card:hover h3 { color: var(--blue-300); }
.hub-card p { font-size: .875rem; color: var(--slate-200); line-height: 1.6; }

/* ============ NOSSA HISTORIA ============ */
.timeline-section { padding: 5rem 0; }
.timeline-line {
  display: none; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, rgba(59,130,246,.5), rgba(59,130,246,.3), transparent);
}
@media (min-width: 768px) { .timeline-line { display: block; } }
.timeline-item {
  display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .timeline-item { flex-direction: row; } }
@media (min-width: 768px) { .timeline-item.reverse { flex-direction: row-reverse; } }
.timeline-content { flex: 1; }
.timeline-card {
  padding: 1.5rem; border-radius: 1rem; background: rgba(30,41,59,.5);
  border: 1px solid rgba(51,65,85,.5); backdrop-filter: blur(8px); max-width: 28rem;
}
@media (min-width: 768px) {
  .timeline-item .timeline-content { text-align: right; }
  .timeline-item .timeline-card { margin-left: auto; }
  .timeline-item.reverse .timeline-content { text-align: left; }
  .timeline-item.reverse .timeline-card { margin-left: 0; margin-right: auto; }
}
.timeline-card .year { color: var(--blue-400); font-weight: 700; font-size: 1.125rem; }
.timeline-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin: .5rem 0 .75rem; }
.timeline-card p { color: var(--slate-300); }
.timeline-icon {
  position: relative; z-index: 10;
  width: 3.5rem; height: 3.5rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(59,130,246,.3); border: 4px solid var(--slate-900);
}
.timeline-icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.timeline-spacer { flex: 1; display: none; }
@media (min-width: 768px) { .timeline-spacer { display: block; } }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  padding: 1.5rem; border-radius: 1rem; background: rgba(30,41,59,.5);
  border: 1px solid rgba(51,65,85,.5); text-align: center; transition: border-color .3s;
}
.value-card:hover { border-color: rgba(59,130,246,.5); }
.value-card .value-icon {
  width: 3.5rem; height: 3.5rem; border-radius: .75rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 4px 15px rgba(59,130,246,.2);
}
.value-card .value-icon svg { width: 1.75rem; height: 1.75rem; color: #fff; }
.value-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.value-card p { color: var(--slate-300); }

/* Mission Grid */
.mission-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .mission-grid { grid-template-columns: repeat(2, 1fr); } }
.mission-grid h2 { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .mission-grid h2 { font-size: 2.25rem; } }
.mission-grid p { color: var(--slate-300); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* CTA Box */
.cta-box {
  max-width: 42rem; margin: 0 auto; padding: 2.5rem;
  border-radius: 1.5rem; background: rgba(30,41,59,.5);
  border: 1px solid rgba(51,65,85,.5); backdrop-filter: blur(8px); text-align: center;
}
.cta-box h2, .cta-box h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-box p { color: var(--slate-300); margin-bottom: 1.5rem; }
.cta-box .contact-info { margin-top: 1.5rem; }
.cta-box .contact-info p { font-weight: 600; color: var(--slate-300); margin-bottom: .5rem; }
.cta-box .contact-info a { color: var(--blue-400); font-size: .875rem; transition: color .3s; }
.cta-box .contact-info a:hover { color: var(--blue-300); }

/* ============ CONTATO PAGE ============ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-form {
  max-width: 32rem; margin: 0 auto; padding: 2rem;
  border-radius: 1rem; background: rgba(30,41,59,.5);
  border: 1px solid rgba(51,65,85,.5); backdrop-filter: blur(8px);
}
.contact-form .form-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.contact-form .form-icon {
  width: 2.5rem; height: 2.5rem; border-radius: .75rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
}
.contact-form .form-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.contact-form h3 { font-size: 1.25rem; font-weight: 600; color: #fff; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label { display: block; font-size: .875rem; font-weight: 500; color: var(--slate-300); margin-bottom: .25rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .75rem 1rem; border-radius: .75rem;
  background: rgba(15,23,42,.5); border: 1px solid var(--slate-600);
  color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif;
  transition: border-color .3s; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--slate-500); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-500); }
.contact-form textarea { resize: none; }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form option { background: var(--slate-900); }
.btn-submit {
  width: 100%; margin-top: 1.5rem; padding: 1rem; border-radius: .75rem;
  background: linear-gradient(to right, var(--green-500), var(--green-600));
  color: #fff; font-weight: 600; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: 1rem; transition: all .3s;
  box-shadow: 0 4px 15px rgba(34,197,94,.25);
}
.btn-submit:hover { box-shadow: 0 4px 25px rgba(34,197,94,.4); }
.contact-form .form-note { font-size: .875rem; color: var(--slate-400); text-align: center; margin-top: 1rem; }

/* Contact Info */
.contact-info-card {
  padding: 2rem; border-radius: 1rem; background: rgba(30,41,59,.5);
  border: 1px solid rgba(51,65,85,.5); backdrop-filter: blur(8px);
}
.contact-info-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  border-radius: .75rem; background: rgba(15,23,42,.5); margin-bottom: 1rem; transition: background .3s;
}
.contact-item:hover { background: var(--slate-900); }
.contact-item .ci-icon {
  width: 3rem; height: 3rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item .ci-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.contact-item .ci-icon.green { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.contact-item .ci-icon.blue { background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); }
.contact-item .ci-icon.purple { background: linear-gradient(135deg, var(--purple-500), var(--purple-600)); }
.contact-item .ci-icon.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.contact-item .ci-label { font-size: .75rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: .05em; }
.contact-item .ci-value { color: #fff; font-weight: 600; }
.contact-item .ci-value.sm { font-size: .875rem; }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  width: 100%; padding: 1.25rem; border-radius: 1rem;
  background: linear-gradient(to right, var(--green-500), var(--green-600));
  color: #fff; font-weight: 600; font-size: 1.125rem; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(34,197,94,.25); transition: all .3s; margin-top: 1.5rem;
}
.btn-whatsapp:hover { box-shadow: 0 4px 30px rgba(34,197,94,.4); }
.btn-whatsapp svg { width: 1.5rem; height: 1.5rem; }

/* ============ SERVICE DETAIL PAGE ============ */
.service-hero {
  padding: 8rem 0 6rem; position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.service-hero .blobs { position: absolute; inset: 0; pointer-events: none; }
.service-hero .blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .2;
}
.service-hero .grid-pattern {
  position: absolute; inset: 0; opacity: .1;
  background: linear-gradient(rgba(59,130,246,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,.3) 1px, transparent 1px);
  background-size: 50px 50px;
}
.service-hero-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .service-hero-grid { grid-template-columns: repeat(2, 1fr); } }
.service-hero .icon-box {
  width: 5rem; height: 5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 2rem;
}
.service-hero .icon-box svg { width: 2.25rem; height: 2.25rem; color: #fff; }
.service-hero h1 { font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .service-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .service-hero h1 { font-size: 3.75rem; } }
.service-hero .subtitle { font-size: 1.25rem; font-weight: 500; margin-bottom: 2rem; }
.service-hero .desc { font-size: 1.125rem; color: var(--slate-300); line-height: 1.7; }
.service-hero .hero-img {
  display: none; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 0 60px rgba(59,130,246,.3);
}
@media (min-width: 1024px) { .service-hero .hero-img { display: block; } }
.service-hero .hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Offer & Benefits */
.offer-section { padding: 6rem 0; background: var(--slate-900); position: relative; overflow: hidden; }
.offer-section .divider-top {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-500), transparent);
}
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
.offer-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem; }
.offer-header .oh-icon {
  width: 3rem; height: 3rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.offer-header .oh-icon svg { color: #fff; width: 1.5rem; height: 1.5rem; }
.offer-header h2 { font-size: 1.5rem; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .offer-header h2 { font-size: 1.875rem; } }
.offer-list { list-style: none; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
  border-radius: .75rem; background: rgba(30,41,59,.5);
  border: 1px solid rgba(51,65,85,.5); margin-bottom: 1rem; transition: border-color .3s;
}
.offer-list li:hover { border-color: rgba(59,130,246,.5); }
.offer-list li svg { width: 1.375rem; height: 1.375rem; color: var(--blue-400); flex-shrink: 0; margin-top: .125rem; }
.offer-list li span { color: var(--slate-300); transition: color .3s; }
.offer-list li:hover span { color: #fff; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.benefit-card {
  background: rgba(30,41,59,.8); border: 1px solid rgba(51,65,85,.5);
  border-radius: .75rem; padding: 1.25rem; transition: all .3s;
}
.benefit-card:hover { border-color: rgba(59,130,246,.5); transform: translateY(-4px) scale(1.03); }
.benefit-card span { font-size: .875rem; color: var(--slate-200); font-weight: 500; }

/* Differentials */
.diff-section { padding: 6rem 0; background: var(--slate-950); position: relative; overflow: hidden; }
.diff-section .divider-top {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--purple-500), transparent);
}
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
.diff-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  background: rgba(15,23,42,.8); border: 1px solid rgba(51,65,85,.5);
  border-radius: .75rem; transition: all .3s;
}
.diff-card:hover { border-color: rgba(59,130,246,.5); transform: scale(1.03) translateY(-4px); }
.diff-card .num-box {
  width: 3rem; height: 3rem; border-radius: .75rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem; color: #fff;
}
.diff-card p { color: var(--slate-300); transition: color .3s; }
.diff-card:hover p { color: #fff; }

/* Service CTA */
.service-cta { padding: 6rem 0; background: var(--slate-900); position: relative; overflow: hidden; }
.service-cta .divider-top {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan-400), transparent);
}
.service-cta-box {
  max-width: 48rem; margin: 0 auto; padding: 2.5rem;
  background: rgba(30,41,59,.8); backdrop-filter: blur(16px);
  border: 1px solid rgba(51,65,85,.5); border-radius: 1.5rem; text-align: center;
}
@media (min-width: 768px) { .service-cta-box { padding: 4rem; } }

/* Page hero for internal pages */
.page-hero {
  position: relative; padding: 4rem 0; overflow: hidden;
}
.page-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.page-hero .bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(2,6,23,.7), rgba(15,23,42,.8), var(--slate-950)); }

/* Badge */
.badge {
  display: inline-block; padding: .5rem 1rem; font-size: .875rem; font-weight: 500;
  color: var(--blue-400); background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2); border-radius: 9999px; margin-bottom: 1rem;
}

/* Gradient backgrounds */
.grad-blue { background: linear-gradient(135deg, var(--blue-500), var(--cyan-400)); }
.grad-green { background: linear-gradient(135deg, var(--green-500), #34d399); }
.grad-purple { background: linear-gradient(135deg, var(--purple-500), #a78bfa); }
.grad-orange { background: linear-gradient(135deg, var(--orange-500), #fbbf24); }
.grad-pink { background: linear-gradient(135deg, var(--pink-500), #fb7185); }
.grad-teal { background: linear-gradient(135deg, var(--teal-500), var(--cyan-400)); }
.grad-red { background: linear-gradient(135deg, var(--red-500), var(--orange-500)); }

/* Gradient text */
.text-grad-blue { background: linear-gradient(to right, var(--blue-400), var(--blue-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-green { background: linear-gradient(to right, var(--green-500), #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-purple { background: linear-gradient(to right, var(--purple-500), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-orange { background: linear-gradient(to right, var(--orange-500), #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-pink { background: linear-gradient(to right, var(--pink-500), #fb7185); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-teal { background: linear-gradient(to right, var(--teal-500), var(--cyan-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-red { background: linear-gradient(to right, var(--red-500), var(--orange-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Section bg helpers */
.bg-slate-900-half { background: rgba(15,23,42,.5); }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-16 { padding-top: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .6s ease-out both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }
.delay-7 { animation-delay: .7s; }
