/* === John Potter Media — Main Stylesheet === */
:root {
  --blue-dark:   #1d3d6f;
  --blue-mid:    #2c5494;
  --blue-light:  #4a7cc1;
  --silver:      #9aaab8;
  --silver-light:#c8d4dc;
  --silver-bg:   #f0f4f7;
  --white:       #ffffff;
  --text-dark:   #1a2535;
  --text-mid:    #445566;
  --accent:      #e8f0fb;
  --shadow:      0 4px 20px rgba(29,61,111,.12);
  --transition:  .3s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body { overflow-x:hidden; }

body {
  font-family:'Inter','Segoe UI',system-ui,sans-serif;
  color:var(--text-dark);
  line-height:1.65;
  font-size:16px;
}

/* === Typography === */
h1,h2,h3,h4 { font-weight:700; line-height:1.2; color:var(--blue-dark); }
h1 { font-size:clamp(2rem,5vw,3.4rem); }
h2 { font-size:clamp(1.75rem,3.5vw,2.6rem); }
h3 { font-size:clamp(1.2rem,2.5vw,1.5rem); }
h4 { font-size:1.05rem; }
p  { color:var(--text-mid); margin-bottom:1rem; }
a  { color:var(--blue-mid); text-decoration:none; transition:var(--transition); }
a:hover { color:var(--blue-dark); }

.container { max-width:1180px; margin:0 auto; padding:0 24px; }

.section-label {
  display:inline-block;
  font-size:.75rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--blue-light); margin-bottom:.6rem;
}

.section-header { text-align:center; margin-bottom:3rem; }
.section-header p { max-width:580px; margin:.75rem auto 0; font-size:1.05rem; }

/* === Buttons === */
.btn {
  display:inline-block;
  padding:.8rem 1.75rem;
  border-radius:6px;
  font-weight:600; font-size:.95rem;
  cursor:pointer; transition:var(--transition);
  border:2px solid transparent;
  line-height:1.4;
}
.btn-primary { background:var(--blue-dark); color:var(--white); border-color:var(--blue-dark); }
.btn-primary:hover { background:var(--blue-mid); border-color:var(--blue-mid); color:var(--white); transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-outline { background:transparent; color:var(--white); border-color:rgba(255,255,255,.7); }
.btn-outline:hover { background:var(--white); color:var(--blue-dark); transform:translateY(-2px); }
.btn-outline-dark { background:transparent; color:var(--blue-dark); border-color:var(--blue-dark); }
.btn-outline-dark:hover { background:var(--blue-dark); color:var(--white); }
.btn-lg { padding:1rem 2.2rem; font-size:1rem; }

/* === Header === */
#header {
  position:sticky; top:0; z-index:1000;
  background:var(--white);
  box-shadow:0 2px 12px rgba(0,0,0,.07);
}
.nav-inner {
  display:flex; align-items:center;
  justify-content:space-between; height:70px;
}
.nav-logo { display:flex; align-items:center; gap:.6rem; }
.nav-logo img { height:44px; width:auto; }
.nav-logo span { font-size:1.15rem; font-weight:700; color:var(--blue-dark); letter-spacing:-.02em; }

.nav-links { display:flex; align-items:center; gap:.1rem; list-style:none; }
.nav-links a {
  display:block; padding:.45rem .85rem;
  font-weight:500; color:var(--text-dark);
  border-radius:4px; font-size:.92rem;
}
.nav-links a:hover, .nav-links a.active { color:var(--blue-dark); background:var(--accent); }
.nav-cta { margin-left:.75rem; }
.nav-links .nav-cta a { color:var(--white); }
.nav-links .nav-cta a:hover { color:var(--white); }

.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--blue-dark); border-radius:2px; transition:var(--transition); }

/* === Hero === */
.hero {
  background:linear-gradient(135deg,var(--blue-dark) 0%,#0d1f3c 60%,#152d58 100%);
  color:var(--white); padding:90px 0 80px; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-30%; right:-8%;
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(74,124,193,.18) 0%,transparent 70%);
  pointer-events:none;
}
.hero-inner {
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:3.5rem; align-items:center; position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.8); font-size:.78rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.35rem 1rem; border-radius:50px; margin-bottom:1.2rem;
}
.hero h1 { color:var(--white); margin-bottom:1.1rem; }
.hero h1 em { font-style:normal; color:#a8c4e8; }
.hero-sub {
  font-size:1.1rem; color:rgba(255,255,255,.75);
  margin-bottom:2rem; max-width:480px; line-height:1.7;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.hero-trust { display:flex; align-items:center; gap:.75rem; font-size:.82rem; color:rgba(255,255,255,.55); }
.hero-trust span { display:flex; align-items:center; gap:.3rem; }
.hero-trust svg { width:14px; height:14px; fill:rgba(255,255,255,.4); }
.hero-divider { color:rgba(255,255,255,.2); }

.hero-stats { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.hero-stat {
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:10px; padding:1.4rem 1.5rem; backdrop-filter:blur(8px);
}
.hero-stat .num { font-size:2.2rem; font-weight:800; color:var(--white); line-height:1; margin-bottom:.3rem; }
.hero-stat .lbl { font-size:.82rem; color:rgba(255,255,255,.65); font-weight:500; }

/* === Services Overview === */
.services-section { padding:90px 0; }
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
}
.service-card {
  background:var(--white); border:1px solid var(--silver-light);
  border-radius:12px; padding:2rem; transition:var(--transition);
  position:relative; overflow:hidden;
}
.service-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue-dark),var(--blue-light));
  transform:scaleX(0); transition:var(--transition); transform-origin:left;
}
.service-card:hover { border-color:var(--blue-light); box-shadow:var(--shadow); transform:translateY(-4px); }
.service-card:hover::after { transform:scaleX(1); }
.service-card.featured { background:var(--blue-dark); border-color:var(--blue-dark); }
.service-card.featured h3, .service-card.featured p { color:rgba(255,255,255,.9); }
.service-card.featured h3 { color:var(--white); }
.service-card.featured::after { background:rgba(255,255,255,.3); }

.service-icon {
  width:50px; height:50px; background:var(--accent);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  margin-bottom:1.2rem;
}
.service-card.featured .service-icon { background:rgba(255,255,255,.12); }
.service-icon svg { width:24px; height:24px; fill:var(--blue-dark); }
.service-card.featured .service-icon svg { fill:var(--white); }
.service-card h3 { margin-bottom:.65rem; }
.service-card p { font-size:.93rem; margin-bottom:.75rem; }
.service-link { font-size:.88rem; font-weight:600; color:var(--blue-mid); }
.service-card.featured .service-link { color:rgba(255,255,255,.8); }
.service-link:hover { text-decoration:underline; }

/* === Stats Bar === */
.stats-bar { background:var(--blue-dark); padding:64px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.stat-item .num { font-size:2.8rem; font-weight:800; color:var(--white); line-height:1; margin-bottom:.5rem; }
.stat-item .desc { font-size:.9rem; color:var(--silver-light); font-weight:500; }

/* === Portfolio Preview === */
.portfolio-preview { background:var(--silver-bg); padding:90px 0; }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:2.5rem; }
.portfolio-card {
  background:var(--white); border-radius:10px; overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.06); transition:var(--transition);
}
.portfolio-card:hover { transform:translateY(-4px); box-shadow:0 10px 30px rgba(29,61,111,.15); }
.portfolio-thumb {
  height:175px; position:relative; overflow:hidden;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue-mid));
}
.portfolio-thumb img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.portfolio-thumb-fallback {
  position:absolute; inset:0; display:none; flex-direction:column;
  align-items:center; justify-content:center; gap:.5rem; padding:1rem;
}
.portfolio-thumb-fallback svg { width:32px; height:32px; fill:rgba(255,255,255,.3); }
.portfolio-thumb-fallback span { font-size:.8rem; font-weight:600; color:rgba(255,255,255,.6); text-align:center; }
.portfolio-overlay {
  position:absolute; inset:0; background:rgba(13,31,60,.82);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay .btn { font-size:.85rem; padding:.55rem 1.2rem; }
.portfolio-info { padding:.9rem 1.1rem; }
.portfolio-info h4 { font-size:.9rem; color:var(--text-dark); margin-bottom:.2rem; }
.portfolio-info .cat { font-size:.73rem; color:var(--blue-light); font-weight:600; text-transform:uppercase; letter-spacing:.06em; }
.portfolio-center { text-align:center; }

/* === Why Choose Us === */
.why-section { padding:90px 0; }
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.why-item { display:flex; gap:1.2rem; align-items:flex-start; }
.why-icon { width:48px; height:48px; background:var(--accent); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.why-icon svg { width:22px; height:22px; fill:var(--blue-dark); }
.why-item h4 { margin-bottom:.35rem; }
.why-item p { font-size:.9rem; margin-bottom:0; }

/* === CTA === */
.cta-section {
  background:linear-gradient(135deg,var(--blue-dark),var(--blue-mid));
  text-align:center; padding:88px 0;
}
.cta-section h2 { color:var(--white); margin-bottom:1rem; }
.cta-section p { color:rgba(255,255,255,.8); font-size:1.05rem; margin-bottom:2rem; max-width:540px; margin-left:auto; margin-right:auto; }
.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* === Page Header === */
.page-header {
  background:linear-gradient(135deg,var(--blue-dark) 0%,#0d1f3c 100%);
  padding:68px 0; color:var(--white); text-align:center;
}
.page-header h1 { color:var(--white); margin-bottom:.75rem; }
.page-header p { color:rgba(255,255,255,.72); font-size:1.05rem; max-width:540px; margin:0 auto; }
.breadcrumb { display:flex; align-items:center; gap:.5rem; justify-content:center; font-size:.82rem; margin-bottom:.9rem; }
.breadcrumb a { color:rgba(255,255,255,.55); }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb .sep { color:rgba(255,255,255,.3); }

/* === Services Detail Page === */
.service-block { padding:80px 0; border-bottom:1px solid var(--silver-bg); }
.service-block:nth-child(even) { background:var(--silver-bg); }
.service-block-inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.service-block:nth-child(even) .service-block-inner { direction:rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction:ltr; }
.service-visual {
  border-radius:14px; aspect-ratio:4/3; overflow:hidden;
  box-shadow:0 8px 32px rgba(29,61,111,.18);
  position:relative;
}
.service-visual img {
  width:100%; height:100%; object-fit:cover; object-position:top;
  display:block; border-radius:14px;
  transition:.4s ease; transform:scale(1.02);
}
.service-block:hover .service-visual img { transform:scale(1.06); }
.service-visual-placeholder {
  background:linear-gradient(135deg,var(--blue-dark),var(--blue-mid));
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
}
.service-visual-placeholder svg { width:72px; height:72px; fill:rgba(255,255,255,.35); }
.service-visual-placeholder span { font-size:.9rem; font-weight:600; color:rgba(255,255,255,.5); letter-spacing:.05em; text-transform:uppercase; }
.feature-list { list-style:none; margin:1.2rem 0 1.5rem; }
.feature-list li {
  display:flex; align-items:flex-start; gap:.75rem;
  margin-bottom:.55rem; font-size:.93rem; color:var(--text-mid);
}
.feature-list li::before {
  content:''; width:20px; height:20px; flex-shrink:0;
  background:var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231d3d6f' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius:50%; margin-top:1px;
}

/* === Portfolio Full Page === */
.filter-bar { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.filter-btn {
  padding:.42rem 1.1rem; border-radius:50px; font-size:.83rem; font-weight:600;
  border:1.5px solid var(--silver-light); background:var(--white); color:var(--text-mid);
  cursor:pointer; transition:var(--transition);
}
.filter-btn:hover, .filter-btn.active { background:var(--blue-dark); border-color:var(--blue-dark); color:var(--white); }

.portfolio-full { padding:70px 0; }
.portfolio-all-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.1rem; }

.p-item {
  background:var(--white); border-radius:9px; overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.06); transition:var(--transition);
}
.p-item:hover { transform:translateY(-3px); box-shadow:0 8px 22px rgba(29,61,111,.14); }
.p-item[data-cat].hidden { display:none; }
.p-item .p-thumb {
  height:150px; background:linear-gradient(135deg,var(--blue-dark),var(--blue-light));
  position:relative; overflow:hidden;
}
.p-item .p-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.p-item .p-thumb-txt { position:absolute; inset:0; display:none; align-items:center; justify-content:center; font-size:.78rem; font-weight:600; color:rgba(255,255,255,.65); text-align:center; padding:.5rem; }
.p-item .p-info { padding:.75rem .9rem; }
.p-item .p-info h4 { font-size:.82rem; color:var(--text-dark); margin-bottom:.15rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.p-item .p-info a { font-size:.74rem; color:var(--blue-light); }
.p-item .p-info .p-cat { font-size:.68rem; color:var(--silver); font-weight:600; text-transform:uppercase; letter-spacing:.05em; display:block; margin-bottom:.1rem; }

/* === About Page === */
.about-content { padding:80px 0; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.about-bio p { font-size:1.02rem; }
.about-bio p:last-child { margin-bottom:0; }
.about-highlights { background:var(--silver-bg); border-radius:12px; padding:2rem; }
.about-highlights h3 { margin-bottom:1.5rem; }
.highlight-item {
  display:flex; gap:1rem; margin-bottom:1.2rem;
  padding-bottom:1.2rem; border-bottom:1px solid var(--silver-light);
}
.highlight-item:last-child { margin-bottom:0; padding-bottom:0; border-bottom:none; }
.h-num { font-size:1.8rem; font-weight:800; color:var(--blue-dark); line-height:1; min-width:70px; }
.h-txt h4 { margin-bottom:.2rem; font-size:.95rem; }
.h-txt p { font-size:.84rem; margin-bottom:0; }

.values-section { background:var(--silver-bg); padding:80px 0; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.value-card { background:var(--white); border-radius:10px; padding:1.75rem; text-align:center; border:1px solid var(--silver-light); }
.value-card svg { width:36px; height:36px; fill:var(--blue-dark); margin-bottom:1rem; }
.value-card h4 { margin-bottom:.5rem; }
.value-card p { font-size:.88rem; margin-bottom:0; }

/* === Contact Page === */
.contact-section { padding:80px 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:4rem; align-items:start; }
.contact-info h2 { margin-bottom:.75rem; }
.contact-detail { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem; }
.contact-detail-icon { width:44px; height:44px; background:var(--accent); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-detail-icon svg { width:20px; height:20px; fill:var(--blue-dark); }
.contact-detail h4 { margin-bottom:.15rem; font-size:.92rem; }
.contact-detail p, .contact-detail a { font-size:.9rem; margin-bottom:0; color:var(--text-mid); }
.contact-detail a:hover { color:var(--blue-dark); }

.contact-form-wrap { background:var(--white); border:1px solid var(--silver-light); border-radius:12px; padding:2.5rem; box-shadow:var(--shadow); }
.contact-form-wrap h3 { margin-bottom:1.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.1rem; }
.form-group label { display:block; font-weight:600; font-size:.85rem; color:var(--text-dark); margin-bottom:.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:.7rem 1rem; border:1px solid var(--silver-light);
  border-radius:6px; font-size:.93rem; font-family:inherit;
  color:var(--text-dark); background:var(--white); transition:var(--transition); outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--blue-mid); box-shadow:0 0 0 3px rgba(44,84,148,.1);
}
.form-group textarea { resize:vertical; min-height:115px; }
.form-submit { width:100%; padding:1rem; font-size:.98rem; }
.form-note { font-size:.8rem; color:var(--silver); margin-top:.75rem; text-align:center; margin-bottom:0; }

.alert { padding:.9rem 1.1rem; border-radius:6px; margin-bottom:1rem; font-size:.9rem; display:none; }
.alert.show { display:block; }
.alert-success { background:#e8f5e9; color:#2e7d32; border:1px solid #c8e6c9; }
.alert-error { background:#ffebee; color:#c62828; border:1px solid #ffcdd2; }

/* === Footer === */
footer { background:#0d1f3c; color:rgba(255,255,255,.65); padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:2.5rem; margin-bottom:3rem; }
.footer-brand .brand-logo { height:44px; margin-bottom:.9rem; display:block; background:#fff; border-radius:50%; padding:3px; }
.footer-brand .brand-name { font-size:1.05rem; font-weight:700; color:var(--white); display:block; margin-bottom:.6rem; }
.footer-brand p { font-size:.87rem; color:rgba(255,255,255,.55); margin-bottom:0; }
footer h5 { color:var(--white); font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:1rem; }
footer ul { list-style:none; }
footer ul li { margin-bottom:.45rem; }
footer ul li a { color:rgba(255,255,255,.55); font-size:.87rem; transition:var(--transition); }
footer ul li a:hover { color:var(--white); padding-left:3px; }
.footer-contact p { font-size:.87rem; margin-bottom:.45rem; }
.footer-contact a { color:rgba(255,255,255,.55); }
.footer-contact a:hover { color:var(--white); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07);
  padding:1.2rem 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:.82rem;
}
.footer-bottom a { color:rgba(255,255,255,.4); }
.footer-bottom a:hover { color:var(--white); }

/* === Reusable layout helpers === */
.split-section {
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
}
.industry-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:1rem;
}

/* === Responsive === */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .portfolio-all-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
}
@media (max-width:768px) {
  section { padding:60px 0; }
  .nav-links, .nav-cta { display:none; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:absolute; top:70px; left:0; right:0;
    background:var(--white); box-shadow:0 8px 24px rgba(0,0,0,.1);
    padding:1rem; gap:.1rem; z-index:999;
  }
  .nav-links.open li:last-child { display:block; margin-top:.5rem; }
  .nav-links.open li:last-child a { display:block; text-align:center; }
  .nav-toggle { display:flex; }
  #header { position:sticky; }
  .hero-inner { grid-template-columns:1fr; gap:2rem; }
  .hero-stats { grid-template-columns:1fr 1fr; gap:.85rem; }
  .hero-stat .num { font-size:1.7rem; }
  .hero-trust { flex-wrap:wrap; gap:.4rem; font-size:.78rem; }
  .hero-divider { display:none; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { text-align:center; width:100%; }
  .services-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item .num { font-size:2.2rem; }
  .portfolio-grid { grid-template-columns:1fr; }
  .portfolio-all-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .split-section { grid-template-columns:1fr; gap:2rem; }
  .industry-grid { grid-template-columns:1fr 1fr; gap:.75rem; }
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .service-block { padding:50px 0; }
  .service-block-inner { grid-template-columns:1fr; gap:1.5rem; }
  .service-block:nth-child(even) .service-block-inner { direction:ltr; }
  .service-visual { aspect-ratio:16/9; }
  .filter-bar { gap:.4rem; }
  .filter-btn { font-size:.78rem; padding:.35rem .85rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:1.5rem; }
  .footer-brand { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; gap:.5rem; text-align:center; }
  .cta-actions { flex-direction:column; align-items:center; }
  .cta-actions .btn { width:100%; max-width:320px; text-align:center; }
  .page-header { padding:48px 0; }
  .page-header h1 { font-size:clamp(1.6rem,6vw,2.4rem); }
}
@media (max-width:480px) {
  .container { padding:0 14px; }
  .portfolio-all-grid { grid-template-columns:1fr; }
  .hero-stats { grid-template-columns:1fr 1fr; }
  .hero-stat .num { font-size:1.5rem; }
  .values-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .industry-grid { grid-template-columns:1fr 1fr; }
  .hero { padding:64px 0 56px; }
  h1 { font-size:clamp(1.5rem,7vw,2.2rem); }
}
