:root {
  --primary: #7dbe2a;
  --primary-dark: #6aa824;
  --secondary: #0b1e39;
  --secondary-light: #132b4f;
  --background: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 30, 57, 0.12);
}

* {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.slim {
  width: min(820px, calc(100% - 32px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(11, 30, 57, 0.1);
  backdrop-filter: blur(12px);
}

.brand img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled .nav-links a,
.site-header.open .nav-links a {
  color: #475569;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary) !important;
  background: rgba(125, 190, 42, 0.12);
}

.nav-links .quote-link {
  margin-left: 8px;
  color: white !important;
  background: var(--primary);
  padding-inline: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-links .quote-link:hover {
  color: white !important;
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(125, 190, 42, 0.25);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  transition: transform 0.2s ease;
}

.site-header.scrolled .menu-toggle span,
.site-header.open .menu-toggle span {
  background: var(--secondary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.about-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11, 30, 57, 0.78), rgba(11, 30, 57, 0.45)), url("assets/Home-CvQRGtJx.jpeg");
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 120px 0 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(125, 190, 42, 0.16);
  font-weight: 800;
  font-size: 14px;
}

.lucide-icon {
  width: 1em;
  height: 1em;
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  color: white;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero-lead {
  color: #dbe5f0;
  font-size: clamp(19px, 2.4vw, 25px);
  max-width: 660px;
}

.hero-lead strong {
  color: var(--primary);
}

.hero-text {
  color: #c2cad8;
  max-width: 650px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-card > span:first-child {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  color: var(--primary);
  font-size: 24px;
}

.stat-card strong,
.stat-card span {
  color: white;
  font-size: 31px;
  line-height: 1;
}

.stat-card > span:first-child {
  color: var(--primary);
  font-size: 24px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0 0;
  font-size: 12px;
}

.lead-form,
.contact-form {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.lead-form h2,
.contact-form h3 {
  color: var(--secondary);
  margin-bottom: 4px;
}

.lead-form p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

form {
  display: grid;
  gap: 13px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: white;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(125, 190, 42, 0.16);
}

.error {
  border-color: #ef4444 !important;
}

.field-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: -7px;
}

button,
.quote-link,
.lead-form button,
.contact-form button {
  cursor: pointer;
}

.lead-form button,
.contact-form button,
.blog-actions button {
  border: 0;
  border-radius: 12px;
  padding: 13px 22px;
  color: white;
  background: var(--primary);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lead-form button:hover,
.contact-form button:hover,
.blog-actions button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(125, 190, 42, 0.28);
}

.lead-form small {
  color: #64748b;
  text-align: center;
}

.feature-strip {
  background: white;
  box-shadow: 0 12px 30px rgba(11, 30, 57, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 18px;
  color: var(--secondary);
  font-weight: 800;
  border-left: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.feature-grid div:first-child {
  border-left: 0;
}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(125, 190, 42, 0.12);
  color: var(--primary);
  font-size: 20px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.feature-grid div:hover {
  background: #f8fafc;
  color: var(--primary);
}

.feature-grid div:hover span {
  transform: scale(1.08);
  background: var(--primary);
  color: white;
}

.section {
  padding: 90px 0;
}

.white {
  background: white;
}

.dark {
  background: var(--secondary);
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section .about-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)), url("assets/About-BBwqz1iU.jpeg");
}

.two-column {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.experience-box {
  position: absolute;
  right: -18px;
  bottom: -18px;
  background: var(--primary);
  color: white;
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
}

.experience-box strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.experience-box span {
  font-size: 13px;
}

.section-heading {
  text-align: center;
  margin: 0 auto 42px;
  max-width: 720px;
}

.section-heading h2,
.section-copy h2 {
  color: var(--secondary);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.section-heading p:last-child,
.section-copy p {
  color: var(--muted);
}

.light h2,
.light p {
  color: white;
}

.light p:not(.badge) {
  color: rgba(255, 255, 255, 0.78);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0;
}

.mini-stats span {
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
}

.mini-stats small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  color: white;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.card-grid,
.industry-grid,
.process-grid,
.deliverable-grid,
.client-grid,
.blog-grid {
  display: grid;
  gap: 24px;
}

.services-grid,
.reasons-grid,
.case-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.case-card,
.blog-card {
  height: 100%;
  padding: 28px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.case-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(11, 30, 57, 0.16);
}

.icon-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(125, 190, 42, 0.12);
  color: var(--primary);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 18px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icon-mark .lucide-icon {
  width: 28px;
  height: 28px;
}

.card:hover .icon-mark {
  transform: scale(1.1);
  background: var(--primary);
  color: white;
}

.card h3,
.case-card h3,
.blog-card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.card:hover h3,
.case-card:hover h3,
.blog-card:hover h3 {
  color: var(--primary);
}

.card p,
.case-card p,
.blog-card p {
  color: var(--muted);
  font-size: 14px;
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-card {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--secondary);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.45s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11, 30, 57, 0.18);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.25s ease;
}

.industry-card:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.industry-card div {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
  color: white;
}

.industry-card h3 {
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.industry-card:hover h3 {
  color: var(--primary);
}

.industry-card p {
  margin: 0;
  font-size: 13px;
}

.process-grid {
  grid-template-columns: repeat(6, 1fr);
}

.process-card {
  text-align: center;
  transition: transform 0.2s ease;
}

.process-card .step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border: 4px solid var(--primary);
  border-radius: 999px;
  background: white;
  color: var(--primary);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-3px);
}

.process-card:hover .step-icon {
  transform: scale(1.05);
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 30px rgba(125, 190, 42, 0.25);
}

.process-card .step-icon .lucide-icon {
  width: 28px;
  height: 28px;
}

.process-card small {
  display: block;
  color: var(--primary);
  font-weight: 900;
}

.process-card h3 {
  color: var(--secondary);
  font-size: 15px;
  margin: 8px 0;
}

.process-card p {
  color: var(--muted);
  font-size: 12px;
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.dark .card:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.dark .card h3 {
  color: white;
}

.dark .card p {
  color: rgba(255, 255, 255, 0.66);
}

.deliverable-grid {
  grid-template-columns: repeat(5, 1fr);
}

.client-grid {
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.client-card {
  height: 96px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 24px rgba(11, 30, 57, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 58%;
  max-height: 62%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}

.client-card:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 42px rgba(11, 30, 57, 0.16);
}

.client-card:hover img {
  transform: scale(1.02);
}

.client-card[data-client="mahindra"] img,
.client-card[data-client="godrej"] img,
.client-card[data-client="reliance"] img {
  max-width: 68%;
  max-height: 68%;
}

.client-card[data-client="tata"] img {
  max-width: 42%;
  max-height: 66%;
}

.client-card[data-client="l-t"] img {
  max-width: 42%;
  max-height: 66%;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-width: 0;
  overflow: hidden;
}

.testimonial-track.slide-left {
  animation: testimonialSlideLeft 0.5s ease both;
}

.testimonial-track.slide-right {
  animation: testimonialSlideRight 0.5s ease both;
}

@keyframes testimonialSlideLeft {
  from {
    opacity: 0.35;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes testimonialSlideRight {
  from {
    opacity: 0.35;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(11, 30, 57, 0.14);
}

.quote-icon {
  display: block;
  color: rgba(125, 190, 42, 0.22);
  font-size: 34px;
  margin-bottom: 14px;
}

.testimonial-card .stars {
  color: #facc15;
  display: flex;
  gap: 2px;
}

.testimonial-card .stars .lucide-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  margin-right: 10px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover {
  transform: scale(1.05);
  background: var(--primary-dark);
  box-shadow: 0 14px 28px rgba(125, 190, 42, 0.25);
}

.case-section {
  background: rgba(11, 30, 57, 0.04);
}

.case-card {
  display: grid;
  gap: 10px;
}

.case-card strong {
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.case-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.case-result {
  color: var(--primary) !important;
  font-weight: 700;
}

.read-link {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--primary);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.read-link:hover {
  color: var(--primary-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(125, 190, 42, 0.35);
  box-shadow: 0 12px 28px rgba(11, 30, 57, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--secondary);
  text-align: left;
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover {
  background: #f8fafc;
  color: var(--primary);
}

.faq-question span {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding-bottom 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 520px;
  opacity: 1;
}

.blog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tools button {
  padding: 10px 14px;
  color: #475569;
  background: white;
  border: 1px solid var(--border);
}

.category-filters button:hover {
  color: var(--primary);
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.blog-tools button.active {
  color: white;
  background: var(--primary);
}

.blog-tools button.active:hover {
  color: white;
  background: var(--primary-dark);
}

.blog-actions button {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
}

.blog-actions button:hover {
  color: white;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.blog-tools input {
  max-width: 280px;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-actions input[type="password"] {
  max-width: 150px;
}

[data-admin-access] {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

[data-admin-access]::before {
  display: none;
}

[data-admin-access]::after {
  display: none;
}

[data-admin-access] .lucide-icon {
  width: 18px;
  height: 18px;
  margin: auto;
}

.blog-form-panel {
  margin-bottom: 28px;
}

.blog-form {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.blog-form h3 {
  color: var(--secondary);
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-card div {
  padding: 20px;
}

.blog-card small {
  color: var(--primary);
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
}

.empty-state p:first-child {
  color: var(--muted);
  font-size: 18px;
}

.empty-state p:last-child {
  color: #94a3b8;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-cards article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 1px 3px rgba(11, 30, 57, 0.08);
  transition: box-shadow 0.2s ease;
}

.contact-cards article:hover {
  box-shadow: 0 6px 14px rgba(11, 30, 57, 0.12);
}

.contact-cards a,
.footer a,
.footer p {
  overflow-wrap: anywhere;
}

.contact-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 10px;
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9), transparent 24px),
    linear-gradient(135deg, rgba(125, 190, 42, 0.2), rgba(125, 190, 42, 0.08));
  font-size: 24px;
  line-height: 1;
}

.contact-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(125, 190, 42, 0.1);
}

.contact-icon .lucide-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.75));
}

.contact-cards strong,
.contact-cards span {
  display: block;
}

.contact-cards strong {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-cards a,
.contact-cards p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
}

.contact-cards span {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.45;
}

.contact-form {
  padding: 32px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 28px rgba(11, 30, 57, 0.12);
}

.contact-form h3 {
  margin-bottom: 24px;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}

.contact-form label {
  gap: 4px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border-color: #e5e7eb;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  width: fit-content;
  padding: 14px 32px;
  font-weight: 600;
}

.contact-form button .lucide-icon {
  width: 20px;
  height: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer {
  padding-top: 64px;
  color: white;
  background: var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer img {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
}

.footer p,
.footer a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a .lucide-icon,
.footer p .lucide-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.footer-grid > div:first-child > p {
  display: block;
}

.footer a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: white;
  background: var(--primary);
  transform: translateY(-2px);
}

.footer h3 {
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom button {
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  color: white;
  background: rgba(125, 190, 42, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-bottom button:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.policy-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.policy-links button {
  padding: 0;
  color: #64748b;
  background: transparent;
  font-size: 12px;
}

.policy-links span {
  color: #475569;
  font-size: 12px;
}

.float-btn {
  position: fixed;
  bottom: 22px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  padding: 0;
  color: white;
  font-weight: 850;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(11, 30, 57, 0.2);
}

.float-btn .lucide-icon {
  width: 25px;
  height: 25px;
}

.float-btn.whatsapp {
  right: 22px;
  background: #25d366;
}

.float-btn.call {
  left: 22px;
  background: #2589ff;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 86px;
  z-index: 120;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--secondary);
  color: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 14px 18px 22px;
    background: white;
    box-shadow: 0 20px 35px rgba(11, 30, 57, 0.12);
  }

  .site-header.open .nav-links {
    display: flex;
  }

  .nav-links a,
  .site-header .nav-links a {
    color: #475569;
  }

  .nav-links .quote-link {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero-content,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid div:nth-child(odd) {
    border-left: 0;
  }

  .feature-grid div:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .stats-grid,
  .industry-grid,
  .process-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .reasons-grid,
  .case-grid,
  .blog-grid,
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .client-card {
    height: 144px;
    padding: 20px;
  }
}

@media (max-width: 1199px) and (min-width: 1025px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .client-card {
    height: 144px;
    padding: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .industry-grid,
  .process-grid,
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
  .slim {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .hero-content {
    padding-top: 112px;
  }

  .services-grid,
  .reasons-grid,
  .case-grid,
  .blog-grid,
  .testimonial-track,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .feature-grid,
  .industry-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .client-card {
    height: 112px;
    padding: 14px;
  }

  .contact-form {
    padding: 24px;
  }

  .feature-grid div {
    border-top: 1px solid var(--border);
  }

  .feature-grid div:nth-child(odd) {
    border-left: 0;
  }

  .feature-grid div:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .blog-tools,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-actions input[type="password"],
  .blog-tools input {
    max-width: none;
  }

  .blog-tools input {
    max-width: none;
  }

  .image-stack img {
    height: 320px;
  }

  .experience-box {
    right: 10px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .client-card {
    height: 96px;
    padding: 10px;
  }

  .feature-grid div {
    padding: 18px 12px;
    gap: 10px;
    font-size: 13px;
  }

  .stat-card {
    padding: 14px 10px;
  }
}
