/* POM Creative - Brand Styles */
:root {
  --pom-orange: #F05030;
  --pom-red: #E03040;
  --pom-coral: #E63946;
  --pom-navy: #101040;
  --pom-navy-dark: #0A0A2E;
  --pom-navy-banner: #1A1F3C;
  --pom-black: #0D0D0D;
  --pom-white: #FFFFFF;
  --pom-gray-50: #F8F8FA;
  --pom-gray-100: #F0F0F2;
  --pom-gray-200: #E4E4E8;
  --pom-gray-400: #9A9AA8;
  --pom-gray-600: #5C5C6E;
  --pom-gray-800: #2A2A38;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(16, 16, 64, 0.08);
  --shadow-lg: 0 12px 48px rgba(16, 16, 64, 0.12);
  --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; }

body {
  font-family: var(--font-body);
  color: var(--pom-gray-800);
  background: var(--pom-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pom-navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.text-accent { color: var(--pom-orange); }
.text-white { color: var(--pom-white); }
.text-muted { color: var(--pom-gray-600); }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pom-orange);
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  color: var(--pom-white);
  box-shadow: 0 4px 20px rgba(240, 80, 48, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 80, 48, 0.45);
}

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

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

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

.btn-navy:hover {
  background: var(--pom-navy-dark);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pom-gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pom-navy);
  line-height: 1.1;
}

.nav-logo-text span { color: var(--pom-orange); }

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

.nav-top-link,
.nav-split-link {
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pom-gray-600);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-top-link:hover,
.nav-top-link.active,
.nav-split-link:hover,
.nav-split-link.active,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--pom-orange);
  background: rgba(240, 80, 48, 0.08);
}

/* Dropdown menus */
.nav-dropdown {
  position: relative;
}

.nav-split-inner {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-split-link {
  padding-right: 4px;
  border-radius: 8px 0 0 8px;
}

.nav-split-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 8px 4px;
  font-family: var(--font-body);
  color: var(--pom-gray-600);
  background: none;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: var(--transition);
}

.nav-split-caret svg {
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-split-inner,
.nav-dropdown.open .nav-split-inner,
.nav-dropdown.active .nav-split-inner {
  background: rgba(240, 80, 48, 0.08);
}

.nav-dropdown:hover .nav-split-link,
.nav-dropdown.open .nav-split-link,
.nav-dropdown.active .nav-split-link,
.nav-dropdown:hover .nav-split-caret,
.nav-dropdown.open .nav-split-caret,
.nav-dropdown.active .nav-split-caret {
  color: var(--pom-orange);
  background: transparent;
}

.nav-dropdown:hover .nav-split-caret svg,
.nav-dropdown.open .nav-split-caret svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--pom-white);
  border: 1px solid var(--pom-gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pom-gray-600);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta { margin-left: 12px; flex-shrink: 0; }

.nav-mobile-contact { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--pom-white) 42%, transparent 42%),
              linear-gradient(135deg, var(--pom-red) 0%, var(--pom-orange) 100%);
  z-index: 1;
}

.hero-bg img {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
}

.hero-ring {
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border: 2px solid rgba(240, 80, 48, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.hero-ring::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 60px 0;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pom-white);
  margin-bottom: 24px;
  padding: 8px 0;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--pom-white);
}

.hero-tagline::before {
  border-right: none;
  border-bottom: none;
}

.hero-tagline::after {
  border-left: none;
  border-top: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 8px;
}

.hero h1 .accent { color: var(--pom-orange); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--pom-gray-600);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-badge {
  display: inline-block;
  background: var(--pom-navy-banner);
  color: var(--pom-white);
  padding: 16px 32px;
  border-radius: var(--radius);
  margin-top: 40px;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pom-orange);
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--pom-navy) 0%, var(--pom-navy-banner) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  border-radius: 50%;
  opacity: 0.15;
}

.page-header h1 { color: var(--pom-white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 600px; }

.page-header .section-label { color: var(--pom-orange); }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.breadcrumb a:hover { color: var(--pom-orange); }

/* Sections */
section { padding: 100px 0; }

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

.section-header p { color: var(--pom-gray-600); margin-top: 16px; }

.bg-gray { background: var(--pom-gray-50); }
.bg-navy { background: var(--pom-navy); color: var(--pom-white); }
.bg-navy h2, .bg-navy h3 { color: var(--pom-white); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--pom-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--pom-gray-200);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--pom-gray-600); font-size: 0.9375rem; }

/* Feature blocks */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img { width: 100%; height: 400px; object-fit: cover; }

.feature-content .section-label { margin-bottom: 8px; }
.feature-content h2 { margin-bottom: 20px; }
.feature-content p { color: var(--pom-gray-600); margin-bottom: 16px; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--pom-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--pom-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Process Steps */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--pom-gray-200);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pom-white);
  box-shadow: 0 4px 20px rgba(240, 80, 48, 0.3);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--pom-navy);
}

.process-step p { font-size: 0.8125rem; color: var(--pom-gray-600); }

/* Divisions */
.division-card {
  background: var(--pom-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--pom-orange);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.division-card:hover {
  border-left-color: var(--pom-red);
  transform: translateX(4px);
}

.division-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.division-card .tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pom-orange);
  margin-bottom: 12px;
}

/* Services tabs */
.service-category {
  margin-bottom: 60px;
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--pom-gray-200);
}

.service-category-header h2 { flex: 1; }

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-item {
  padding: 24px;
  background: var(--pom-gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-item:hover {
  background: var(--pom-white);
  box-shadow: var(--shadow);
}

.service-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--pom-navy);
  margin-bottom: 8px;
}

.service-item p { font-size: 0.875rem; color: var(--pom-gray-600); }

/* Client table */
.client-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.client-table th {
  text-align: left;
  padding: 16px;
  background: var(--pom-navy);
  color: var(--pom-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.client-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--pom-gray-200);
}

.client-table tr:hover td { background: var(--pom-gray-50); }

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-completed { background: #E8F5E9; color: #2E7D32; }
.status-ongoing { background: #FFF3E0; color: #E65100; }

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

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--pom-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 { margin-bottom: 12px; font-size: 1.125rem; }
.value-card p { font-size: 0.875rem; color: var(--pom-gray-600); }

/* Reasons */
.reasons-list { counter-reset: reason; }

.reason-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--pom-gray-200);
  align-items: start;
}

.reason-item:last-child { border-bottom: none; }

.reason-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pom-white);
}

.reason-item h3 { margin-bottom: 8px; }
.reason-item p { color: var(--pom-gray-600); }

/* Team */
.team-message {
  background: linear-gradient(135deg, var(--pom-navy), var(--pom-navy-banner));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--pom-white);
  position: relative;
  overflow: hidden;
}

.team-message::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(240, 80, 48, 0.15);
  line-height: 1;
}

.team-message blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.team-message cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pom-orange);
}

.team-message cite span {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Equipment */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.equipment-block h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pom-orange);
}

.equipment-block ul li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--pom-gray-600);
  border-bottom: 1px solid var(--pom-gray-100);
}

.equipment-block ul li::before {
  content: '▸';
  color: var(--pom-orange);
  margin-right: 8px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.contact-info-item p { font-size: 0.9375rem; color: var(--pom-gray-600); }
.contact-info-item a:hover { color: var(--pom-orange); }

.contact-form {
  background: var(--pom-gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--pom-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--pom-gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition);
  background: var(--pom-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pom-orange);
  box-shadow: 0 0 0 3px rgba(240, 80, 48, 0.1);
}

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

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--pom-orange), var(--pom-red));
  padding: 80px 0;
  text-align: center;
  color: var(--pom-white);
}

.cta-banner h2 { color: var(--pom-white); margin-bottom: 16px; }
.cta-banner p { opacity: 0.9; margin-bottom: 32px; font-size: 1.125rem; }

/* Footer */
.footer {
  background: var(--pom-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p { margin-top: 16px; font-size: 0.875rem; line-height: 1.8; }

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--pom-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--pom-orange); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pom-orange);
  color: var(--pom-white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

/* Highlight box */
.highlight-box {
  background: var(--pom-gray-50);
  border-left: 4px solid var(--pom-orange);
  padding: 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.highlight-box h3 { margin-bottom: 12px; }

/* Pill tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.tag-pill {
  padding: 6px 16px;
  background: rgba(240, 80, 48, 0.1);
  color: var(--pom-orange);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--pom-white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--pom-gray-200);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-mobile-contact {
    display: block;
    padding: 12px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pom-navy);
    border-top: 1px solid var(--pom-gray-200);
    margin-top: 8px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    display: none;
    background: transparent;
  }

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

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

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

  .nav-split-inner {
    display: flex;
    width: 100%;
  }

  .nav-split-link {
    flex: 1;
    border-radius: 8px;
    padding-right: 14px;
  }

  .nav-split-caret {
    padding: 8px 14px;
    border-radius: 8px;
  }

  /* Home hero — mobile only */
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 48px;
    overflow: visible;
    background: var(--pom-white);
  }

  .hero .container {
    order: 1;
    position: relative;
    z-index: 3;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    order: 2;
    height: 240px;
    margin: 32px 20px 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .hero-bg::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pom-red) 0%, var(--pom-orange) 100%);
    border-radius: 16px;
  }

  .hero-bg img {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 72%;
    max-width: 280px;
    opacity: 1;
    z-index: 2;
  }

  .hero-ring { display: none; }

  .hero-content {
    max-width: 100%;
    padding: 28px 0 0;
  }

  .hero-tagline {
    color: var(--pom-navy);
    background: var(--pom-gray-50);
    border: 1px solid var(--pom-gray-200);
    padding: 10px 14px;
    border-radius: 8px;
    width: fit-content;
    max-width: 100%;
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .hero-tagline::before,
  .hero-tagline::after {
    border-color: var(--pom-orange);
    flex-shrink: 0;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    color: var(--pom-navy);
  }

  .hero-sub {
    color: var(--pom-gray-600);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-content > div:has(.btn) {
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-badge {
    display: block;
    width: 100%;
    margin-top: 24px;
    text-align: center;
    box-sizing: border-box;
  }

  .process-timeline { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  section { padding: 60px 0; }
  .page-header { padding: 120px 0 60px; }
}
