/* ============================================
   Georgescu & Asociatii - Corporate / Institutional
   Archetype 8 | OKLCH Color System
   Fonts: Lexend (display) + Nunito Sans (body)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* OKLCH Navy/Gold Palette */
  --surface-primary: oklch(99% 0.005 250);
  --surface-secondary: oklch(96% 0.008 250);
  --surface-dark: oklch(22% 0.05 255);
  --surface-darker: oklch(18% 0.05 255);
  --text-primary: oklch(22% 0.05 255);
  --text-secondary: oklch(48% 0.02 250);
  --text-light: oklch(70% 0.01 250);
  --accent: oklch(55% 0.12 255);
  --accent-hover: oklch(48% 0.14 255);
  --accent-light: oklch(95% 0.03 255);
  --gold: oklch(72% 0.12 85);
  --gold-hover: oklch(65% 0.14 85);
  --gold-light: oklch(92% 0.04 85);
  --success: oklch(55% 0.15 155);
  --border: oklch(90% 0.01 250);
  --white: oklch(100% 0 0);

  /* Typography */
  --font-display: 'Lexend', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-size-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  --font-size-display: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  --font-size-h2: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  --font-size-h3: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  --line-height-body: 1.65;
  --line-height-display: 1.15;
  --letter-spacing-display: -0.01em;

  /* Spacing */
  --space-unit: 1rem;
  --section-padding: 5rem 2rem;
  --container-max: 1140px;

  /* Radii & Shadows */
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.06);
  --shadow-md: 0 4px 14px oklch(0% 0 0 / 0.07);
  --shadow-lg: 0 12px 32px oklch(0% 0 0 / 0.09);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 200ms;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background: var(--surface-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--surface-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--line-height-display);
  letter-spacing: var(--letter-spacing-display);
  color: var(--text-primary);
}

/* --- Section Header with Left Accent Border (AP-2 broken) --- */
.section-header {
  margin-bottom: 3rem;
}

.section-header--left {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--text-primary);
}

.section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: var(--text-light); }
.section-header--light .section-label { color: var(--gold); }

/* --- Navigation (AP-8 broken: shrink + shadow on scroll, not opacity toggle) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-dark);
  transition: box-shadow var(--duration) var(--ease), padding var(--duration) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px oklch(0% 0 0 / 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  transition: padding var(--duration) var(--ease);
}

.site-header.scrolled .header-inner {
  padding: 0.6rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.logo-text {
  color: var(--white);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: oklch(80% 0 0);
  transition: color var(--duration) var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease);
}

.nav-cta:hover { background: var(--accent-hover); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--surface-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--duration);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav-close svg { width: 28px; height: 28px; }

/* --- Hero: Split layout (AP-3 broken) --- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 75vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--surface-dark);
  color: var(--white);
}

.hero-content-inner {
  max-width: 560px;
  margin: 0 auto;
}

.hero-accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: var(--font-size-display);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: oklch(75% 0.01 250);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid oklch(80% 0 0 / 0.4);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.btn-outline:hover {
  border-color: var(--white);
  background: oklch(100% 0 0 / 0.08);
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Trust Bar (unique to Corporate -- AP-4 transformed) --- */
.trust-bar {
  background: var(--surface-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* --- Services: Horizontal cards (AP-7 broken) --- */
.services-section {
  padding: var(--section-padding);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: oklch(80% 0.05 255);
}

.service-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.service-card h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: gap var(--duration) var(--ease);
}

.service-link:hover { gap: 0.7rem; }
.service-link svg { width: 16px; height: 16px; }

/* --- About / Why Us --- */
.about-section {
  padding: var(--section-padding);
  background: var(--surface-dark);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: oklch(72% 0.12 85 / 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.about-feature p {
  color: oklch(70% 0.01 250);
  font-size: 0.9rem;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--surface-dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--section-padding);
  background: var(--gold);
  text-align: center;
}

.cta-section h2 {
  font-size: var(--font-size-h2);
  color: var(--surface-dark);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: oklch(30% 0.05 85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--surface-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.btn-dark:hover { background: var(--surface-darker); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--white);
  color: var(--surface-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.btn-white:hover { background: oklch(96% 0 0); }

/* --- Footer --- */
.site-footer {
  background: var(--surface-dark);
  color: oklch(75% 0.01 250);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-col a {
  transition: color var(--duration);
}

.footer-col a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid oklch(30% 0.02 255);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: oklch(55% 0.01 250);
}

/* --- WhatsApp (AP-9 broken: rounded rectangle with text) --- */
.whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: oklch(55% 0.18 150);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px oklch(55% 0.18 150 / 0.3);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px oklch(55% 0.18 150 / 0.4);
}

.whatsapp-btn svg { width: 20px; height: 20px; }

/* --- Demo Badge --- */
.demo-badge {
  position: fixed;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface-dark);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.demo-badge svg { width: 16px; height: 16px; }

/* --- Page Headers (subpages) --- */
.page-header {
  background: var(--surface-dark);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
}

.page-header .section-label { color: var(--gold); }
.page-header h1 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--white);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.page-header p {
  color: oklch(75% 0.01 250);
  font-size: 1.1rem;
  max-width: 560px;
}

/* --- Contact Form --- */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(55% 0.12 255 / 0.1);
  outline: none;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-checkbox input { margin-top: 3px; }

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--surface-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.form-submit:hover { background: var(--surface-darker); }

/* Contact Info cards */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-info-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-info-item a:hover { color: var(--accent); }

.map-placeholder {
  background: var(--surface-secondary);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  text-align: center;
}

.map-placeholder svg { width: 40px; height: 40px; margin-bottom: 0.5rem; color: var(--text-light); }

.urgent-box {
  margin-top: 2rem;
  background: var(--surface-dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.urgent-box svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.urgent-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.urgent-box p { color: oklch(70% 0.01 250); font-size: 0.85rem; margin-bottom: 0.5rem; }
.urgent-box a { color: var(--gold); font-size: 1.2rem; font-weight: 700; }
.urgent-box a:hover { text-decoration: underline; }

/* --- Services Page Detail --- */
.services-detail-section {
  padding: var(--section-padding);
}

.service-detail-blocks {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.service-detail-content {}

.service-detail-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-detail-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.service-detail h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-detail p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.service-checklist {
  margin-bottom: 1.5rem;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.service-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.service-consult-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-consult-link:hover { text-decoration: underline; }
.service-consult-link svg { width: 16px; height: 16px; }

/* --- Scroll Animations (AP-10 unique tech: CSS scroll-driven) --- */
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: revealUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }

  @keyframes revealUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@supports not (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* --- Responsive --- */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 55% 45%;
  }

  .hero-content {
    padding: 5rem 4rem 5rem 2rem;
  }

  .hero-content-inner {
    margin: 0 0 0 auto;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) .service-detail-content {
    order: 2;
  }

  .service-detail:nth-child(even) .service-detail-image {
    order: 1;
  }

  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: flex; }

  .hero-image { min-height: 250px; }

  .trust-bar-inner { gap: 1.5rem; }
  .trust-item { font-size: 0.8rem; }

  .about-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }

  .hero-content {
    padding: 6rem 5rem 6rem 3rem;
  }
}
