
/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
  --primary: #0077B6;
  --primary-dark: #005A8C;
  --secondary: #00B4D8;
  --accent: #48CAE4;
  --accent-light: #90E0EF;
  --navy: #03045E;
  --dark: #0B2545;
  --dark-blue: #134074;
  --light-bg: #EFF8FC;
  --lighter-bg: #F7FBFD;
  --white: #FFFFFF;
  --text: #2D3436;
  --text-light: #636E72;
  --text-muted: #B2BEC3;
  --border: #DFE6E9;
  --success: #00B894;
  --error: #D63031;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 4px 20px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 8px 40px rgba(11, 37, 69, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ========================================
   LAYOUT
   ======================================== */

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

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}

.logo-img:hover {
  opacity: 0.85;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 37, 69, 0.82) 0%, rgba(19, 64, 116, 0.7) 40%, rgba(0, 119, 182, 0.65) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content {
  color: var(--white);
}

.hero-content .section-tag {
  color: var(--accent-light);
  background: rgba(72, 202, 228, 0.15);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
}

.hero-content h1 {
  color: var(--white);
  margin: 28px 0 24px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
  background: var(--white);
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 48px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  padding: 100px 0;
}

.services .container {
  text-align: center;
}

.services .section-tag {
  color: var(--secondary);
}

.services h2 {
  margin-bottom: 16px;
}

.services-subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 0.95rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   PROBLEM VS SOLUTION
   ======================================== */

.problem-solution {
  padding: 100px 0;
  background: var(--light-bg);
}

.problem-solution .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.ps-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 420px;
}

.ps-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ps-content .section-tag {
  color: var(--primary);
}

.ps-content h2 {
  margin-bottom: 40px;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.ps-column {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.ps-column h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.ps-column h3 svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ps-problem {
  border-top: 3px solid var(--error);
}

.ps-problem h3 {
  color: var(--error);
}

.ps-solution {
  border-top: 3px solid var(--success);
}

.ps-solution h3 {
  color: var(--success);
}

.ps-column ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.ps-column ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.ps-problem ul li::before {
  background: var(--error);
  opacity: 0.4;
}

.ps-solution ul li::before {
  background: var(--success);
  opacity: 0.6;
}

.ps-note {
  color: var(--text-light);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
  padding: 100px 0;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 40px;
}

.how-image {
  max-width: 900px;
  margin: 0 auto 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.how-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step:last-child .step-line {
  display: none;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  padding: 100px 0;
  background: var(--lighter-bg);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--accent-light);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Client logos bar */
.client-logos-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 18px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.client-logo {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.client-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.client-logo span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.client-logo img {
  width: 80%;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */

.locations {
  padding: 80px 0;
  text-align: center;
}

.locations h2 {
  margin-bottom: 12px;
}

.locations-subtitle {
  color: var(--text-light);
  margin-bottom: 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: left;
}

.location-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-sm);
}

.location-card h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.location-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 4px;
}

.location-card a {
  font-size: 0.78rem;
  color: var(--primary);
  word-break: break-all;
}

/* ========================================
   FORM SECTION
   ======================================== */

.form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
}

.form-section .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.form-section-content .section-tag {
  color: var(--accent-light);
}

.form-section-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.form-section-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.92rem;
}

.form-benefits li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Form card */
.form-section-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.form-group label .required {
  color: var(--error);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--lighter-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 16px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.form-message {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  margin-bottom: 12px;
}

.form-message.success {
  display: block;
  background: rgba(0, 184, 148, 0.1);
  color: var(--success);
  border: 1px solid rgba(0, 184, 148, 0.2);
}

.form-message.error {
  display: block;
  background: rgba(214, 48, 49, 0.1);
  color: var(--error);
  border: 1px solid rgba(214, 48, 49, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-main .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  height: 50px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 420px;
}

.footer-certs {
  text-align: right;
}

.footer-certs h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.cert-logos {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cert-logo {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  padding: 10px;
  overflow: hidden;
}

.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color var(--transition);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .stats-bar .container {
    padding: 28px 32px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

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

  .problem-solution .container {
    grid-template-columns: 1fr;
  }

  .ps-image {
    max-height: 350px;
  }

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

  .testimonials-slider {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-slider .testimonial-card:last-child {
    display: none;
  }

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

  .form-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-certs {
    text-align: left;
  }

  .cert-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  .hero .container {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .stats-bar .container {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 24px;
  }

  .stat {
    flex: 1 1 40%;
    padding: 8px 0;
  }

  .stat-divider {
    display: none;
  }

  .services,
  .problem-solution,
  .how-it-works,
  .testimonials {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-line {
    display: none;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto 50px;
  }

  .testimonials-slider .testimonial-card:last-child {
    display: block;
  }

  .client-logos-bar {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .client-logo {
    padding: 14px 12px;
    min-height: 70px;
  }

  .client-logo img {
    width: 82%;
    height: 44px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .form-section {
    padding: 70px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .locations {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stats-bar .container {
    padding: 24px 16px;
  }

  .stat {
    flex: 1 1 45%;
  }

  .form-section-form {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .client-logos-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .client-logo {
    min-height: 64px;
    padding: 10px 12px;
  }
}

/* ========================================
   THEME OVERRIDES
   Blindagem contra CSS do tema activo do WP.
   Prefixo body.kmed-lp + !important nas propriedades
   críticas que temas costumam sobrescrever.
   ======================================== */

body.kmed-lp {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: var(--text) !important;
  background: var(--white) !important;
}

body.kmed-lp h1,
body.kmed-lp h2,
body.kmed-lp h3,
body.kmed-lp h4 {
  font-family: 'Poppins', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--dark);
}

/* Header */
body.kmed-lp .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100 !important;
  background: var(--white) !important;
  padding: 14px 0 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body.kmed-lp .site-header .container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
}

body.kmed-lp .site-header .logo {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.kmed-lp .logo-img {
  height: 46px !important;
  width: auto !important;
  max-width: none !important;
}

/* Botões — cor de texto, fundo e borda (o que temas tipicamente partem) */
body.kmed-lp .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1 !important;
  border-radius: var(--radius-sm) !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
}

body.kmed-lp .btn-sm {
  padding: 10px 24px !important;
  font-size: 0.8rem !important;
}

body.kmed-lp .btn-primary,
body.kmed-lp button.btn-primary,
body.kmed-lp a.btn-primary {
  background: var(--primary) !important;
  background-color: var(--primary) !important;
  background-image: none !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  text-shadow: none !important;
}

body.kmed-lp .btn-primary:hover,
body.kmed-lp button.btn-primary:hover,
body.kmed-lp a.btn-primary:hover {
  background: var(--primary-dark) !important;
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--white) !important;
}

body.kmed-lp .btn-outline-white,
body.kmed-lp a.btn-outline-white {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
}

body.kmed-lp .btn-outline-white:hover,
body.kmed-lp a.btn-outline-white:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
}

/* Form section (fundo escuro) — garantir legibilidade do texto */
body.kmed-lp .form-section-content .section-tag {
  color: var(--accent-light) !important;
}

body.kmed-lp .form-section-content h2 {
  color: var(--white) !important;
}

body.kmed-lp .form-section-content > p {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.kmed-lp .form-benefits li {
  color: var(--white) !important;
}

/* Hero — texto sobre fundo escuro */
body.kmed-lp .hero-content,
body.kmed-lp .hero-content h1 {
  color: var(--white) !important;
}

body.kmed-lp .hero-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Consent — link da Política de Privacidade dentro do form */
body.kmed-lp .form-consent a {
  color: var(--primary) !important;
  text-decoration: underline !important;
}

body.kmed-lp .form-consent label {
  color: var(--text-light) !important;
}

/* Listas sem marcador nas secções internas */
body.kmed-lp ul,
body.kmed-lp .ps-column ul,
body.kmed-lp .form-benefits {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Footer — política de privacidade */
body.kmed-lp .footer-bottom a {
  color: var(--text-light) !important;
  text-decoration: none !important;
}

body.kmed-lp .footer-bottom a:hover {
  color: var(--primary) !important;
}
