/* PoweredByVinay - 100% Robust Mobile Responsive & Minimalist Architecture */
:root {
  --bg: #09090b;
  --bg-darker: #060608;
  --bg-glass: rgba(18, 18, 22, 0.75);
  --bg-card: rgba(24, 24, 28, 0.65);
  
  --text-main: #fcfaf7;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  
  --accent: #d99b5b;
  --accent-hover: #c48645;
  --accent-glow: rgba(217, 155, 91, 0.22);
  --accent-light: #f3d4b3;
  
  --border: rgba(217, 155, 91, 0.28);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.05);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'Space Mono', monospace;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glass: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Strict Box Model & Zero Overflow Guarantee */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* Texture Overlays */
.film-grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(9, 9, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* Safe Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 10;
}

/* Glass Surface */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glass);
  border-radius: 14px;
}

.glass:hover {
  border-color: var(--border);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #120e09;
  box-shadow: 0 2px 16px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

.full-btn {
  width: 100%;
}

/* Section Header */
.section-header {
  margin-bottom: 2.75rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(217, 155, 91, 0.1);
  border: 1px solid rgba(217, 155, 91, 0.25);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Header & Navbar */
.navbar-wrap {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 1rem;
}

.navbar {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-prefix {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  font-size: 0.825rem;
  padding: 0.5rem 1.1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.25rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 4.75rem;
  left: 1rem;
  right: 1rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 0.9rem;
  transform: translateY(-15px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

/* Hero Section */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 3.5rem;
  position: relative;
}

.hero-container {
  max-width: 840px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.subheadline {
  font-size: clamp(0.975rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 720px;
}

.subheadline strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.813rem;
  color: var(--text-muted);
}

.trust-item i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* Marquee */
.marquee-strip {
  background: rgba(217, 155, 91, 0.04);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About Section */
.about {
  padding: 5.5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
}

.about-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.about-text {
  font-size: 0.925rem;
  margin-bottom: 1.75rem;
}

.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.skill-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  font-size: 0.775rem;
  color: var(--text-muted);
}

.skill-pill i {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

.agency-banner {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: rgba(217, 155, 91, 0.06);
  border: 1px solid rgba(217, 155, 91, 0.2);
}

.agency-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
}

.agency-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.agency-text strong {
  font-size: 0.9rem;
  color: var(--text-main);
}

.agency-text span {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.agency-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.775rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-card {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Works Section */
.works {
  padding: 5.5rem 0;
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.project-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.25rem;
  align-items: center;
}

.project-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.project-desc {
  font-size: 0.925rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.tag-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.tag-badges span {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  color: var(--text-muted);
}

.project-btn {
  align-self: flex-start;
}

.project-preview {
  width: 100%;
  min-width: 0;
}

.device-mockup {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-glass);
  gap: 0.35rem;
}

.dot-red { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; }
.dot-yellow { width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; }
.dot-green { width: 7px; height: 7px; border-radius: 50%; background: #10b981; }

.mockup-url {
  margin-left: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ──────────────────────────────────────────
   INTERACTIVE ESTIMATOR CALCULATOR (PERFECTED)
   ────────────────────────────────────────── */
.estimator-section {
  padding: 5.5rem 0;
}

.estimator-card {
  padding: 2.75rem;
}

.estimator-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.estimator-options {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.option-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-title {
  font-size: 0.775rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
}

.type-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.chip-item {
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.chip-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.chip-item span {
  font-size: 0.725rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.chip-item.active {
  background: rgba(217, 155, 91, 0.12);
  border-color: var(--accent);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.check-box-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.825rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.check-box-pill:hover {
  border-color: var(--accent);
}

.check-box-pill input {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
}

.estimator-result {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(217, 155, 91, 0.3);
  min-width: 0;
}

.result-header {
  margin-bottom: 1.25rem;
}

.result-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.result-details {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.result-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.row-label {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  text-transform: uppercase;
  color: var(--text-dim);
}

.result-row strong {
  font-size: 1.05rem;
  color: var(--text-main);
}

.calc-time {
  color: var(--accent) !important;
  font-size: 1.25rem !important;
}

.row-value {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.calc-btn {
  font-size: 0.9rem;
  padding: 0.85rem;
}

.calc-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  color: var(--text-dim);
  margin-top: 0.65rem;
  text-align: center;
}

.calc-note i {
  width: 12px;
  height: 12px;
}

/* Services */
.services {
  padding: 5.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.813rem;
  color: var(--text-muted);
}

.service-list li i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* Testimonial Section */
.testimonial-section {
  padding: 3.5rem 0 4.5rem;
}

.testimonial-card {
  padding: 3rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.quote-symbol {
  display: inline-flex;
  margin-bottom: 1rem;
}

.quote-symbol i {
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0.8;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.author-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-info strong {
  color: var(--text-main);
  font-size: 0.9rem;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Contact Section (Bulletproof No-Overflow) */
.contact {
  padding: 5.5rem 0 7.5rem;
}

.contact-box {
  padding: 2.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.contact-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-left h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.3rem);
  margin-bottom: 0.65rem;
}

.contact-left p {
  font-size: 0.925rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateX(3px);
  border-color: var(--accent);
}

.channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.wa-bg {
  background: rgba(217, 155, 91, 0.15);
  color: var(--accent);
}

.channel-icon.mail-bg {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.channel-icon i {
  width: 17px;
  height: 17px;
}

.channel-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.channel-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-val {
  font-size: clamp(0.825rem, 2.8vw, 0.925rem);
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.channel-arrow {
  margin-left: auto;
  width: 15px;
  height: 15px;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  padding: 2rem;
  min-width: 0;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.input-field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.input-field input, .input-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
}

.input-field input:focus, .input-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(217, 155, 91, 0.05);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-info p {
  font-size: 0.8rem;
  margin-top: 0.15rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-copy {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.sub-credit {
  display: block;
  margin-top: 0.15rem;
}

.sub-credit a {
  color: var(--accent);
  text-decoration: none;
}

/* ──────────────────────────────────────────
   PRECISION RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .project-box, .estimator-grid, .contact-box {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav */
  .nav-links, .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .navbar-wrap {
    top: 0.75rem;
    padding: 0 0.75rem;
  }
  .navbar {
    padding: 0.55rem 1rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 6.25rem 0 2.5rem;
  }
  .headline {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .subheadline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .hero-actions .btn-primary, .hero-actions .btn-secondary {
    width: 100%;
  }
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Universal Container Padding */
  .container {
    padding: 0 1rem;
  }

  /* All Cards Mobile Padding */
  .about-card, .project-box, .estimator-card, .contact-box {
    padding: 1.4rem 1.15rem;
  }
  .testimonial-card {
    padding: 2rem 1.15rem;
  }
  .contact-form {
    padding: 1.25rem 1rem;
  }
  
  /* Grids Stack */
  .services-grid, .type-chips {
    grid-template-columns: 1fr;
  }

  .project-name {
    font-size: 1.4rem;
  }
  .project-btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.85rem;
  }
  .about-lead {
    font-size: 1.05rem;
  }
  .testimonial-quote {
    font-size: 1.1rem;
  }
  .channel-card {
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }
  .channel-icon {
    width: 34px;
    height: 34px;
  }
}
