/* ============================================
   HOMEWATCHWEBDESIGN.COM — MAIN STYLESHEET
   Version: 1.0.0
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2176ff;
  --blue-dark: #1558cc;
  --dark: #28282b;
  --navy: #0d111e;
  --white: #ffffff;
  --off: #f5f6f8;
  --text: #3d3d40;
}

html { scroll-behavior: smooth; }
body { font-family: 'Work Sans', sans-serif; background: #fff; color: var(--text); overflow-x: clip; }

/* ── UTILITIES ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--blue); flex-shrink: 0; }
.sec-h { font-size: clamp(32px,5vw,60px); font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -2px; margin-bottom: 24px; }
.sec-h em { color: var(--blue); font-style: normal; }
.sec-h-dark { color: var(--dark); }
.sec-h-white { color: #fff; }
.sec-white { background: #fff; padding: 96px 0; }
.sec-dark { background: var(--navy); padding: 96px 0; }
.sec-off { background: var(--off); padding: 96px 0; }

.btn { display: inline-block; font-family: 'Work Sans', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; padding: 18px 44px; border-radius: 6px; transition: transform .2s, box-shadow .2s, background .2s; border: none; cursor: pointer; }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 44px rgba(33,118,255,.35); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 20px 54px rgba(33,118,255,.5); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1a1f33; transform: translateY(-3px); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: #fff; color: #fff; }

/* ── OFF-CANVAS ── */
.overlay { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; flex-direction: column; transform: translateX(-100%); transition: transform .45s cubic-bezier(.77,0,.175,1); overflow-y: auto; pointer-events: none; visibility: hidden; }
.overlay.open { transform: translateX(0); pointer-events: auto; visibility: visible; }
.overlay-close { position: fixed; top: 24px; right: 28px; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; z-index: 99999; transition: background .2s, transform .3s; -webkit-appearance: none; }
.overlay-close:hover { background: var(--blue); transform: rotate(90deg); }
.overlay-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 100%; padding: 80px 48px 60px; gap: 48px; align-items: center; }
.overlay-nav { list-style: none; }
.overlay-nav > li { border-bottom: 1px solid rgba(255,255,255,.07); }
.overlay-nav > li > a { display: block; font-size: 22px; font-weight: 800; text-transform: uppercase; color: #fff; text-decoration: none; padding: 13px 0; transition: color .15s, padding-left .15s; }
.overlay-nav > li > a:hover { color: var(--blue); padding-left: 8px; }
.overlay-right { display: flex; flex-direction: column; align-items: flex-start; border-left: 1px solid rgba(255,255,255,.08); padding-left: 48px; }
.overlay-phone { display: block; font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -1.5px; margin-bottom: 20px; }
.overlay-phone:hover { color: var(--blue); }
.overlay-divider { width: 48px; height: 3px; background: var(--blue); border-radius: 2px; margin-bottom: 24px; }
.overlay-cta-note { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.45); margin-bottom: 20px; line-height: 1.5; }

/* ── NAV ── */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 9000; background: rgba(13,17,30,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; height: 72px; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-tel { font-size: 18px; font-weight: 800; color: #fff; text-decoration: none; white-space: nowrap; }
.nav-tel:hover { color: var(--blue); }
.burger { background: none; border: 2px solid rgba(255,255,255,.3); border-radius: 6px; padding: 8px 10px; cursor: pointer; display: flex; flex-direction: column; gap: 5px; -webkit-appearance: none; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.burger:hover span { background: var(--blue); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; background: var(--navy); padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(33,118,255,.15) 0%, transparent 65%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(33,118,255,.12); border: 1px solid rgba(33,118,255,.3); border-radius: 4px; padding: 6px 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--blue); margin-bottom: 32px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(44px,7vw,96px); font-weight: 900; text-transform: uppercase; line-height: .9; letter-spacing: -3px; color: #fff; margin-bottom: 28px; }
.hero h1 em { color: var(--blue); font-style: normal; display: block; }
.hero-sub { font-size: clamp(16px,2vw,20px); font-weight: 500; color: rgba(255,255,255,.55); max-width: 580px; line-height: 1.7; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 72px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.hero-stat-num { font-size: 48px; font-weight: 900; color: var(--blue); letter-spacing: -2px; line-height: 1; }
.hero-stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ── CARDS ── */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.diff-card { background: #fff; border-radius: 12px; padding: 36px; border: 1px solid #e8e8ea; border-top: 4px solid var(--blue); }
.diff-card h3 { font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.diff-card p { font-size: 15px; color: #666; line-height: 1.7; }

/* ── INCLUDED ── */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.included-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; }
.included-check { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.included-check svg { width: 12px; height: 12px; }
.included-item h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.included-item p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── PORTFOLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.portfolio-card { border-radius: 10px; overflow: hidden; border: 1px solid #e5e5e8; transition: transform .2s, box-shadow .2s; text-decoration: none; display: block; }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.portfolio-card-img { background: var(--off); height: 200px; overflow: hidden; }
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.portfolio-card-body { padding: 20px 24px; }
.portfolio-card-body h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.portfolio-card-body p { font-size: 13px; color: #888; }
.portfolio-card-body span { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--blue), rgba(33,118,255,.1)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-step h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: #666; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 32px; }
.testimonial-stars { color: #f5a623; font-size: 16px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 14px; font-weight: 700; color: #fff; }
.testimonial-company { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; max-width: 800px; margin-left: auto; margin-right: auto; }
.pricing-card { background: var(--off); border-radius: 12px; padding: 40px; border: 1px solid #e5e5e8; border-top: 4px solid var(--blue); }
.pricing-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #888; margin-bottom: 8px; }
.pricing-amount { font-size: 52px; font-weight: 900; color: var(--blue); letter-spacing: -2px; line-height: 1; }
.pricing-period { font-size: 14px; font-weight: 600; color: #888; margin-bottom: 20px; }
.pricing-card p { font-size: 15px; color: #666; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid #e5e5e8; padding: 24px 0; }
.faq-item h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.faq-item p { font-size: 15px; color: #666; line-height: 1.7; }

/* ── CTA ── */
.cta-section { background: var(--navy); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(33,118,255,.15) 0%, transparent 65%); pointer-events: none; }
.cta-section .sec-h { color: #fff; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,.55); margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.btn-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; margin-top: 56px; }
.contact-info h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 16px; font-weight: 600; color: var(--dark); text-decoration: none; }
.contact-detail:hover { color: var(--blue); }
.hwd-form .form-field { margin-bottom: 20px; }
.hwd-form label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--dark); margin-bottom: 8px; }
.hwd-form input, .hwd-form select, .hwd-form textarea { font-family: 'Work Sans', sans-serif; font-size: 16px; color: var(--dark); background: #fff; border: 1.5px solid #dde0e8; border-radius: 8px; padding: 14px 18px; width: 100%; outline: none; -webkit-appearance: none; transition: border-color .2s, box-shadow .2s; box-sizing: border-box; }
.hwd-form input:focus, .hwd-form select:focus, .hwd-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(33,118,255,.12); }
.hwd-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.hwd-form-submit { font-family: 'Work Sans', sans-serif; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; background: var(--blue); color: #fff; border: none; border-radius: 6px; padding: 20px 54px; cursor: pointer; width: 100%; box-shadow: 0 8px 44px rgba(33,118,255,.35); transition: transform .2s, background .2s; -webkit-appearance: none; }
.hwd-form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer { background: #080b14; padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand img { height: 36px; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; }
.footer-links a:hover { color: var(--blue); }
.footer-phone { display: block; font-size: 22px; font-weight: 800; color: #fff; text-decoration: none; margin-bottom: 10px; }
.footer-loc { display: block; font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 10px; }
.footer-email { display: block; font-size: 13px; color: var(--blue); text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-tel { display: none !important; }
  .diff-grid, .testimonial-grid, .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .included-grid, .portfolio-grid, .pricing-grid { grid-template-columns: 1fr; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .overlay-inner { grid-template-columns: 1fr; padding: 80px 24px 40px; }
  .overlay-right { display: none; }
  .sec-white, .sec-dark, .sec-off { padding: 64px 0; }
  .hero-stats { gap: 28px; }
}
