/* =========================================================
   IndovexTech Solutions - Custom Styles
   Brand: Deep Blue #0F4C81, Cyan #00A8E8
   Fonts: Poppins (headings), Inter (body)
   ========================================================= */

:root {
  --deep-blue: #0F4C81;
  --deep-blue-dark: #0A3660;
  --cyan: #00A8E8;
  --cyan-dark: #008BC0;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray: #F1F5F9;
  --border-gray: #E2E8F0;
  --dark-gray: #1E293B;
  --muted-gray: #64748B;
  --obsidian: #0A0F1A;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  line-height: 1.15;
  margin: 0 0 .5rem;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }

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

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

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section {
  padding: 6rem 0;
}
.section-sm { padding: 4rem 0; }

.section-dark {
  background: var(--deep-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.4; pointer-events:none;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn i, .btn svg { transition: transform .25s ease; }
.btn:hover i, .btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--cyan);
  color: var(--white);
}
.btn-primary:hover { background: var(--cyan-dark); }

.btn-dark {
  background: var(--deep-blue);
  color: var(--white);
}
.btn-dark:hover { background: var(--deep-blue-dark); }

.btn-outline {
  background: transparent;
  color: var(--dark-gray);
  border-color: var(--border-gray);
}
.btn-outline:hover { border-color: var(--dark-gray); background: var(--dark-gray); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover { background: var(--white); color: var(--deep-blue); border-color: var(--white); }

/* ---------------- Navigation ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gray);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: var(--dark-gray);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--deep-blue), var(--cyan));
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px -6px rgba(15,76,129,.5);
}
.brand small {
  display:block; font-size:.66rem; color: var(--muted-gray);
  font-weight:500; letter-spacing:.14em; text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep-blue); }
.nav-links a.active::after {
  content:""; position:absolute; left:0; right:0; bottom:-8px;
  height:2px; background: var(--cyan); border-radius:2px;
}
.nav-cta { display: flex; gap: .75rem; align-items: center; }
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--dark-gray);
}

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(15,76,129,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,76,129,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 30%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, black 40%, transparent 75%);
  pointer-events:none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--deep-blue); }
.hero h1 .accent-cyan {
  background: linear-gradient(120deg, var(--cyan), var(--deep-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.05rem;
  color: var(--muted-gray);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-gray);
  padding-top: 1.5rem;
}
.hero-meta div strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  color: var(--deep-blue);
  display: block;
}
.hero-meta div span { font-size: .82rem; color: var(--muted-gray); }

.hero-visual {
  position: relative;
  min-height: 480px;
}
.hero-visual .card-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,76,129,.3);
  border: 1px solid var(--border-gray);
}
.hero-visual .card-img.main {
  top: 0; right: 0; width: 78%; height: 380px;
}
.hero-visual .card-img.sub {
  bottom: 0; left: 0; width: 55%; height: 240px;
}
.hero-visual .card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px -15px rgba(15,76,129,.25);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 3;
}
.hero-floating-card.top {
  top: 40px; left: -30px;
}
.hero-floating-card.bottom {
  bottom: 30px; right: -20px;
}
.hero-floating-card .icon {
  width: 40px; height: 40px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 10px;
  display: grid; place-items: center;
}
.hero-floating-card.bottom .icon { background: var(--cyan); }
.hero-floating-card strong { font-family: 'Poppins'; font-size: .95rem; display:block; }
.hero-floating-card span { font-size: .78rem; color: var(--muted-gray); }

/* ---------------- Section Title ---------------- */
.section-title {
  max-width: 780px;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.section-title p {
  color: var(--muted-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------------- Cards ---------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(15,76,129,.35);
  border-color: var(--cyan);
}
.card .icon-wrap {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(0,168,232,.1);
  color: var(--deep-blue);
  margin-bottom: 1.25rem;
  transition: background .3s;
}
.card:hover .icon-wrap { background: var(--deep-blue); color: var(--white); }
.card h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.card p {
  font-size: .93rem;
  color: var(--muted-gray);
  margin: 0 0 1rem;
  flex-grow: 1;
}
.card ul {
  list-style: none;
  padding: 0; margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--dark-gray);
}
.card ul li {
  padding: .3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .75rem;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 999px;
}
.card .arrow-link {
  color: var(--deep-blue);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
}
.card:hover .arrow-link i { transform: translateX(4px); }
.card .arrow-link i { transition: transform .25s; }

.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------------- Industries ---------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}
.industry-item {
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: background .3s;
  cursor: pointer;
}
.industry-item:hover { background: var(--off-white); }
.industry-item i {
  color: var(--cyan);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.industry-item h4 {
  font-family: 'Poppins'; font-weight: 600; font-size: 1rem;
  color: var(--dark-gray);
  margin: 0 0 .35rem;
}
.industry-item span { font-size: .8rem; color: var(--muted-gray); }

/* ---------------- Tech Stack ---------------- */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.tech-chip {
  padding: .65rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: all .2s;
}
.tech-chip:hover {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
  transform: translateY(-2px);
}

/* ---------------- Stats ---------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  text-align: left;
}
.stat h3 {
  font-family: 'Poppins';
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: .35rem;
  font-weight: 700;
  letter-spacing: -.03em;
}
.stat h3 .plus { color: var(--cyan); }
.stat p { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ---------------- Process ---------------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-step {
  padding: 1.5rem 1.25rem 1.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  background: var(--white);
  position: relative;
  transition: transform .3s, border-color .3s;
}
.process-step:hover { transform: translateY(-4px); border-color: var(--cyan); }
.process-step .step-num {
  font-family: 'Poppins';
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step:hover .step-num { color: var(--cyan); }
.process-step h4 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p { font-size: .85rem; color: var(--muted-gray); margin: 0; }

/* ---------------- Testimonials ---------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: box-shadow .3s;
}
.testimonial-card:hover { box-shadow: 0 20px 50px -25px rgba(15,76,129,.35); }
.testimonial-card .quote-mark {
  position: absolute; top: 1.25rem; right: 1.25rem;
  color: var(--light-gray);
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin: 0 0 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-author .avatar {
  width: 46px; height: 46px; border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-blue), var(--cyan));
  color: var(--white); display: grid; place-items: center;
  font-weight: 700; font-family: 'Poppins';
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .8rem; color: var(--muted-gray); }
.testimonial-stars { color: #FBBF24; font-size: .85rem; margin-bottom: .5rem; }

/* ---------------- Blog ---------------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(15,76,129,.35);
  border-color: var(--cyan);
}
.blog-card .thumb {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}
.blog-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card .tag {
  font-size: .72rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: .65rem; line-height: 1.3; }
.blog-card p { font-size: .9rem; color: var(--muted-gray); margin: 0 0 1.25rem; flex-grow: 1; }
.blog-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--muted-gray);
  padding-top: 1rem; border-top: 1px solid var(--border-gray);
}

/* ---------------- FAQ ---------------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--border-gray);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-gray);
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--deep-blue); }
.faq-question .toggle-icon {
  min-width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--light-gray);
  display: grid; place-items: center;
  transition: transform .3s, background .3s, color .3s;
  color: var(--deep-blue);
}
.faq-item.open .toggle-icon { transform: rotate(45deg); background: var(--cyan); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--muted-gray);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 1rem; }

/* ---------------- Why Choose ---------------- */
.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
}
.reason {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.reason .check {
  min-width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--deep-blue);
  color: var(--white);
  display: grid; place-items: center;
  font-size: .8rem;
}
.reason strong { display: block; font-family: 'Poppins'; font-size: 1rem; margin-bottom: .25rem; }
.reason span { font-size: .85rem; color: var(--muted-gray); }

/* ---------------- CTA Band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--deep-blue) 0%, #124F86 50%, var(--deep-blue-dark) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,168,232,.35), transparent 70%);
}
.cta-band h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.7; margin: 0; }
.cta-band .actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }

/* ---------------- Footer ---------------- */
.footer {
  background: var(--obsidian);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h5 {
  color: var(--white);
  font-family: 'Poppins';
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.footer p, .footer a, .footer li { font-size: .88rem; color: rgba(255,255,255,.65); }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--cyan); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: .3rem 0; }
.footer .brand-block .brand { color: var(--white); margin-bottom: 1rem; }
.footer .brand-block .brand small { color: rgba(255,255,255,.5); }
.footer .newsletter {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1rem;
}
.footer .newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Inter';
  font-size: .88rem;
}
.footer .newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer .newsletter button {
  background: var(--cyan);
  color: var(--white);
  border: none;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: .82rem;
  transition: background .2s;
}
.footer .newsletter button:hover { background: var(--cyan-dark); }

.socials {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  transition: all .25s;
}
.socials a:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 2.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  font-family: 'Inter';
  font-size: .92rem;
  color: var(--dark-gray);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 1.75rem;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.info-card .addr {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.info-card .addr:last-child { border-bottom: none; }
.info-card .addr i {
  min-width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,168,232,.1);
  color: var(--deep-blue);
  display: grid; place-items: center;
}
.info-card .addr strong { display: block; font-family: 'Poppins'; margin-bottom: .3rem; font-size: .95rem; }
.info-card .addr span { font-size: .85rem; color: var(--muted-gray); line-height: 1.6; }

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gray);
  margin-top: 1.5rem;
  height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ---------------- WhatsApp Floating ---------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  z-index: 50;
  transition: transform .25s;
  font-size: 1.5rem;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid #25D366;
  animation: ripple 1.8s infinite;
  opacity: 0;
}
@keyframes ripple {
  0% { transform: scale(.85); opacity: .7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------------- Page Header ---------------- */
.page-header {
  background: linear-gradient(120deg, var(--deep-blue), var(--deep-blue-dark));
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.5;
}
.page-header::after {
  content: "";
  position: absolute;
  right: -100px; bottom: -100px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,168,232,.35), transparent 70%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.page-header .breadcrumb a { color: var(--cyan); }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; letter-spacing: -.03em; color: var(--white); }
.page-header p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 680px; line-height: 1.7; }

/* ---------------- Animations ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: 0s; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.visible > *:nth-child(6) { transition-delay: .4s; }
.stagger.visible > *:nth-child(7) { transition-delay: .48s; }
.stagger.visible > *:nth-child(8) { transition-delay: .56s; }
.stagger.visible > *:nth-child(9) { transition-delay: .64s; }
.stagger.visible > *:nth-child(10) { transition-delay: .72s; }
.stagger.visible > *:nth-child(11) { transition-delay: .8s; }
.stagger.visible > *:nth-child(12) { transition-delay: .88s; }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark-gray);
  color: var(--white);
  padding: .95rem 1.5rem;
  border-radius: 999px;
  font-size: .9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 200;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast i { color: var(--cyan); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; text-align: left; }
  .cta-band .actions { justify-content: flex-start; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .reason-list { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 20px 40px -20px rgba(15,76,129,.15);
  }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-track { grid-template-columns: 1fr; }
  .reason-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-visual .card-img.main { width: 100%; height: 300px; position: relative; }
  .hero-visual .card-img.sub { display: none; }
  .hero-floating-card { display: none; }
  .cta-band { padding: 2.5rem 1.75rem; }
}
