/* ============================================================
   ROOT & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #2A2A2A;
  --primary-mid:  #3D3D3D;
  --primary-deep: #1A1A1A;
  --accent:       #CC5500;
  --accent-dark:  #A04000;
  --accent-light: rgba(204,85,0,0.1);
  --sage:         #6B8E71;
  --sage-light:   rgba(107,142,113,0.08);
  --bg:           #F9F8F6;
  --bg2:          #F3F0ED;
  --bg3:          #EBE8E3;
  --dark-bg:      #2A2A2A;
  --text:         #2A2A2A;
  --muted:        #6B7280;
  --border:       #E5DDD6;
  --white:        #ffffff;
  --radius:       14px;
  --radius-md:    16px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(42,42,42,0.08);
  --shadow-md:    0 8px 32px rgba(42,42,42,0.12);
  --shadow-lg:    0 20px 60px rgba(42,42,42,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 34px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid var(--accent);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 6px 20px rgba(204,85,0,0.35);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 16px 34px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(42,42,42,0.05);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 18px 42px; font-size: 16px; }
.btn-block { width: 100%; text-align: center; }

/* ============================================================
   COOKIE BANNER & MODAL
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  background: var(--primary);
  color: #fff;
  z-index: 9999;
  padding: 24px 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
}
.cookie-content { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.cookie-content a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 46px;
  max-width: 480px; width: 92%;
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 28px; color: var(--primary); }
.cookie-option { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; color: var(--primary); margin-bottom: 6px;
}
.cookie-option p { font-size: 13px; color: var(--muted); padding-left: 28px; line-height: 1.55; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(42,42,42,0.13);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 36px; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--primary);
  flex-shrink: 0; white-space: nowrap; letter-spacing: -0.02em;
}
.logo-dot { color: var(--accent); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  padding: 9px 15px;
  border-radius: 7px;
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--bg2); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone {
  font-size: 13px; font-weight: 700; color: var(--primary);
  white-space: nowrap;
}
.header-actions .btn-primary { padding: 10px 22px; font-size: 13px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 23px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 32px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.mobile-menu a {
  display: block; padding: 12px 16px;
  font-weight: 600; font-size: 15px;
  border-radius: var(--radius); color: var(--text);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--accent); }
.mobile-menu .btn-primary { margin-top: 12px; text-align: center; display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent-light);
  border: 1px solid rgba(204,85,0,0.3);
  color: var(--accent-dark);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 26px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-left h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}
.hero-accent { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.hstat strong { display: block; font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.hstat span { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; display: block; }
.hstat-divider { width: 1px; height: 48px; background: var(--border); }

/* Calculator Card */
.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.calc-card-header { margin-bottom: 28px; }
.calc-card-header h3 {
  font-size: 19px; font-weight: 800; color: var(--primary); margin-bottom: 5px;
}
.calc-card-header p { font-size: 13px; color: var(--muted); }

.calc-field { margin-bottom: 20px; }
.calc-field label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.calc-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--primary);
  background: var(--bg);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.calc-field select:focus { outline: none; border-color: var(--accent); }

.calc-result-box {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 26px 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.calc-result-box .calc-label {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.calc-result-box .calc-price {
  font-size: 30px; font-weight: 800; color: var(--accent);
}
.calc-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ============================================================
   PORTFOLIO / SHOWCASE
   ============================================================ */
.portfolio {
  padding: 120px 0;
  background: var(--white);
}
.portfolio .section-head { margin-bottom: 72px; }
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.logo-pill {
  padding: 11px 28px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 13px; font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.logo-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.portfolio-image {
  overflow: hidden;
  height: 240px;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-image img {
  transform: scale(1.08);
}
.portfolio-content {
  padding: 28px 24px;
  background: var(--white);
}
.portfolio-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.portfolio-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.portfolio-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
}
.portfolio-link:hover { background-size: 100% 2px; }

/* ============================================================
   SECTION HEADING UTILITY
   ============================================================ */
.section-head { text-align: center; margin-bottom: 72px; }
.section-head p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 18px auto 0; line-height: 1.75; }
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  border: 1px solid rgba(204,85,0,0.3);
  color: var(--accent-dark);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.section-head.light .section-tag {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}
.section-head h2,
.contact-info-col h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800; color: var(--primary);
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,0.68); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--primary);
}
.services .section-head.light { margin-bottom: 72px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 40px 35px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--accent);
}
.service-icon {
  width: 60px; height: 60px;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  margin-bottom: 24px;
}
.service-card h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.service-link {
  font-size: 14px; font-weight: 700; color: var(--accent);
  display: inline-block;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
}
.service-link:hover { background-size: 100% 2px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 120px 0; background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.testi-stars {
  font-size: 14px; color: #FFB800; margin-bottom: 16px; letter-spacing: 2px;
}
.testi-card blockquote {
  font-size: 15px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: var(--primary); }
.testi-author span { font-size: 12px; color: var(--muted); display: block; }

/* ============================================================
   PRICING TIERS
   ============================================================ */
.pricing-tiers {
  padding: 120px 0;
  background: var(--primary);
}
.pricing-tiers .section-head.light { margin-bottom: 72px; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tier-card {
  background: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  position: relative;
  transition: all 0.3s ease;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tier-featured {
  border-color: var(--accent);
  transform: scale(1.02);
}
.tier-featured:hover {
  transform: scale(1.02) translateY(-8px);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.tier-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}
.tier-price .price {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
}
.tier-price .period {
  font-size: 14px;
  color: var(--muted);
}
.tier-features {
  list-style: none;
  margin-bottom: 32px;
}
.tier-features li {
  font-size: 14px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-features li:last-child {
  border-bottom: none;
}
.check-icon {
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 120px 0; background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-col h2 { margin: 18px 0 20px; }
.contact-info-col > p { font-size: 15px; color: var(--muted); margin-bottom: 40px; max-width: 420px; line-height: 1.8; }

.contact-details { margin-bottom: 40px; }
.cd-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.cd-item:last-child {
  margin-bottom: 0;
}
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.cd-item strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 4px;
}
.cd-item span {
  font-size: 14px;
  color: var(--muted);
}
.cd-item a {
  color: var(--accent);
  transition: color 0.2s;
}
.cd-item a:hover {
  color: var(--accent-dark);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.contact-form-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px 40px;
}
.contact-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-policy {
  margin-bottom: 24px;
}
.policy-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.6;
}
.policy-label input {
  margin-top: 2px;
  cursor: pointer;
}
.policy-label a {
  color: var(--accent);
  text-decoration: underline;
}
.policy-label a:hover {
  color: var(--accent-dark);
}

.form-success {
  display: none;
  background: rgba(204,85,0,0.1);
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 16px;
}
.form-success.show {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-col {
  padding-right: 24px;
}
.footer-logo-row {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom-inner p {
  color: rgba(255,255,255,0.6);
}
.cookie-pref-btn {
  background: transparent;
  color: var(--accent);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.cookie-pref-btn:hover {
  color: #fff;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .header-inner { gap: 16px; height: 64px; }
  .main-nav { display: none; }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }

  .portfolio-grid,
  .services-grid,
  .testi-grid,
  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
