/* ===========================================
   SR World Solutions â€” Premium UI Layer
   Global consulting-grade cards, forms & CTAs
   Loaded after style.css + internal-pages.css
   Brand: logo primary #1a5f7a
   =========================================== */

:root {
  --srw-brand: #1a5f7a;
  --srw-brand-dark: #134b61;
  --srw-brand-light: #2980b9;
  --srw-brand-deep: #0d3446;
  --srw-brand-glow: rgba(26, 95, 122, 0.14);
  --srw-surface: #ffffff;
  --srw-ink: #0f172a;
  --srw-muted: #5f6f86;
  --srw-line: rgba(26, 95, 122, 0.12);
  --srw-radius: 12px;
  --srw-radius-lg: 16px;
  --srw-shadow: 0 20px 50px rgba(15, 31, 52, 0.10);
  --srw-shadow-lg: 0 28px 80px rgba(18, 38, 63, 0.14);
  --srw-gradient-hero: linear-gradient(135deg, #f8fbff 0%, #eef6fa 52%, #ffffff 100%);
  --srw-gradient-cta: linear-gradient(135deg, #0d3446 0%, #1a5f7a 55%, #2980b9 100%);
  --srw-gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 254, 0.96) 100%);
}

/* â”€â”€â”€ Lead capture card (split panel) â”€â”€â”€ */
.seo-lead-section {
  padding: clamp(48px, 7vw, 88px) 0;
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.seo-lead-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(380px, 1.12fr);
  align-items: stretch;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 95, 122, 0.16);
  border-radius: var(--srw-radius-lg);
  background: var(--srw-surface);
  box-shadow: var(--srw-shadow-lg);
}

.seo-lead-card-head {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 36px) clamp(24px, 3vw, 36px);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(13, 52, 70, 0.97), rgba(19, 75, 97, 0.98)),
    linear-gradient(135deg, var(--srw-brand-deep), var(--srw-brand));
  overflow: hidden;
}

.seo-lead-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: clamp(150px, 24vw, 220px);
  margin: 0 0 0.5rem;
  padding-top: 0.25rem;
}

.seo-lead-illustration {
  width: 100%;
  max-width: min(100%, 300px);
  height: auto;
  display: block;
}

.seo-lead-card-head-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.seo-lead-card-head::before {
  display: none;
  content: none;
}

.seo-lead-card-head::after {
  display: none;
  content: none;
}

.seo-lead-badge {
  width: max-content;
  margin: 1rem 0 0;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.seo-lead-section .seo-lead-card h2,
.seo-lead-section .seo-lead-card h3,
.seo-lead-card-head h2,
.seo-lead-card-head h3 {
  position: relative;
  max-width: 400px;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.seo-lead-card-head .seo-lead-intro,
.seo-lead-intro {
  position: relative;
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.seo-lead-messages {
  grid-column: 2;
  grid-row: 1;
  margin: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 40px) 0;
}

.seo-lead-messages-hidden:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.seo-lead-form {
  grid-column: 2;
  grid-row: 2;
  padding: clamp(24px, 4vw, 40px);
}

.seo-lead-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  align-items: start;
}

.seo-lead-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.seo-lead-field-span,
.seo-lead-actions {
  grid-column: 1 / -1;
}

.seo-lead-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--srw-ink);
  line-height: 1.3;
}

.seo-lead-req {
  color: #dc2626;
  font-weight: 700;
}

.seo-lead-optional {
  font-weight: 500;
  color: var(--srw-muted);
  font-size: 0.8125rem;
}

.seo-lead-field input:not([type="hidden"]),
.seo-lead-field textarea,
.seo-lead-form select {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(30, 48, 76, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--srw-ink);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.seo-lead-field textarea {
  min-height: 120px;
  resize: vertical;
  max-height: 280px;
}

.seo-lead-field input::placeholder,
.seo-lead-field textarea::placeholder {
  color: #94a3b8;
}

.seo-lead-field input:hover,
.seo-lead-field textarea:hover,
.seo-lead-form select:hover {
  border-color: rgba(26, 95, 122, 0.3);
}

.seo-lead-field input:focus,
.seo-lead-field textarea:focus,
.seo-lead-form select:focus {
  outline: none;
  border-color: var(--srw-brand);
  box-shadow: 0 0 0 4px var(--srw-brand-glow);
  background: #ffffff;
}

.seo-lead-field-error {
  display: block;
  min-height: 1.1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b91c1c;
}

.seo-lead-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.seo-lead-submit {
  min-height: 50px;
  min-width: 11rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--srw-brand), var(--srw-brand-light));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(26, 95, 122, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seo-lead-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(26, 95, 122, 0.34);
}

.seo-lead-msg-success {
  padding: 12px 16px;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 0.9375rem;
}

.seo-lead-msg-error {
  padding: 12px 16px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  font-size: 0.9375rem;
}

/* â”€â”€â”€ Contact page form â”€â”€â”€ */
.contact-main {
  padding: clamp(48px, 7vw, 80px) 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-form-section {
  position: sticky;
  top: 96px;
}

.contact-form-card {
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius-lg);
  background: var(--srw-gradient-card);
  box-shadow: var(--srw-shadow);
  padding: clamp(24px, 3vw, 36px);
}

.contact-form-card h2 {
  margin-bottom: 0.5rem;
  color: var(--srw-brand-deep);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.contact-form-card > p {
  margin-bottom: 1.5rem;
  color: var(--srw-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--srw-ink);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(30, 48, 76, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: var(--srw-ink);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--srw-brand);
  box-shadow: 0 0 0 4px var(--srw-brand-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.field-hint {
  font-size: 0.75rem;
  color: var(--srw-muted);
}

.field-error {
  font-size: 0.8125rem;
  color: #b91c1c;
  font-weight: 500;
}

.required {
  color: #dc2626;
}

.contact-form .btn-primary,
.contact-form button[type="submit"] {
  min-height: 50px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--srw-brand), var(--srw-brand-light));
  box-shadow: 0 10px 28px rgba(26, 95, 122, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(26, 95, 122, 0.34);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--srw-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.contact-method {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--srw-brand-glow);
  color: var(--srw-brand);
  box-shadow: inset 0 0 0 1px rgba(26, 95, 122, 0.1);
}

.contact-service-areas {
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius);
  background: linear-gradient(180deg, #f8fbfd, #ffffff);
  padding: 1.25rem;
}

/* â”€â”€â”€ Premium cards (all pages) â”€â”€â”€ */
.service-card,
.additional-service-card,
.value-card,
.faq-item,
.home-featured-card,
.home-example-card,
.srw-loc-card,
.city-lp-mini-card,
.city-hub-product-card,
.product-package-card,
.product-feature-card,
.product-audience-card,
.product-benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius);
  background: var(--srw-gradient-card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 14px 40px rgba(15, 31, 52, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card::before,
.additional-service-card::before,
.home-featured-card::before,
.srw-loc-card::before,
.faq-item::before,
.city-hub-product-card::before,
.product-package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--srw-brand), var(--srw-brand-light));
  opacity: 0.85;
}

.service-card:hover,
.additional-service-card:hover,
.value-card:hover,
.home-featured-card:hover,
.home-example-card:hover,
.srw-loc-card:hover,
.city-lp-mini-card:hover,
.city-hub-product-card:hover,
.product-package-card:hover,
.product-feature-card:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 95, 122, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 22px 52px rgba(15, 31, 52, 0.12);
}

.service-card,
.additional-service-card,
.faq-item {
  padding: clamp(20px, 2.5vw, 28px);
}

.service-card h3,
.additional-service-card h3,
.faq-item h3 {
  color: var(--srw-ink);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.25;
}

.service-card p,
.additional-service-card p,
.faq-item p {
  color: var(--srw-muted);
  line-height: 1.65;
}

.service-link,
.learn-more-link {
  color: var(--srw-brand);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.service-link:hover,
.learn-more-link:hover {
  color: var(--srw-brand-light);
}

/* â”€â”€â”€ CTA sections â”€â”€â”€ */
.cta-section,
.seo-city-banner-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--srw-gradient-cta);
  color: #ffffff;
}

.cta-section::before,
.seo-city-banner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(41, 128, 185, 0.2), transparent 35%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2,
.seo-city-banner-cta h2 {
  color: #ffffff;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.cta-section p,
.seo-city-banner-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cta-buttons,
.seo-city-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: var(--srw-brand-deep);
  font-weight: 700;
  border-radius: 999px;
  min-height: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.cta-section .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  border-radius: 999px;
  min-height: 48px;
  font-weight: 700;
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

/* â”€â”€â”€ Page hero polish â”€â”€â”€ */
.page-hero {
  background: var(--srw-gradient-hero);
  border-bottom: 1px solid var(--srw-line);
  padding: clamp(44px, 7vw, 80px) 0 clamp(36px, 5vw, 64px);
}

.page-hero h1 {
  color: var(--srw-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.page-hero-description {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--srw-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--srw-muted);
}

.breadcrumb a {
  color: var(--srw-brand);
  font-weight: 650;
  text-decoration: none;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 95, 122, 0.18);
  background: rgba(26, 95, 122, 0.08);
  color: var(--srw-brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* â”€â”€â”€ Homepage premium â”€â”€â”€ */
.home-page .hero-home {
  background: var(--srw-gradient-hero);
}

.home-final-cta {
  padding: clamp(48px, 7vw, 80px) 0;
  background: linear-gradient(180deg, #f4f8fb 0%, #eef6fa 100%);
}

.home-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.home-final-copy h2 {
  font-family: var(--font-display);
  color: var(--srw-brand-deep);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.12;
}

.home-featured-card {
  padding: clamp(20px, 2.5vw, 28px);
  border-top: 3px solid var(--srw-brand);
}

.home-featured-card h3 {
  color: var(--srw-ink);
}

.home-example-card {
  padding: 1.25rem;
  border-radius: var(--srw-radius);
}

.home-trust-strip {
  border-color: var(--srw-line);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.home-page .btn-primary {
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--srw-brand), var(--srw-brand-light));
  box-shadow: 0 8px 22px rgba(26, 95, 122, 0.22);
}

.home-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(26, 95, 122, 0.28);
}

.home-page .btn-outline {
  border-radius: 999px;
  font-weight: 700;
  border-width: 2px;
}

/* Location cards on homepage */
.srw-loc-card {
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
}

.srw-loc-card h3 {
  color: var(--srw-brand-deep);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.srw-loc-card p {
  color: var(--srw-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* â”€â”€â”€ Buttons global polish â”€â”€â”€ */
.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--srw-brand), var(--srw-brand-light));
  box-shadow: 0 8px 22px rgba(26, 95, 122, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--srw-brand-dark), var(--srw-brand));
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(26, 95, 122, 0.28);
}

.btn-outline {
  border-width: 2px;
  border-color: var(--srw-brand);
  color: var(--srw-brand);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--srw-brand);
  color: #ffffff;
}

.btn-whatsapp {
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.25);
}

/* â”€â”€â”€ Services grid â”€â”€â”€ */
.services-grid,
.additional-services-grid,
.values-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.services-overview,
.additional-services,
.about-intro,
.mission-vision,
.leadership,
.our-values,
.service-areas-section {
  padding: clamp(48px, 7vw, 80px) 0;
}

.service-detail-alt,
.additional-services,
.contact-faq {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    position: static;
  }

  .home-final-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .seo-lead-card {
    grid-template-columns: 1fr;
  }

  .seo-lead-card-head {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding-bottom: 1.5rem;
  }

  .seo-lead-card-visual {
    min-height: 160px;
    max-height: 220px;
  }

  .seo-lead-illustration {
    max-width: 260px;
  }

  .seo-lead-messages,
  .seo-lead-form {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .form-row,
  .seo-lead-fields {
    grid-template-columns: 1fr;
  }

  .seo-lead-actions {
    justify-content: stretch;
  }

  .seo-lead-submit,
  .contact-form .btn-primary {
    width: 100%;
  }

  .cta-buttons,
  .seo-city-banner-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-buttons .btn,
  .seo-city-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* â”€â”€â”€ Header premium â”€â”€â”€ */
.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
  box-shadow: 0 4px 24px rgba(15, 31, 52, 0.06);
}

.nav-link.active,
.nav-link:hover {
  color: var(--srw-brand);
}

.nav-link.active::after {
  background: var(--srw-brand);
}

/* About page cards */
.leader-card,
.mv-card,
.value-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius);
  background: var(--srw-gradient-card);
  box-shadow: var(--srw-shadow);
}

.leader-card h3,
.mv-card h3 {
  color: var(--srw-brand-deep);
  font-family: var(--font-display);
}

.about-intro-stats .stat-item {
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius);
  background: #ffffff;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 31, 52, 0.06);
}

.about-intro-stats .stat-number {
  color: var(--srw-brand);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

/* â”€â”€â”€ SEO location & product pages â”€â”€â”€ */
.city-lp-hero,
.seo-body-geo-lp .city-lp-hero,
.seo-body-city-hub .city-lp-hero,
.seo-body-product-service .city-lp-hero {
  background: var(--srw-gradient-hero);
  border-bottom: 1px solid var(--srw-line);
  padding: clamp(44px, 7vw, 88px) 0 clamp(36px, 5vw, 72px);
}

.city-lp-hero h1 {
  color: var(--srw-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.city-lp-hero-sub {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--srw-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.city-lp-hero-kicker,
.city-lp-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 95, 122, 0.18);
  background: rgba(26, 95, 122, 0.08);
  color: var(--srw-brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.city-lp-band,
.city-lp-band-alt {
  padding: clamp(48px, 7vw, 80px) 0;
}

.city-lp-band-alt {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.city-lp-section-head h2 {
  color: var(--srw-ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.12;
}

.city-lp-section-sub {
  color: var(--srw-muted);
  line-height: 1.7;
}

.city-lp-mini-card,
.city-lp-demo-card,
.city-lp-tech-card,
.city-lp-step,
.city-lp-ben-card {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius);
  background: var(--srw-gradient-card);
  box-shadow: 0 14px 40px rgba(15, 31, 52, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.city-lp-mini-card:hover,
.city-lp-demo-card:hover,
.city-lp-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 31, 52, 0.11);
}

.city-lp-card-grid,
.city-lp-demo-grid,
.city-lp-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.seo-intl-card {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid var(--srw-line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--srw-brand);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.seo-intl-card:hover {
  background: rgba(26, 95, 122, 0.06);
  border-color: rgba(26, 95, 122, 0.22);
}

.product-package-card,
.product-feature-card--rich,
.product-case-card,
.product-related-card {
  padding: clamp(20px, 2.5vw, 28px);
}

/* Audience card icons â€” real SVGs per category */
.product-audience-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 24px);
  min-height: 88px;
}

.product-audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.12), rgba(41, 128, 185, 0.1));
  box-shadow: inset 0 0 0 1px rgba(26, 95, 122, 0.14);
}

.product-audience-icon::before,
.product-audience-icon::after {
  display: none !important;
  content: none !important;
}

.product-audience-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--srw-brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-audience-icon--health svg {
  stroke: #1a7a6e;
}

.product-audience-icon--education svg {
  stroke: #1d5f8a;
}

.product-audience-icon--startup svg {
  stroke: #b45309;
  fill: rgba(180, 83, 9, 0.12);
  stroke-width: 1.75;
}

.product-audience-icon--ngo svg {
  stroke: #c0392b;
  fill: rgba(192, 57, 43, 0.08);
}

.product-audience-card h3 {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 650;
  line-height: 1.4;
  color: var(--srw-ink);
}

.product-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

@media (max-width: 900px) {
  .product-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .product-audience-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature & benefit card icons */
.product-feature-card--rich {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  min-height: 180px;
}

.product-feature-card--rich h3 {
  margin: 0;
  color: var(--srw-ink);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.3;
}

.product-feature-card--rich p {
  margin: 0;
  color: var(--srw-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.product-feature-card:not(.product-feature-card--rich) {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.15rem;
}

.product-feature-icon,
.product-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.12), rgba(41, 128, 185, 0.1));
  box-shadow: inset 0 0 0 1px rgba(26, 95, 122, 0.14);
}

.product-feature-icon::before,
.product-feature-icon::after,
.product-benefit-icon::before,
.product-benefit-icon::after {
  display: none !important;
  content: none !important;
}

.product-feature-icon svg,
.product-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--srw-brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-feature-icon--whatsapp svg {
  fill: rgba(26, 95, 122, 0.1);
  stroke-width: 1.75;
}

.product-benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 24px);
  min-height: 88px;
}

.product-benefit-card > span:last-child {
  color: var(--srw-ink);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 650;
  line-height: 1.45;
}

.product-feature-grid--rich {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

@media (max-width: 1024px) {
  .product-feature-grid--rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-feature-grid--rich,
  .product-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing package cards */
.product-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

.product-package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius-lg);
  background: var(--srw-gradient-card);
  box-shadow: 0 14px 40px rgba(15, 31, 52, 0.08);
}

.product-package-card--featured {
  border-color: rgba(26, 95, 122, 0.28);
  box-shadow: 0 18px 48px rgba(26, 95, 122, 0.14);
}

.product-package-card h3 {
  margin: 0 0 0.5rem;
  color: var(--srw-ink);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.25;
}

.product-package-price {
  margin: 0 0 0.35rem;
  color: var(--srw-brand);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.product-package-sub {
  margin: 0 0 1rem;
  color: var(--srw-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-package-list {
  display: grid;
  gap: 10px;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.product-package-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 95, 122, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.product-package-list-item::before {
  display: none !important;
  content: none !important;
}

body:not(.home-page) .product-package-list .product-package-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-color: rgba(26, 95, 122, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

body:not(.home-page) .product-package-list .product-package-list-item::before {
  display: none !important;
  content: none !important;
}

.product-package-list-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
}

.product-package-list-icon svg {
  width: 18px;
  height: 18px;
}

.product-package-list-item > span {
  color: var(--srw-ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-package-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 0.25rem;
}

.product-package-cta,
.product-package-wa {
  min-height: 48px;
  justify-content: center;
  font-weight: 700;
}

.product-package-wa {
  border-width: 2px;
}

@media (max-width: 1024px) {
  .product-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-package-grid {
    grid-template-columns: 1fr;
  }
}

.product-hero-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 95, 122, 0.1);
  color: var(--srw-brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.city-lp-bc,
.city-lp-bc a {
  font-size: 0.9rem;
}

.city-lp-bc a {
  color: var(--srw-brand);
  font-weight: 650;
  text-decoration: none;
}

.city-hub-product-card {
  padding: clamp(20px, 2.5vw, 28px);
}

.city-hub-office-card {
  padding: 1.25rem;
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius);
  background: var(--srw-gradient-card);
}

/* Footer polish */
.footer {
  background: linear-gradient(180deg, #0d3446 0%, #0f172a 100%);
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer h4 {
  color: #ffffff;
}

.footer a:hover {
  color: #7dd3fc;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Homepage lead form â€” single-card layout
   Split panel is too wide for the side column;
   use stacked header + full-width fields instead.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.home-final-form-wrap {
  min-width: 0;
  width: 100%;
}

.seo-lead-card--home,
.home-final-form-wrap .seo-lead-card {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  max-width: 100%;
  width: 100%;
  overflow: visible;
  padding: 0;
}

.seo-lead-card--home .seo-lead-card-head,
.home-final-form-wrap .seo-lead-card-head {
  grid-column: unset;
  grid-row: unset;
  flex: 0 0 auto;
  min-height: 0;
  justify-content: flex-start;
  padding: 1.35rem 1.5rem 1.15rem;
  border-radius: var(--srw-radius-lg) var(--srw-radius-lg) 0 0;
}

.seo-lead-card--home .seo-lead-card-head::before,
.seo-lead-card--home .seo-lead-card-head::after,
.home-final-form-wrap .seo-lead-card-head::before,
.home-final-form-wrap .seo-lead-card-head::after {
  display: none;
}

.seo-lead-card--home .seo-lead-card-visual,
.home-final-form-wrap .seo-lead-card-visual {
  display: none;
}

.seo-lead-card--home .seo-lead-badge,
.home-final-form-wrap .seo-lead-badge {
  display: none;
}

.seo-lead-card--home .seo-lead-card-head h3,
.home-final-form-wrap .seo-lead-card-head h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.4rem;
  max-width: none;
  color: #ffffff;
}

.seo-lead-card--home .seo-lead-card-head .seo-lead-intro,
.home-final-form-wrap .seo-lead-card-head .seo-lead-intro {
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.seo-lead-card--home .seo-lead-messages,
.home-final-form-wrap .seo-lead-messages {
  grid-column: unset;
  grid-row: unset;
  margin: 0;
  padding: 0.75rem 1.5rem 0;
  order: 2;
}

.seo-lead-card--home .seo-lead-form,
.home-final-form-wrap .seo-lead-form {
  grid-column: unset;
  grid-row: unset;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  padding: 1.25rem 1.5rem 1.5rem;
  box-sizing: border-box;
}

.seo-lead-card--home .seo-lead-fields,
.home-final-form-wrap .seo-lead-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seo-lead-card--home .seo-lead-field,
.home-final-form-wrap .seo-lead-field {
  width: 100%;
  min-width: 0;
}

.seo-lead-card--home .seo-lead-field-span,
.home-final-form-wrap .seo-lead-field-span {
  grid-column: unset;
}

.seo-lead-card--home .seo-lead-field input:not([type="hidden"]),
.seo-lead-card--home .seo-lead-field textarea,
.seo-lead-card--home .seo-lead-form select,
.home-final-form-wrap .seo-lead-field input:not([type="hidden"]),
.home-final-form-wrap .seo-lead-field textarea,
.home-final-form-wrap .seo-lead-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.seo-lead-card--home .seo-lead-actions,
.home-final-form-wrap .seo-lead-actions {
  grid-column: unset;
  margin-top: 6px;
  justify-content: stretch;
}

.seo-lead-card--home .seo-lead-submit,
.home-final-form-wrap .seo-lead-submit {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (min-width: 1100px) {
  .seo-lead-card--home .seo-lead-fields,
  .home-final-form-wrap .seo-lead-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .seo-lead-card--home .seo-lead-field-span,
  .home-final-form-wrap .seo-lead-field-span {
    grid-column: 1 / -1;
  }

  .seo-lead-card--home .seo-lead-actions,
  .home-final-form-wrap .seo-lead-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .home-final-grid {
    grid-template-columns: 1fr;
  }

  .home-final-form-wrap {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Premium custom select dropdown
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.srw-select {
  position: relative;
  width: 100%;
}

.srw-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.srw-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(30, 48, 76, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--srw-ink);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.srw-select-trigger:hover {
  border-color: rgba(26, 95, 122, 0.28);
}

.srw-select-trigger:focus {
  outline: none;
  border-color: var(--srw-brand);
  box-shadow: 0 0 0 4px var(--srw-brand-glow);
}

.srw-select.is-open .srw-select-trigger {
  border-color: var(--srw-brand);
  box-shadow: 0 0 0 4px var(--srw-brand-glow);
}

.srw-select-value {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.srw-select-trigger.is-placeholder .srw-select-value {
  color: #94a3b8;
  font-weight: 500;
}

.srw-select-chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--srw-brand);
  background: rgba(26, 95, 122, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.srw-select.is-open .srw-select-chevron {
  transform: rotate(180deg);
  background: rgba(26, 95, 122, 0.14);
}

.srw-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  padding: 8px;
  border: 1px solid rgba(26, 95, 122, 0.14);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(15, 31, 52, 0.16);
}

.srw-select.is-open .srw-select-panel {
  display: block;
  animation: srwSelectFade 0.16s ease;
}

@keyframes srwSelectFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.srw-select-list {
  max-height: min(280px, 52vh);
  overflow: auto;
  overscroll-behavior: contain;
}

.srw-select-option {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--srw-ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
}

.srw-select-option:hover,
.srw-select-option:focus {
  outline: none;
  background: rgba(26, 95, 122, 0.08);
  color: var(--srw-brand-deep);
}

.srw-select-option.is-selected {
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.12), rgba(41, 128, 185, 0.1));
  color: var(--srw-brand-deep);
  font-weight: 700;
}

.srw-select-option.is-selected::after {
  content: "âœ“";
  margin-left: auto;
  padding-left: 10px;
  color: var(--srw-brand);
  font-weight: 800;
}

.srw-select-option.is-disabled,
.srw-select-option:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.srw-select-option-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
}

.seo-lead-field .srw-select,
.form-group .srw-select {
  margin-top: 2px;
}

@media (max-width: 640px) {
  body.srw-select-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.45);
  }

  .srw-select-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    max-height: min(70vh, 520px);
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 40px rgba(15, 31, 52, 0.2);
  }

  .srw-select.is-open::before {
    display: none;
  }

  .srw-select-list {
    max-height: calc(70vh - 24px);
  }

  .srw-select-option {
    min-height: 48px;
    align-items: center;
    font-size: 1rem;
  }
}

/* ===========================================
   Services page â€” capabilities 2-up card grid
   =========================================== */
.service-detail-cards {
  padding: clamp(40px, 6vw, 72px) 0;
}

.service-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
  align-items: stretch;
  margin-top: clamp(24px, 3vw, 40px);
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius-lg);
  background: var(--srw-gradient-card);
  box-shadow: 0 14px 40px rgba(15, 31, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 95, 122, 0.22);
  box-shadow: 0 24px 56px rgba(15, 31, 52, 0.13);
}

.service-detail-card .service-detail-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.1rem;
  color: #ffffff;
  background: linear-gradient(140deg, #1a5f7a 0%, #0d3446 100%) !important;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(13, 52, 70, 0.22);
}

.service-detail-card .service-detail-icon svg {
  width: 34px;
  height: 34px;
}

.service-detail-card h3 {
  margin: 0 0 0.35rem;
  color: var(--srw-brand-deep);
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
  line-height: 1.2;
}

.service-detail-card .service-detail-subtitle {
  display: block;
  margin-bottom: 1rem;
  color: var(--srw-brand);
  font-weight: 600;
}

.service-detail-card p {
  color: var(--srw-muted);
  line-height: 1.65;
}

.service-detail-card h4 {
  margin: 1.35rem 0 0.75rem;
  color: var(--srw-ink);
  font-size: 1.02rem;
}

.service-detail-card .service-features {
  margin-bottom: 1.5rem;
}

.service-detail-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .service-detail-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   Product trust row (replaces flat dark strip)
   =========================================== */
.product-trustrow {
  padding: clamp(22px, 4vw, 40px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.product-trustrow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  margin: 0;
  padding: clamp(14px, 1.8vw, 20px);
  list-style: none;
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius-lg);
  background: var(--srw-gradient-card);
  box-shadow: 0 16px 44px rgba(15, 31, 52, 0.09);
}

.product-trust-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 1.4vw, 16px);
  border-radius: var(--srw-radius);
  background: rgba(26, 95, 122, 0.045);
  border: 1px solid rgba(26, 95, 122, 0.08);
}

.product-trust-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(140deg, #1a5f7a 0%, #0d3446 100%);
  box-shadow: 0 8px 20px rgba(13, 52, 70, 0.22);
}

.product-trust-txt {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--srw-ink);
}

@media (max-width: 860px) {
  .product-trustrow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .product-trustrow-grid {
    grid-template-columns: 1fr;
  }

  .product-trust-txt {
    font-size: 0.88rem;
  }
}

/* ===========================================
   Featured Projects â€” real product showcase
   =========================================== */
.home-projects {
  padding: clamp(48px, 7vw, 88px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(28px, 4vw, 44px);
}

.home-project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--srw-line);
  border-radius: var(--srw-radius-lg);
  background: var(--srw-gradient-card);
  box-shadow: 0 14px 40px rgba(15, 31, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 95, 122, 0.24);
  box-shadow: 0 26px 60px rgba(15, 31, 52, 0.15);
}

/* Browser-framed screenshot */
.home-project-shot {
  position: relative;
  padding-top: 34px;
  background: linear-gradient(180deg, #0d3446 0%, #1a5f7a 100%);
}

.home-project-chrome {
  position: absolute;
  top: 12px;
  left: 16px;
  display: flex;
  gap: 6px;
}

.home-project-chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.home-project-chrome i:nth-child(1) { background: #ff5f57; }
.home-project-chrome i:nth-child(2) { background: #febc2e; }
.home-project-chrome i:nth-child(3) { background: #28c840; }

.home-project-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #eef4f8;
}

.home-project-badge {
  position: absolute;
  top: 44px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0d3446;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(13, 52, 70, 0.25);
}

.home-project-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(18px, 2.4vw, 26px);
}

.home-project-name {
  margin: 0 0 0.5rem;
  color: var(--srw-ink);
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.25;
}

.home-project-summary {
  margin: 0 0 1rem;
  color: var(--srw-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.home-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.home-project-tags li {
  padding: 5px 11px;
  border: 1px solid rgba(26, 95, 122, 0.16);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--srw-brand-dark, #134b61);
  background: rgba(26, 95, 122, 0.06);
}

.home-project-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 0.25rem;
}

.home-project-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--srw-brand);
  text-decoration: none;
  white-space: nowrap;
}

.home-project-link:hover {
  color: var(--srw-brand-dark, #134b61);
  text-decoration: underline;
}

.home-project-wa {
  white-space: nowrap;
}

.home-projects-note {
  margin: clamp(28px, 4vw, 40px) auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--srw-muted);
  font-size: 0.95rem;
}

.home-projects-note a {
  color: var(--srw-brand);
  font-weight: 700;
}

@media (max-width: 560px) {
  .home-projects-grid {
    grid-template-columns: 1fr;
  }

  .home-project-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-project-wa,
  .home-project-live {
    width: 100%;
    justify-content: center;
  }
}

/* Clickable screenshot â†’ live site */
a.home-project-shot {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.home-project-live-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(13, 52, 70, 0.15) 0%, rgba(13, 52, 70, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.home-project-live-hint svg {
  width: 18px;
  height: 18px;
}

a.home-project-shot:hover .home-project-live-hint,
a.home-project-shot:focus-visible .home-project-live-hint {
  opacity: 1;
}

a.home-project-shot:hover .home-project-img {
  transform: scale(1.03);
}

.home-project-img {
  transition: transform 0.35s ease;
}

a.home-project-shot:focus-visible {
  outline: 3px solid var(--srw-brand-light);
  outline-offset: 2px;
}

/* ===========================================
   Live-visit confirmation modal
   =========================================== */
body.srw-modal-open {
  overflow: hidden;
}

.srw-live-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.srw-live-modal[hidden] {
  display: none;
}

.srw-live-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 36, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.srw-live-modal.is-open .srw-live-modal-backdrop {
  opacity: 1;
}

.srw-live-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: clamp(24px, 3.5vw, 34px);
  text-align: center;
  border-radius: var(--srw-radius-lg);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(9, 24, 36, 0.35);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.srw-live-modal.is-open .srw-live-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.srw-live-modal-x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--srw-muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.srw-live-modal-x:hover {
  background: rgba(26, 95, 122, 0.08);
  color: var(--srw-ink);
}

.srw-live-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  color: var(--srw-brand);
  background: rgba(26, 95, 122, 0.1);
  border-radius: 50%;
}

.srw-live-modal-card h3 {
  margin: 0 0 0.6rem;
  color: var(--srw-ink);
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

.srw-live-modal-text {
  margin: 0 0 0.5rem;
  color: var(--srw-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.srw-live-modal-text .srw-live-modal-name {
  color: var(--srw-ink);
}

.srw-live-modal-url {
  margin: 0 0 0.5rem;
  word-break: break-all;
}

.srw-live-modal-host {
  display: inline-block;
  padding: 6px 14px;
  font-weight: 700;
  color: var(--srw-brand-dark, #134b61);
  background: rgba(26, 95, 122, 0.08);
  border: 1px solid rgba(26, 95, 122, 0.16);
  border-radius: 999px;
}

.srw-live-modal-note {
  margin: 0 0 1.4rem;
  color: var(--srw-muted);
  font-size: 0.82rem;
}

.srw-live-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.srw-live-modal-actions .btn {
  min-width: 130px;
  justify-content: center;
}

@media (max-width: 480px) {
  .srw-live-modal-actions {
    flex-direction: column-reverse;
  }

  .srw-live-modal-actions .btn {
    width: 100%;
  }
}

/* SRW header logo and transparent scroll override */
.header {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(26, 95, 122, 0.08);
  box-shadow: 0 4px 24px rgba(15, 31, 52, 0.06);
  transition: background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom-color: rgba(26, 95, 122, 0.12);
  box-shadow: 0 12px 34px rgba(15, 31, 52, 0.11);
}

.navbar {
  height: 86px;
}

.header .logo {
  gap: 0.75rem;
}

.header .logo-img {
  height: 50px;
}

.header .logo-text {
  font-size: 1.9rem;
  line-height: 0.95;
}

.header .logo-subtext {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.hero {
  padding-top: calc(86px + var(--space-2xl));
}

@media (max-width: 768px) {
  .navbar {
    height: 78px;
  }

  .header .logo-img {
    height: 42px;
  }

  .header .logo-text {
    font-size: 1.55rem;
  }

  .header .logo-subtext {
    font-size: 0.72rem;
  }

  .nav-menu {
    top: 78px;
  }

  .hero {
    padding-top: calc(78px + var(--space-xl));
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 72px;
  }

  .header .logo-img {
    height: 38px;
  }

  .header .logo-text {
    font-size: 1.38rem;
  }

  .header .logo-subtext {
    font-size: 0.66rem;
  }

  .nav-menu {
    top: 72px;
  }

  .hero {
    padding-top: calc(72px + var(--space-xl));
  }
}
/* SRW services mega dropdown override */
.nav-caret {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.72em;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-services .dropdown-menu-wide {
  left: 50%;
  width: min(680px, calc(100vw - 48px));
  min-width: 620px;
  padding: 14px;
  border: 1px solid rgba(26, 95, 122, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(50, 151, 189, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(15, 31, 52, 0.16), 0 8px 24px rgba(15, 31, 52, 0.08);
  transform: translate(-50%, 12px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-dropdown-services:hover .dropdown-menu-wide,
.nav-dropdown-services:focus-within .dropdown-menu-wide {
  transform: translate(-50%, 0);
}

.dropdown-intro {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f516b, #12384d);
  overflow: hidden;
}

.dropdown-intro .dropdown-kicker {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropdown-intro strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.dropdown-group {
  display: block;
  margin: 0 0 12px;
}

.dropdown-group:last-of-type {
  margin-bottom: 8px;
}

.dropdown-group .dropdown-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 8px;
  color: #0f516b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.dropdown-group .dropdown-group-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20d66f;
  box-shadow: 0 0 0 4px rgba(32, 214, 111, 0.12);
}

.dropdown-group-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-group-list li {
  min-width: 0;
}

.dropdown-group-list li a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 68px;
  padding: 11px 12px;
  border: 1px solid rgba(26, 95, 122, 0.1);
  border-radius: 13px;
  color: #243246;
  background: rgba(248, 252, 254, 0.9);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dropdown-group-list li a:hover,
.dropdown-group-list li a:focus-visible {
  color: #0f516b;
  background: #ffffff;
  border-color: rgba(26, 95, 122, 0.2);
  box-shadow: 0 12px 26px rgba(15, 31, 52, 0.09);
  transform: translateY(-1px);
}

.dropdown-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.14), rgba(50, 151, 189, 0.16));
  color: #0f516b;
}

.dropdown-item-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: currentColor;
  opacity: 0.88;
  clip-path: polygon(12% 20%, 88% 20%, 88% 76%, 62% 76%, 62% 88%, 38% 88%, 38% 76%, 12% 76%);
}

.dropdown-item-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.dropdown-item-title {
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.dropdown-item-note {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
}

.dropdown-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 95, 122, 0.12);
}

.dropdown-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #0f516b;
  background: rgba(26, 95, 122, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dropdown-actions a:first-child {
  color: #ffffff;
  background: linear-gradient(135deg, #1a86b1, #0f516b);
}

.dropdown-actions a:hover,
.dropdown-actions a:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-dropdown-services .dropdown-menu-wide {
    width: 100%;
    min-width: 0;
    padding: 12px;
    margin-top: 8px;
    border-radius: 16px;
    background: rgba(248, 252, 254, 0.96);
    box-shadow: inset 0 0 0 1px rgba(26, 95, 122, 0.1);
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-dropdown-services:hover .dropdown-menu-wide,
  .nav-dropdown-services:focus-within .dropdown-menu-wide {
    transform: none;
  }

  .dropdown-intro {
    padding: 13px 14px;
    margin-bottom: 10px;
  }

  .dropdown-group {
    margin-bottom: 10px;
  }

  .dropdown-group-list {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .dropdown-group-list li a {
    min-height: 58px;
    padding: 10px;
  }

  .dropdown-item-note {
    display: none;
  }

  .dropdown-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
/* SRW compact services dropdown tuning */
.nav-dropdown-services .dropdown-menu-wide {
  width: min(720px, calc(100vw - 40px));
  min-width: 600px;
  max-height: calc(100vh - 154px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px;
  border-radius: 16px;
  scrollbar-width: thin;
}

.dropdown-intro {
  gap: 2px;
  padding: 11px 14px;
  margin-bottom: 9px;
  border-radius: 13px;
}

.dropdown-intro .dropdown-kicker {
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.07em;
}

.dropdown-intro strong {
  font-size: 0.9rem;
  font-weight: 760;
}

.dropdown-group {
  margin-bottom: 8px;
}

.dropdown-group .dropdown-group-label {
  padding: 3px 4px 6px;
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.07em;
}

.dropdown-group .dropdown-group-label::before {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px rgba(32, 214, 111, 0.12);
}

.dropdown-group-list {
  gap: 7px;
}

.dropdown-group-list li a {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 12px;
}

.dropdown-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.dropdown-item-icon::before {
  width: 14px;
  height: 14px;
}

.dropdown-item-title {
  font-size: 0.8rem;
  font-weight: 720;
  line-height: 1.18;
}

.dropdown-item-note {
  display: none;
}

.dropdown-actions {
  gap: 8px;
  padding-top: 9px;
}

.dropdown-actions a {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 780;
}

@media (max-width: 768px) {
  .nav-dropdown-services .dropdown-menu-wide {
    max-height: calc(100vh - 170px);
    padding: 9px;
  }

  .dropdown-intro {
    padding: 10px 12px;
  }

  .dropdown-group-list li a {
    min-height: 46px;
    padding: 8px 9px;
  }

  .dropdown-item-title {
    font-size: 0.82rem;
  }
}
/* SRW mobile navigation repair */
@media (max-width: 768px) {
  body:has(.nav-menu.active) {
    overflow: hidden;
  }

  .nav-menu {
    align-items: stretch;
    justify-content: flex-start;
    top: 78px;
    bottom: 0;
    width: 100%;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 18px 18px calc(28px + env(safe-area-inset-bottom));
    box-sizing: border-box;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 4px;
    text-align: left;
    font-size: 1rem;
    border-bottom: 1px solid rgba(26, 95, 122, 0.08);
  }

  .nav-dropdown-services .dropdown-menu-wide {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    margin: 8px 0 12px;
    padding: 10px;
    transform: none;
    box-sizing: border-box;
  }

  .nav-dropdown-services:hover .dropdown-menu-wide,
  .nav-dropdown-services:focus-within .dropdown-menu-wide {
    transform: none;
  }

  .dropdown-intro {
    display: none;
  }

  .dropdown-group {
    margin-bottom: 8px;
  }

  .dropdown-group .dropdown-group-label {
    padding: 6px 2px;
    font-size: 0.64rem;
  }

  .dropdown-group-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dropdown-group-list li a {
    grid-template-columns: 26px minmax(0, 1fr);
    min-height: 42px;
    padding: 8px;
    border-radius: 10px;
  }

  .dropdown-item-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .dropdown-item-icon::before {
    width: 12px;
    height: 12px;
  }

  .dropdown-item-title {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .dropdown-actions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .dropdown-actions a {
    min-height: 36px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    top: 72px;
    max-height: calc(100dvh - 72px);
    padding: 16px 16px calc(28px + env(safe-area-inset-bottom));
  }
}