*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #EC202F;
  --red-dark:  #C91826;
  --blue:      #245098;
  --blue-light:#EEF3FB;
  --graphite:  #1F2933;
  --gray-mid:  #667085;
  --gray-light:#F4F6F8;
  --gray-line: #D9DEE7;
  --white:     #FFFFFF;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--graphite); background: var(--white); line-height: 1.6; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: 15px; padding: 14px 28px;
  border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue); font-family: var(--font-head);
  font-weight: 700; font-size: 15px; padding: 13px 27px;
  border-radius: 8px; border: 1.5px solid var(--blue); cursor: pointer;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-1px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue); font-family: var(--font-head);
  font-weight: 700; font-size: 15px; padding: 14px 28px;
  border-radius: 8px; border: none; cursor: pointer;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-1px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: 15px; padding: 13px 27px;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,.5); cursor: pointer;
  text-decoration: none; transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-1px); }

.section-label {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head); font-weight: 700; color: var(--blue);
  font-size: clamp(28px, 4vw, 38px); line-height: 1.2; margin-bottom: 16px;
}
.section-sub { color: var(--gray-mid); font-size: 17px; max-width: 560px; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); box-shadow: 0 4px 20px rgba(31,41,51,.08);
  height: 80px; display: flex; align-items: center;
}
header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-img { height: 100px; width: auto; display: block; object-fit: contain; }

nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--graphite); text-decoration: none; position: relative;
  transition: color .2s;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width .2s;
}
nav a:hover { color: var(--blue); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

/* ── MOBILE MENU ── */
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: var(--graphite); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay a {
  font-family: var(--font-head); font-weight: 700; font-size: 22px;
  color: #fff; text-decoration: none; transition: color .2s;
}
.mobile-menu-overlay a:hover { color: var(--red); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer; color: #fff; font-size: 32px; line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 600px; display: flex; align-items: center;
  padding: 80px 0;
  background-color: var(--graphite);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(31,41,51,.92) 0%, rgba(36,80,152,.75) 100%);
}
.hero-diagonal {
  position: absolute; right: -40px; top: 0; bottom: 0; width: 55%;
  background: var(--blue); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .85; z-index: 1;
}
.hero-diagonal-red {
  position: absolute; right: -40px; top: 0; bottom: 0; width: 52%;
  background: var(--red); clip-path: polygon(12% 0, 100% 0, 100% 100%, 4% 100%);
  opacity: .18; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(4px);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px;
  border-radius: 100px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.2);
}
.hero-badge span { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: block; }
.hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px); color: #fff; line-height: 1.1;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.65; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2; margin-top: 56px;
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero-stat { color: #fff; }
.hero-stat strong { font-family: var(--font-head); font-weight: 800; font-size: 32px; display: block; line-height: 1; }
.hero-stat strong span { color: var(--red); }
.hero-stat small { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 4px; display: block; }

/* ── FEATURES STRIP ── */
.features-strip { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--gray-line); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  width: 52px; height: 52px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--graphite); margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--gray-mid); }

/* ── SERVICES ── */
.services { padding: 88px 0; background: var(--gray-light); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-line);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(31,41,51,.06);
  transition: transform .2s, box-shadow .2s; text-decoration: none; display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(31,41,51,.1); }
.service-card-img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.service-card-body { padding: 24px 24px 28px; }
.service-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--graphite); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

/* ── ABOUT ── */
.about { padding: 88px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 440px; background: var(--gray-light);
}
.about-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.about-badge-tl {
  position: absolute; top: 24px; left: 24px;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 10px 18px; border-radius: 10px;
}
.about-badge-br {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(255,255,255,.95); color: var(--blue);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 10px 18px; border-radius: 10px; display: flex; align-items: center; gap: 8px;
}
.about-badge-br span { color: var(--red); font-size: 20px; font-weight: 800; }
.diag-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-highlight {
  background: var(--gray-light); border-radius: 12px; padding: 18px 20px;
  border-left: 3px solid var(--blue);
}
.about-highlight h4 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--blue); margin-bottom: 4px; }
.about-highlight p { font-size: 13px; color: var(--gray-mid); }
.about-desc { color: var(--gray-mid); font-size: 16px; margin-bottom: 8px; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 88px 0; position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--blue);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36,80,152,.88) 0%, rgba(31,41,51,.80) 100%);
  z-index: 0;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 18px; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 18px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── DIFFERENTIALS ── */
.differentials { padding: 88px 0; background: var(--gray-light); }
.diff-header { text-align: center; margin-bottom: 56px; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.diff-card {
  background: var(--white); border-radius: 16px; padding: 36px 32px;
  border: 1px solid var(--gray-line);
  box-shadow: 0 4px 20px rgba(31,41,51,.05);
  position: relative; overflow: hidden;
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
}
.diff-num {
  font-family: var(--font-head); font-weight: 800; font-size: 48px;
  color: var(--gray-line); line-height: 1; margin-bottom: 16px;
}
.diff-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--blue); margin-bottom: 10px; }
.diff-card p { font-size: 15px; color: var(--gray-mid); line-height: 1.65; }

/* ── CONTACT ── */
.contact { padding: 88px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 32px; margin-bottom: 12px; }
.contact-info p { color: var(--gray-mid); font-size: 17px; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-body strong { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--graphite); display: block; }
.contact-item-body span { font-size: 14px; color: var(--gray-mid); }
.contact-form { background: var(--gray-light); border-radius: 20px; padding: 40px; }
.contact-form h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--graphite); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--graphite); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--gray-line); border-radius: 8px;
  padding: 13px 16px; font-size: 15px; font-family: var(--font-body);
  color: var(--graphite); background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,80,152,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check-group { flex-direction: row !important; align-items: center; gap: 10px !important; margin-bottom: 16px; }
.form-check-label { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--gray-mid); cursor: pointer; }
.form-check-label input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; accent-color: var(--red); cursor: pointer; }
.form-check-label a { color: var(--blue); text-decoration: underline; }
.form-check-label a:hover { color: var(--red); }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

/* ── FOOTER ── */
footer { background: var(--blue); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; display: flex; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; text-decoration: none;
}
.social-link:hover { background: rgba(255,255,255,.22); }
.social-link svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,.85); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-social-circles { display: flex; gap: 14px; flex-wrap: wrap; }
.social-circle {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; text-decoration: none;
}
.social-circle:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.social-circle svg { width: 20px; height: 20px; color: rgba(255,255,255,.9); }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(255,255,255,.45); font-size: 13px; }
.footer-bottom-red { color: var(--red) !important; font-weight: 600; }

/* ── SERVICE DETAIL PAGE ── */
.service-detail { padding: 64px 0 88px; background: var(--white); }
.service-detail-header { margin-bottom: 48px; }
.service-detail-header .breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 14px; color: var(--gray-mid); }
.service-detail-header .breadcrumb a { color: var(--blue); text-decoration: none; }
.service-detail-header .breadcrumb a:hover { text-decoration: underline; }
.service-detail-header h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 42px); color: var(--blue); margin-bottom: 16px; }
.service-detail-img { border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.service-detail-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.service-detail-body { font-size: 17px; color: var(--gray-mid); line-height: 1.8; }
.service-detail-body p { margin-bottom: 16px; }
.service-cta { background: var(--gray-light); border-radius: 20px; padding: 40px; text-align: center; margin-top: 48px; }
.service-cta h2 { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--graphite); margin-bottom: 24px; }
.service-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--blue); padding: 64px 0; text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 18px; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn-primary { display: none; }
  .hero-diagonal, .hero-diagonal-red { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; }
  .diff-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .service-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
