/* ========================================
   Diriga Technologies — styles.css
   Variant 1: Compliance-first authority
   ======================================== */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --navy: #042C53;
  --navy-dark: #031E3A;
  --blue: #378ADD;
  --blue-light: #5AA3E8;
  --blue-dark: #2A6FB5;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100: #F1F3F5;
  --gray-200: #E2E5E9;
  --gray-300: #CDD1D6;
  --gray-400: #9DA3AB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --charcoal: #2C2C2A;
  --black: #111111;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --h1: 1.375rem;
  --h2: 1.125rem;
  --h3: 1rem;
  --body: 1rem;
  --small: 0.875rem;
  --xs: 0.75rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  font-size: var(--body);
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  font-weight: var(--fw-medium);
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

.section-label {
  font-size: var(--xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

.section--dark .section-label {
  color: var(--blue-light);
}

.section-title {
  font-size: var(--h2);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--gray-500);
  max-width: 600px;
}

.section--dark .section-subtitle {
  color: var(--gray-300);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem 1.25rem;
  font-size: var(--small);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn--outline {
  border: 1px solid var(--gray-300);
  color: var(--navy);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

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

.btn--white:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.btn--ghost {
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--blue-dark);
}

/* --- Brand Family Bar --- */
.brand-family-bar {
  background: var(--charcoal);
  height: 32px;
  display: flex;
  align-items: center;
  font-size: var(--xs);
}

.brand-family-bar .container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.brand-family-bar a {
  color: var(--gray-400);
  font-weight: var(--fw-regular);
}

.brand-family-bar a:hover {
  color: var(--white);
}

.brand-family-bar a.current {
  color: var(--white);
  font-weight: var(--fw-medium);
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: var(--h3);
  font-weight: var(--fw-medium);
  color: var(--navy);
  letter-spacing: -0.01em;
}

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

.logo span {
  color: var(--blue);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.main-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-nav.open {
  display: block;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.main-nav a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--gray-700);
  font-size: var(--small);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
}

.main-nav a:hover {
  background: var(--off-white);
  color: var(--navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}

.dropdown-menu {
  display: none;
  padding-left: var(--space-md);
}

.dropdown-menu.open {
  display: block;
}

.dropdown-menu a {
  font-weight: var(--fw-regular);
  color: var(--gray-500);
}

.nav-cta {
  margin-top: var(--space-sm);
}

.nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* --- Hero --- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(55, 138, 221, 0.08) 100%);
  pointer-events: none;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  max-width: 640px;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero p {
  color: var(--gray-300);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-lg) 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--small);
  font-weight: var(--fw-medium);
  color: var(--navy);
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--xs);
  font-weight: var(--fw-medium);
}

/* --- Problem Statement --- */
.problems-grid {
  display: grid;
  gap: var(--space-lg);
}

.problem-card {
  padding: var(--space-xl);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--blue);
}

.problem-card h3 {
  margin-bottom: var(--space-sm);
}

.problem-card p {
  color: var(--gray-500);
  font-size: var(--small);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  gap: var(--space-md);
}

.service-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(55, 138, 221, 0.1);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--white);
  font-size: var(--small);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--gray-500);
  font-size: var(--small);
  margin-bottom: var(--space-md);
}

.service-card a {
  font-size: var(--small);
  font-weight: var(--fw-medium);
}

/* --- Compliance Journey --- */
.journey-steps {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

.journey-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  counter-increment: step;
}

.journey-step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-medium);
  color: var(--white);
  font-size: var(--small);
}

.journey-step h3 {
  margin-bottom: var(--space-xs);
}

.journey-step p {
  color: var(--gray-300);
  font-size: var(--small);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--blue);
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-medium);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--xs);
  opacity: 0.85;
}

/* --- Case Study --- */
.case-study {
  display: grid;
  gap: var(--space-xl);
}

.case-study-image {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content .section-label {
  margin-bottom: var(--space-sm);
}

.case-study-content h2 {
  margin-bottom: var(--space-md);
}

.case-study-content p {
  margin-bottom: var(--space-md);
  color: var(--gray-600);
}

.case-study-metrics {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.case-study-metric strong {
  display: block;
  font-size: var(--h2);
  color: var(--navy);
  font-weight: var(--fw-medium);
}

.case-study-metric span {
  font-size: var(--xs);
  color: var(--gray-500);
}

/* --- Logo Marquee --- */
.logo-marquee {
  overflow: hidden;
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.marquee-track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 30s linear infinite;
}

.logo-placeholder {
  min-width: 140px;
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--xs);
  color: var(--gray-400);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  padding: 0 var(--space-lg);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.testimonial-card blockquote {
  font-size: var(--body);
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  font-size: var(--small);
  font-weight: var(--fw-medium);
  color: var(--navy);
}

.testimonial-role {
  font-size: var(--xs);
  color: var(--gray-500);
}

/* --- Resources Preview --- */
.resources-grid {
  display: grid;
  gap: var(--space-md);
}

.resource-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.resource-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.resource-card-image {
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  overflow: hidden;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card-body {
  padding: var(--space-lg);
}

.resource-card-tag {
  font-size: var(--xs);
  font-weight: var(--fw-medium);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.resource-card-body h3 {
  margin-bottom: var(--space-sm);
}

.resource-card-body p {
  font-size: var(--small);
  color: var(--gray-500);
}

/* --- Final CTA --- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
}

.final-cta p {
  color: var(--gray-300);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--small);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  color: var(--gray-400);
  font-size: var(--small);
}

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

.footer-col p {
  font-size: var(--small);
  line-height: 1.6;
}

.footer-brand-family {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand-family h4 {
  color: var(--white);
  font-size: var(--small);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-md);
}

.brand-family-links {
  display: grid;
  gap: var(--space-md);
}

.brand-family-link {
  font-size: var(--small);
}

.brand-family-link a {
  color: var(--blue-light);
  font-weight: var(--fw-medium);
}

.brand-family-link a:hover {
  color: var(--white);
}

.brand-family-link p {
  font-size: var(--xs);
  color: var(--gray-500);
  margin-top: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--xs);
}

.footer-bottom a {
  color: var(--gray-500);
}

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

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-3xl) 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: var(--gray-300);
  max-width: 560px;
}

/* --- Content Sections --- */
.content-grid {
  display: grid;
  gap: var(--space-lg);
}

.feature-list {
  display: grid;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: var(--small);
}

.feature-item h3 {
  margin-bottom: var(--space-xs);
}

.feature-item p {
  font-size: var(--small);
  color: var(--gray-500);
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--small);
  font-weight: var(--fw-medium);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: var(--small);
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.1);
}

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

.form-row {
  display: grid;
  gap: var(--space-md);
}

/* --- FAQ --- */
.faq-list {
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--body);
  font-weight: var(--fw-medium);
  color: var(--navy);
  text-align: left;
  background: var(--white);
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: var(--h2);
  color: var(--blue);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--small);
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 4px);
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.timeline-item h3 {
  margin-bottom: var(--space-xs);
}

.timeline-year {
  font-size: var(--xs);
  color: var(--blue);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
}

.timeline-item p {
  font-size: var(--small);
  color: var(--gray-500);
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  gap: var(--space-lg);
}

.team-card {
  text-align: center;
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: var(--space-xs);
}

.team-card p {
  font-size: var(--small);
  color: var(--gray-500);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

.contact-info-item {
  margin-bottom: var(--space-lg);
}

.contact-info-item h3 {
  margin-bottom: var(--space-xs);
}

.contact-info-item p,
.contact-info-item a {
  font-size: var(--small);
  color: var(--gray-500);
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: var(--small);
}

/* --- Sub-service Cards --- */
.sub-service-grid {
  display: grid;
  gap: var(--space-lg);
}

.sub-service-card {
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.sub-service-card h3 {
  margin-bottom: var(--space-sm);
}

.sub-service-card p {
  font-size: var(--small);
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.sub-service-card ul {
  margin-bottom: var(--space-md);
}

.sub-service-card li {
  font-size: var(--small);
  color: var(--gray-600);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.sub-service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

/* --- Responsive: Tablet (768px+) --- */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
    position: static;
    background: none;
    border-bottom: none;
    padding: 0;
    box-shadow: none;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .main-nav a {
    padding: var(--space-sm) var(--space-md);
  }

  .nav-toggle {
    display: none;
  }

  .nav-dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding-left: var(--space-sm);
  }

  .nav-cta {
    margin-top: 0;
    margin-left: var(--space-sm);
  }

  .nav-cta .btn {
    width: auto;
  }

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

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

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

  .case-study {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

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

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

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

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

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

  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }

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

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

/* --- Responsive: Desktop (1200px+) --- */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
  }

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

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

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

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

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