/* =============================================
   PROFITECH — Main CSS v2.0 (Builduce Style)
   Global Marketing IT
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap&subset=latin,latin-ext');

:root {
  --dark:    #1C2127;
  --dark2:   #111419;
  --dark3:   #0D1014;
  --card:    #23282F;
  --card2:   #2a2f38;
  --red:    #C04A3A;
  --red2:   #9E3A2D;
  --white:   #ffffff;
  --muted:   #8a98a8;
  --border:  rgba(255,255,255,0.08);
  --radius:  4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 30px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
}

/* ─── SECTION LABEL ─── */
.sec-label {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: 14px;
}
.sec-label::before {
  content: ''; display: block;
  width: 36px; height: 3px; background: var(--red);
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 18px;
}
.sec-title span { color: var(--red); }
.sec-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.75; max-width: 600px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .25s; border: none; letter-spacing: .5px;
  text-transform: uppercase;
}
.btn-primary { background: var(--red); color: #000; }
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-dark { background: var(--dark3); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; background: var(--dark3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-topbar {
  background: var(--red); height: 4px; width: 100%;
}
.nav-main {
  height: 76px; display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: 40px;
}
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px; transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  padding: 11px 28px !important;
  font-size: 13px !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; z-index: 1600; position: relative;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100vh;
  background: var(--dark3); z-index: 1500;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white);
}
.mobile-menu a:hover { color: var(--red); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--dark3);
  display: flex; flex-direction: column;
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero-body {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.hero-left {
  padding: 80px 60px 80px 0;
  position: relative; z-index: 2;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--red); margin-bottom: 22px;
}
.hero-label::before { content: ''; width: 36px; height: 3px; background: var(--red); }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.0;
  color: var(--white); margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-title span { color: var(--red); }
.hero-sub {
  font-size: 17px; color: var(--muted);
  max-width: 520px; line-height: 1.75; margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right {
  position: relative; align-self: stretch;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  min-height: 600px;
  background: url('https://developer-globalmarketingit.ro/proiecte/profitech/wp-content/themes/tema-custom/assets/images/sectional1.jpg') center/cover;
  position: relative;
}
.hero-img::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 180px;
  background: linear-gradient(to right, var(--dark3), transparent);
  z-index: 1;
}
.hero-red-bar {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 6px; background: var(--red); z-index: 2;
}
/* Hero stats strip */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--dark2); border-top: 3px solid var(--red);
}
.hero-stat {
  padding: 28px 36px; border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 16px; text-align: left;
}
.hero-stat:last-child { border-right: none; }
.hs-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1;
}
.hs-label { font-size: 14px; color: var(--muted); font-weight: 500; line-height: 1.35; }

/* ─── ABOUT ─── */
.about-section {
  padding: 110px 0; background: var(--dark);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border: 4px solid transparent;
}
.about-img-overlay {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red); padding: 24px 30px;
  text-align: center;
}
.aio-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem; font-weight: 900; color: #000; line-height: 1;
}
.aio-text { font-size: 13px; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 1px; }
.about-check-list {
  display: flex; flex-direction: column; gap: 14px; margin: 26px 0 34px;
}
.acl-item { display: flex; align-items: flex-start; gap: 14px; }
.acl-check {
  width: 22px; height: 22px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.acl-check svg { width: 13px; height: 13px; fill: #000; }
.acl-text { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ─── SERVICES ─── */
.services-section {
  padding: 110px 0; background: var(--dark2);
}
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 54px; flex-wrap: wrap; gap: 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  background: var(--dark); border: 1px solid var(--border);
  padding: 36px 30px; position: relative;
  transition: all .3s; cursor: pointer;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform .3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.svc-icon-box {
  width: 60px; height: 60px;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon-box svg { width: 28px; height: 28px; fill: var(--red); }
.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--white); margin-bottom: 12px;
}
.svc-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--red); transition: gap .2s;
}
.svc-link:hover { gap: 14px; }
.svc-link svg { width: 14px; height: 14px; fill: var(--red); }

/* ─── STATS ─── */
.stats-section { background: var(--red); padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem; font-weight: 900;
  color: #000; line-height: 1;
}
.stat-label {
  font-size: 14px; color: rgba(0,0,0,0.65);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; margin-top: 6px;
}

/* ─── PROJECTS / GALLERY ─── */
.gallery-section { padding: 110px 0; background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px; margin-top: 54px;
}
.g-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.g-item.g-tall  { grid-row: span 2; }
.g-item.g-wide  { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s;
}
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,20,25,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 24px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; color: var(--white);
}
.g-overlay-cat { font-size: 13px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ─── WHY CHOOSE US ─── */
.why-section { padding: 110px 0; background: var(--dark2); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-img {
  position: relative;
}
.why-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.why-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--red); padding: 18px 22px; text-align: center;
}
.wb-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 900; color: #000; line-height: 1;
}
.wb-text { font-size: 12px; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: 1px; }
.why-features { display: flex; flex-direction: column; gap: 0; }
.why-feat {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.why-feat:first-child { padding-top: 0; }
.why-feat:last-child  { border-bottom: none; }
.wf-icon {
  width: 50px; height: 50px; background: rgba(255,198,41,0.1);
  border: 1px solid rgba(255,198,41,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wf-icon svg { width: 24px; height: 24px; fill: var(--red); }
.wf-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.wf-text  { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testi-section { padding: 110px 0; background: var(--dark3); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 54px;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 36px 30px; position: relative;
}
.testi-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 6rem; font-weight: 900;
  color: var(--red); line-height: .7;
  margin-bottom: 14px; opacity: .4;
}
.testi-text { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.ta-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--card2); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--red);
}
.ta-name  { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; }
.ta-role  { font-size: 13px; color: var(--muted); font-weight: 500; }
.testi-stars {
  position: absolute; top: 30px; right: 30px;
  color: var(--red); font-size: 16px; letter-spacing: 2px;
}

/* ─── CTA BAND ─── */
.cta-band { background: var(--red); padding: 90px 0; }
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: #000; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 10px;
}
.cta-text p { font-size: 17px; color: rgba(0,0,0,0.65); max-width: 520px; }
.cta-btns  { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--dark3);
  padding: 140px 0 60px;
  border-bottom: 3px solid var(--red);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  top: 0; right: 0; bottom: 0; width: 40%;
  background: url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?w=800&q=60&auto=format&fit=crop') center/cover;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 20px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--border); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero .lead { font-size: 18px; color: var(--muted); max-width: 600px; line-height: 1.7; }

/* ─── PRODUCT PAGE ─── */
.product-intro { padding: 90px 0; background: var(--dark); }
.prod-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.prod-gallery-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 3px solid var(--border);
}
.prod-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 10px;
}
.prod-thumbs img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  cursor: pointer; opacity: .65; transition: opacity .2s;
  border: 2px solid transparent;
}
.prod-thumbs img:hover,
.prod-thumbs img.active { opacity: 1; border-color: var(--red); }
.prod-info .sec-label { margin-bottom: 10px; }
.prod-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 900;
  text-transform: uppercase; margin-bottom: 16px;
}
.prod-info p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.prod-features {
  display: flex; flex-direction: column; gap: 12px; margin: 24px 0 30px;
}
.pf-item { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.pf-dot { width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }

/* Product gallery grid */
.prod-gallery { padding: 80px 0; background: var(--dark2); }
.pgal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 12px; margin-top: 48px;
}
.pgal-item { overflow: hidden; }
.pgal-item.g-tall  { grid-row: span 2; }
.pgal-item.g-wide  { grid-column: span 2; }
.pgal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pgal-item:hover img { transform: scale(1.04); }

/* ─── CONTACT PAGE ─── */
.contact-page { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; }
.c-info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 900;
  text-transform: uppercase; margin-bottom: 30px;
}
.c-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.c-icon-box {
  width: 50px; height: 50px; background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon-box svg { width: 22px; height: 22px; fill: #000; }
.c-lbl { font-size: 12px; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.c-val { font-size: 16px; color: var(--white); }
.c-val a { color: var(--white); transition: color .2s; }
.c-val a:hover { color: var(--red); }
.contact-form-box {
  background: var(--card); padding: 44px;
  border-top: 3px solid var(--red);
}
.contact-form-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 900;
  text-transform: uppercase; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding: 13px 16px; font-size: 16px; color: var(--white);
  font-family: 'Barlow', sans-serif; outline: none; transition: border-color .2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--red); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { margin-top: 14px; font-size: 15px; font-weight: 600; display: none; text-transform: uppercase; letter-spacing: .5px; }
.form-msg.success { color: #4ade80; display: block; }
.form-msg.error   { color: #f87171; display: block; }

/* ─── FOOTER ─── */
#footer {
  background: var(--dark3); padding: 80px 0 30px;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900;
  text-transform: uppercase; color: var(--white);
  letter-spacing: 1px; margin-bottom: 8px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 2px; font-weight: 600; margin-bottom: 18px;
}
.footer-brand p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 15px; color: var(--muted);
  transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: '›'; color: var(--red); font-size: 18px; font-weight: 700;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 14px; color: var(--muted); }
.footer-copy a { color: var(--red); }

/* ─── WP BAR ─── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left  { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-grid   { grid-template-columns: 1fr; gap: 50px; }
  .prod-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .g-tall { grid-row: span 1; }
  .gallery-grid .g-wide { grid-column: span 1; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns  { justify-content: center; }
  .form-row  { grid-template-columns: 1fr; }
  .pgal-grid { grid-template-columns: 1fr 1fr; }
  .pgal-item.g-tall { grid-row: span 1; }
  .pgal-item.g-wide { grid-column: span 1; }
}
