/* ============================================================
   Banana Construction Ltd — Shared Styles
   styles.css
   ============================================================ */

/* ── Variables — DaNeW Brand ── */
:root {
  --accent: #34C1EA;
  --accent-light: #5DD2F0;
  --navy: #153963;
  --dark: #0E1E33;
  --darker: #0A1628;
  --slate: #162A45;
  --concrete: #1E3654;
  --text: #E2EAF2;
  --text-muted: #8A9BB5;
  --cream: #F0F5FA;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ── Noise Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-icon::after {
  content: '';
  width: 18px; height: 18px;
  border: 3px solid var(--dark);
  border-radius: 2px;
  transform: rotate(45deg);
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 1px;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; color: var(--dark) !important; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Shared Section ── */
section, .page-section { padding: 120px 48px; position: relative; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,193,234,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--concrete);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--accent);
  padding: 18px 44px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 48px 80px;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(var(--slate) 0% 25%, transparent 0% 50%) 0 0 / 60px 60px;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* ── Hero (Home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.8) 50%, rgba(10,22,40,0.6) 100%),
    repeating-conic-gradient(var(--slate) 0% 25%, transparent 0% 50%) 0 0 / 60px 60px;
}

.hero-accent {
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(52,193,234,0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero-line {
  position: absolute;
  left: 48px; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-left: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-tag::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── About Section (Home) ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--dark);
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-image {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--slate) 0%, var(--concrete) 100%);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(52,193,234,0.06) 39px, rgba(52,193,234,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(52,193,234,0.06) 39px, rgba(52,193,234,0.06) 40px);
}

.about-image-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;        /* hides anything that overflows */
}

.about-image-inner svg {
  width: 120px; height: 120px;
  opacity: 0.15;
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops to fill without stretching */
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-badge .number {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--dark);
  line-height: 1;
}

.about-badge .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.about-feature::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

/* ── Services Grid ── */
.services-section { background: var(--darker); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

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

.service-card {
  background: var(--dark);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--slate); transform: translateY(-4px); }

/* Unify image tones with the DaNeW brand */
.service-detail-visual img,
.work-image img,
.about-image-inner img {
  filter: brightness(0.8) saturate(0.85) contrast(1.05);
  transition: filter 0.4s;
}

.service-detail-visual:hover img,
.work-card:hover .work-image img {
  filter: brightness(0.9) saturate(1) contrast(1.05);
}

.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--concrete);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: var(--accent); }

.service-name {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Services Detail (services.html) ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 48px;
  border-bottom: 1px solid var(--slate);
}

.service-detail:nth-child(even) { background: var(--dark); }
.service-detail:nth-child(odd) { background: var(--darker); }

.service-detail-visual {
  height: 360px;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(52,193,234,0.04) 20px, rgba(52,193,234,0.04) 21px);
}

.service-detail-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-detail-content ul {
  list-style: none;
  margin: 20px 0 28px;
}

.service-detail-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
}

.service-detail-content ul li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

/* ── Work / Projects Grid ── */
.work-section { background: var(--dark); }

.work-header {
  text-align: center;
  margin-bottom: 80px;
}

.work-header .section-desc { margin: 0 auto; }

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

.work-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.work-card.featured {
  grid-column: span 2;
}

.work-image {
  width: 100%; height: 100%;
  background: var(--slate);
  position: relative;
  transition: transform 0.6s;
}

.work-card:hover .work-image { transform: scale(1.05); }

.work-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(52,193,234,0.03) 20px, rgba(52,193,234,0.03) 21px);
}

.work-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 32px;
  background: linear-gradient(0deg, rgba(10,22,40,0.95) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s;
}

.work-card:hover .work-overlay {
  transform: translateY(0);
  opacity: 1;
}

.work-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--cream);
}

.work-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Testimonial ── */
.testimonial {
  background: var(--darker);
  text-align: center;
  padding: 140px 48px;
  position: relative;
}

.testimonial::before,
.testimonial::after {
  content: '';
  position: absolute;
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  left: 50%;
  transform: translateX(-50%);
}

.testimonial::before { top: 0; }
.testimonial::after { bottom: 0; }

.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 20px;
}

.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 32px;
}

.quote-author {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.quote-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,0,0,0.05) 79px, rgba(0,0,0,0.05) 80px);
}

.cta-content { position: relative; z-index: 2; }
.cta-band .section-tag { color: var(--dark); }
.cta-band .section-tag::before { background: var(--dark); }
.cta-band .section-title { color: var(--dark); margin-bottom: 16px; }

.cta-desc {
  font-size: 18px;
  color: rgba(26,26,26,0.7);
  margin-bottom: 40px;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--darker);
}

.contact-info-card {
  background: var(--slate);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.contact-info-card:hover { background: var(--concrete); }

.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px; height: 20px;
  color: var(--dark);
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--cream);
}

.contact-info-value a {
  color: var(--cream);
  text-decoration: none;
}

.contact-info-value a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--slate);
  border: 1px solid var(--concrete);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-group select { cursor: pointer; appearance: none; }

/* ── Footer ── */
footer {
  background: var(--darker);
  padding: 80px 48px 40px;
  border-top: 1px solid var(--slate);
}

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

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--slate);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.featured { grid-column: span 1; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .service-detail-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    flex-direction: column;
    background: var(--darker);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--slate);
  }
  .nav-links.mobile-open { display: flex; }
  .hamburger { display: flex; }
  section, .page-section { padding: 80px 24px; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero h1 { font-size: 42px; }
  .hero-content { padding-left: 0; }
  .hero-line { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero-buttons { flex-direction: column; }
  .about-visual { height: 300px; }
  .about-badge { bottom: -20px; right: auto; left: 20px; width: 100px; height: 100px; }
  .about-badge .number { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card.featured { height: 280px; }
  .work-overlay { opacity: 1; transform: translateY(0); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial { padding: 80px 24px; }
  .cta-band { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { padding: 60px 24px; }
}
