/* =============================================
   FixIt Pro — Global Stylesheet
   Aesthetic: Warm Craftsman / Industrial Refined
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --amber:    #E8830A;
  --amber-dk: #C06A04;
  --amber-lt: #FDF0DC;
  --charcoal: #1E1C1A;
  --slate:    #3A3735;
  --stone:    #8C7B6E;
  --cream:    #FAF7F2;
  --white:    #FFFFFF;
  --border:   #E4DDD5;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 2px 24px rgba(30,28,26,.10);
  --shadow-lg: 0 8px 48px rgba(30,28,26,.16);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-amber { color: var(--amber); }
.accent-line {
  display: inline-block;
  width: 48px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: -.5px;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav {
  background: var(--amber);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .3px;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--amber-dk); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.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 nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 0;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav .btn-mobile {
  margin-top: 12px;
  background: var(--amber);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius);
  padding: 14px 28px;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: .2px;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,131,10,.30);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ── HERO ── */
.hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,131,10,.15);
  border: 1px solid rgba(232,131,10,.3);
  color: #F4A94E;
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .4px;
}
.hero-badge::before {
  content: '★';
  color: var(--amber);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
}
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(232,131,10,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-image {
  position: relative;
  align-self: end;
}
.hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px 8px 0 0;
  filter: drop-shadow(0 -8px 32px rgba(0,0,0,.4));
}

/* ── SECTION COMMONS ── */
section { padding: 88px 0; }
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── SERVICES GRID (Homepage) ── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--amber-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-card p { font-size: .9rem; color: var(--stone); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,131,10,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 0;
  border-top: 3px solid var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 240px; }
footer h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
footer ul li { margin-bottom: 10px; }
footer ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
footer ul li a:hover { color: var(--white); }
footer ul li span {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; }
.page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
}

/* ── SERVICES PAGE ── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-content {}
.service-block-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.service-block-content p { color: var(--stone); line-height: 1.75; margin-bottom: 28px; }
.service-list { margin-bottom: 32px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--slate);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--amber-lt);
  color: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.service-block-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-block-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── ABOUT PAGE ── */
.about-story { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.about-text p { color: var(--stone); line-height: 1.8; margin-bottom: 20px; font-size: .97rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(232,131,10,.12);
}
.value-icon { font-size: 1.6rem; margin-bottom: 10px; }
.value-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.value-card p { font-size: .85rem; color: var(--stone); line-height: 1.6; }
.about-image { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* Stats strip */
.stats-strip { background: var(--amber); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* ── PROJECTS PAGE ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-body { padding: 24px; }
.project-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-lt);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.project-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.project-card-body p { font-size: .88rem; color: var(--stone); line-height: 1.65; }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
  position: absolute;
  top: 16px; left: 28px;
  opacity: .4;
}
.testimonial-card blockquote {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 16px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .88rem; color: var(--charcoal); }
.author-stars { color: var(--amber); font-size: .8rem; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info > p { color: var(--stone); line-height: 1.75; margin-bottom: 36px; font-size: .95rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--amber-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3px;
}
.contact-detail-text span { font-size: .92rem; color: var(--charcoal); }

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--charcoal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 7px;
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,131,10,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238C7B6E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .3px;
}
.btn-submit:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,131,10,.30);
}
.form-success {
  display: none;
  background: #EAF7EE;
  border: 1px solid #A3D9A5;
  border-radius: var(--radius);
  padding: 16px;
  color: #2D7F39;
  font-size: .9rem;
  margin-top: 16px;
  text-align: center;
}
.form-success.show { display: block; }

/* ── CAPTCHA ── */
.captcha-group { margin-top: 4px; }
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.captcha-question {
  display: inline-flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 9px 16px;
  border-radius: var(--radius);
  min-width: 130px;
  user-select: none;
  pointer-events: none;
  /* subtle noise to thwart simple OCR */
  text-shadow: 0 0 1px rgba(255,255,255,.3);
}
.captcha-refresh {
  background: var(--amber-lt);
  border: 1px solid var(--border);
  color: var(--amber-dk);
  font-size: 1rem;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.captcha-refresh:hover { background: var(--border); }
.captcha-box input[type="number"] {
  width: 120px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -moz-appearance: textfield;
}
.captcha-box input[type="number"]::-webkit-inner-spin-button,
.captcha-box input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.captcha-box input[type="number"]:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,131,10,.12);
}
.captcha-error {
  display: block;
  font-size: .8rem;
  color: #c0392b;
  margin-top: 5px;
  min-height: 16px;
}

/* ── PAGE TRANSITIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .6s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
.fade-in-1 { animation-delay: .1s; }
.fade-in-2 { animation-delay: .2s; }
.fade-in-3 { animation-delay: .3s; }
.fade-in-4 { animation-delay: .4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 36px; }
  .service-block.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  section { padding: 60px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 56px 0 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-trust { gap: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .page-header { padding: 48px 0; }
  .about-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; }
}
