/* ============================================
   Iman Services LLP – Razorpay-inspired Light UI
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f8fafc;
  --color-bg-muted: #f4f5f7;
  --color-bg-hero: linear-gradient(180deg, #f0f7ff 0%, #ffffff 55%);
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #fafbfc;

  --color-border: #ebecf0;
  --color-border-strong: #dfe1e6;

  --color-text: #172b4d;
  --color-text-muted: #5e6c84;
  --color-text-subtle: #97a0af;

  --color-primary: #0d94fb;
  --color-primary-hover: #0b7fd9;
  --color-primary-light: #e6f4ff;
  --color-primary-dark: #012652;

  --color-accent: #012652;
  --color-success: #04db7c;

  --gradient-brand: linear-gradient(135deg, #0d94fb 0%, #0b7fd9 100%);
  --gradient-hero-accent: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(13, 148, 251, 0.12), transparent 70%);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(9, 30, 66, 0.04);
  --shadow-sm: 0 2px 8px rgba(9, 30, 66, 0.06);
  --shadow-md: 0 4px 20px rgba(9, 30, 66, 0.08);
  --shadow-lg: 0 12px 40px rgba(9, 30, 66, 0.1);
  --shadow-card: 0 1px 3px rgba(9, 30, 66, 0.06), 0 0 0 1px rgba(9, 30, 66, 0.04);

  --header-height: 72px;
  --container-max: 1180px;
  --section-padding: 88px;

  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-hover);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus { top: 16px; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-xs);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-weight: 700;
}

.logo:hover { color: var(--color-text); }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

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

.nav-menu a {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover {
  color: var(--color-text);
  background: var(--color-bg-muted);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: white !important;
  margin-left: 8px;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(13, 148, 251, 0.25);
}

.nav-cta:hover {
  background: var(--color-primary-hover) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(13, 148, 251, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 148, 251, 0.35);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--color-bg-soft);
  border-color: var(--color-text-subtle);
  color: var(--color-text);
}

.btn-full { width: 100%; }

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  color: white;
}

.btn-whatsapp-outline {
  background: white;
  color: #128c4c;
  border: 1px solid #b8ecce;
}

.btn-whatsapp-outline:hover {
  background: #f0fdf5;
  border-color: #25d366;
  color: #128c4c;
}

.btn-whatsapp svg,
.btn-whatsapp-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.whatsapp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.whatsapp-actions-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 72px) 0 80px;
  background: var(--color-bg-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-accent);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-success);
  border-radius: 50%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badges .hero-badge {
  margin-bottom: 0;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.gradient-text {
  color: var(--color-primary);
  background: none;
  -webkit-text-fill-color: unset;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Trust bar */
.trust-bar {
  padding: 28px 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-header h2,
.why-us-content h2,
.contact-info h2,
.mission-card h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* About */
.about {
  background: var(--color-bg);
}

/* Services */
.services {
  background: var(--color-bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(13, 148, 251, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-wide {
  grid-column: span 2;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  color: var(--color-primary);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.service-card .service-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: -6px 0 14px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Why Us */
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.why-us-content .section-desc {
  margin-top: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-item:hover {
  border-color: rgba(13, 148, 251, 0.25);
  box-shadow: var(--shadow-sm);
}

.why-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

/* Industries */
.industries {
  background: var(--color-bg-soft);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.impact-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.impact-card .service-icon {
  margin: 0 auto 18px;
}

.impact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.industries-showcase {
  text-align: center;
  margin-top: 56px;
}

.industries-subheading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  margin-bottom: 32px;
}

.industries-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.industry-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  color: var(--color-primary);
}

.industry-icon svg {
  width: 26px;
  height: 26px;
}

.industry-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.solutions-visual {
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.solutions-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mission */
.mission-card {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 40px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.mission-card blockquote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 20px 0 28px;
}

.mission-cta-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* Contact */
.contact {
  background: var(--color-bg-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details address {
  font-style: normal;
  line-height: 1.7;
}

.contact-form {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: white;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 46px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 251, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-subtle);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235e6c84' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.85);
}

.footer .logo-text {
  color: white;
}

.footer .logo-mark {
  background: var(--color-primary);
}

.footer .logo-img {
  background: white;
  border-radius: 8px;
  padding: 4px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-col a:hover {
  color: white;
}

.footer-address {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 14px;
}

.footer-gst {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
  flex-shrink: 0;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-badges + .footer-copy {
  margin-top: 20px;
}

/* Page hero (subpages) */
.page-hero {
  padding: calc(var(--header-height) + 56px) 0 56px;
  background: var(--color-bg-hero);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Split image/text sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.split-content .section-tag { margin-bottom: 10px; }

.split-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.split-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.value-card .service-icon {
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Careers */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  flex-wrap: wrap;
}

.job-card:hover {
  border-color: rgba(13, 148, 251, 0.3);
  box-shadow: var(--shadow-md);
}

.job-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.job-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta svg {
  width: 14px;
  height: 14px;
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-bottom: 40px;
  padding: 12px 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin: 40px 0 14px;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 24px 0 10px;
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: none;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

.legal-content a { font-weight: 500; }

/* Founder */
.founder-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.founder-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.founder-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.founder-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--color-border-strong);
}

.founder-bio {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.founder-bio p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* Info card (What We Do) */
.info-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.info-card p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
}

.dot-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 500;
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Connect / Contact grid */
.connect-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}

.connect-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.connect-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.connect-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-subtle);
  margin-bottom: 2px;
}

.connect-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

a.connect-value:hover {
  color: var(--color-primary);
}

/* CTA banner */
.cta-banner {
  background: var(--color-accent);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: white;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }

  .why-us-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat { align-items: center; }
  .hero-image { max-width: 560px; margin: 0 auto; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  :root { --section-padding: 64px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    background: white;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 14px 16px;
    font-size: 16px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .hero-stats { gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .mission-card { padding: 36px 24px; }
  .contact-form { padding: 24px; }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-brand p { max-width: none; }

  .trust-items { gap: 20px 32px; }

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

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .founder-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .founder-title {
    text-align: left;
  }

  .founder-bio {
    text-align: left;
  }

  .info-card {
    padding: 24px;
  }

  .connect-card {
    padding: 24px;
  }

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

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

  .industries-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 480px) {
  .industries-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-whatsapp,
  .btn-whatsapp-outline {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 24px; }
}
