/* =========================================================
   ELEVATED MEDIA, LLC — Digital Marketing Website
   Author: Elevated Media
   GDPR-Compliant Front-end Build
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6C2BD9;          /* deep violet */
  --primary-dark: #4A1B9C;
  --accent: #00E0B8;           /* teal-mint */
  --accent-2: #FFB400;         /* warm gold */
  --dark: #0E1024;
  --gray-900: #1A1B3A;
  --gray-700: #3A3D5C;
  --gray-500: #6B6F8A;
  --gray-300: #C7CADB;
  --gray-100: #F4F5FA;
  --white: #ffffff;
  --danger: #E63946;
  --success: #2ECC71;
  --shadow-sm: 0 2px 8px rgba(14,16,36,.06);
  --shadow-md: 0 8px 24px rgba(14,16,36,.10);
  --shadow-lg: 0 20px 50px rgba(14,16,36,.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: .25s ease;
  --max-w: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit; font-size: 1rem;
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,43,217,.15);
}
textarea { min-height: 140px; resize: vertical; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--gray-700); }

/* ---------- Layout ---------- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.muted { color: var(--gray-500); }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .15em;
  color: var(--primary); text-transform: uppercase;
  margin-bottom: .8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(108,43,217,.35);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(0,224,184,.35);
}
.btn-accent:hover { background: #00c9a3; color: var(--dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-block { display: block; width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: .82rem;
  padding: .55rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--gray-300); }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.topbar i { color: var(--accent); margin-right: .35rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; position: relative; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--dark); }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(108,43,217,.35);
}
.logo span em { font-style: normal; color: var(--primary); }
.nav-menu { display: flex; gap: .25rem; align-items: center; }
.nav-menu > li > a {
  padding: .55rem .9rem; border-radius: var(--radius-sm);
  color: var(--gray-900); font-weight: 500; font-size: .95rem;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--primary); background: var(--gray-100); }
.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub > a::after { content: '▾'; margin-left: .35rem; font-size: .7rem; }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: .6rem .8rem; border-radius: var(--radius-sm); color: var(--gray-900); font-size: .9rem; }
.submenu a:hover { background: var(--gray-100); color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: .5rem; }
/* CSS-only mobile nav toggle (checkbox hidden, label visible) */
.nav-cb { display: none; position: absolute; left: -9999px; }
.nav-toggle { display: none; font-size: 1.5rem; color: var(--dark); padding: .5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,224,184,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(108,43,217,.18) 0%, transparent 50%),
    linear-gradient(135deg, #0E1024 0%, #1A1B3A 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero-eyebrow {
  display: inline-block; padding: .4rem 1rem; border-radius: 999px;
  background: rgba(0,224,184,.12); color: var(--accent);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(0,224,184,.3);
  margin-bottom: 1.2rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--font-display); }
.hero-stats .stat span { color: rgba(255,255,255,.7); font-size: .9rem; }
.hero-visual {
  position: relative; aspect-ratio: 1/1; max-width: 460px; margin-left: auto;
  background: linear-gradient(135deg, rgba(108,43,217,.2) 0%, rgba(0,224,184,.15) 100%);
  border-radius: 30px; border: 1px solid rgba(255,255,255,.1);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center;
}
.float-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
  color: var(--white);
}
.float-card .label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.float-card .value { font-size: 1.5rem; font-weight: 800; }
.float-card .value.up { color: var(--accent); }
.fc-1 { transform: translateX(-10%); }
.fc-2 { transform: translateX(10%); }
.fc-3 { transform: translateX(-5%); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--gray-100); padding: 1.5rem 0; border-bottom: 1px solid #ebeaf3; }
.trust-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.trust-bar .label { color: var(--gray-500); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.trust-logos { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; opacity: .65; }
.trust-logos span { font-family: var(--font-display); font-weight: 700; color: var(--gray-700); font-size: 1.1rem; letter-spacing: -.02em; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  padding: 2rem; transition: var(--transition);
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(108,43,217,.25);
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .95rem; }
.card .card-link { color: var(--primary); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem; margin-top: 1rem; }
.card .card-link::after { content: '→'; transition: var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Service cards (taller) */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .card-features { margin-top: 1rem; }
.service-card .card-features li { padding: .35rem 0 .35rem 1.4rem; position: relative; font-size: .9rem; color: var(--gray-700); }
.service-card .card-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,224,184,.15);
}
.cta-strip h2 { color: var(--white); margin-bottom: .6rem; position: relative; }
.cta-strip p { color: rgba(255,255,255,.85); position: relative; }
.cta-strip .btn { position: relative; }

/* ---------- Page header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; right: -150px; top: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,184,.2) 0%, transparent 70%);
}
.page-header h1 { color: var(--white); margin-bottom: 1rem; position: relative; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 700px; position: relative; }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--accent); }

/* ---------- Process ---------- */
.process-step { text-align: center; padding: 1.5rem; }
.process-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 20px rgba(108,43,217,.3);
}
.process-step h3 { margin-bottom: .5rem; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius-md); border: 1px solid var(--gray-100);
  position: relative; transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--accent-2); margin-bottom: 1rem; font-size: 1.05rem; letter-spacing: 2px; }
.review-card .quote { font-size: 1rem; color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.7; position: relative; padding-left: 1.2rem; }
.review-card .quote::before { content: '"'; position: absolute; left: -2px; top: -10px; font-size: 3rem; color: var(--primary); font-family: serif; line-height: 1; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.reviewer-info strong { display: block; color: var(--dark); font-size: .95rem; }
.reviewer-info span { color: var(--gray-500); font-size: .82rem; }
.verified { color: var(--success); font-size: .75rem; font-weight: 600; }
.verified::before { content: '✓ '; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  aspect-ratio: 4/3; cursor: pointer; background: var(--gray-100);
}
.portfolio-item .thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  text-align: center; padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}
.portfolio-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14,16,36,.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; color: var(--white);
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .overlay { opacity: 1; }
.portfolio-item:hover .thumb { transform: scale(1.05); }
.overlay h4 { color: var(--white); margin-bottom: .3rem; }
.overlay span { color: var(--accent); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* Gradient portfolio thumbs */
.thumb-1 { background: linear-gradient(135deg, #6C2BD9 0%, #00E0B8 100%); }
.thumb-2 { background: linear-gradient(135deg, #FFB400 0%, #E63946 100%); }
.thumb-3 { background: linear-gradient(135deg, #0E1024 0%, #6C2BD9 100%); }
.thumb-4 { background: linear-gradient(135deg, #00E0B8 0%, #6C2BD9 100%); }
.thumb-5 { background: linear-gradient(135deg, #E63946 0%, #FFB400 100%); }
.thumb-6 { background: linear-gradient(135deg, #2ECC71 0%, #00E0B8 100%); }
.thumb-7 { background: linear-gradient(135deg, #4A1B9C 0%, #FFB400 100%); }
.thumb-8 { background: linear-gradient(135deg, #1A1B3A 0%, #00E0B8 100%); }
.thumb-9 { background: linear-gradient(135deg, #6C2BD9 0%, #E63946 100%); }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); padding: 2.5rem 2rem;
  text-align: center; transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--primary); transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.pricing-card .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  padding: .3rem 1rem; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
}
.pricing-card .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--dark); margin: 1rem 0 .3rem; }
.pricing-card .price small { font-size: .9rem; color: var(--gray-500); font-weight: 500; }
.pricing-card .price-name { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; }
.pricing-card ul { margin: 1.5rem 0; text-align: left; }
.pricing-card ul li { padding: .5rem 0 .5rem 1.6rem; position: relative; font-size: .92rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.pricing-card ul li.disabled { color: var(--gray-300); }
.pricing-card ul li.disabled::before { content: '×'; color: var(--gray-300); }

/* ---------- FAQ (CSS-only, native <details>) ---------- */
.faq-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); margin-bottom: .8rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item > summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem;
  font-weight: 600; color: var(--dark); text-align: left; font-size: 1rem;
  cursor: pointer; list-style: none; user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ''; }
.faq-item > summary::after {
  content: '+';
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-weight: 700; font-size: 1.2rem;
  transition: var(--transition); flex-shrink: 0;
}
.faq-item[open] > summary::after { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.5rem 1.3rem; color: var(--gray-700); }
.faq-item .faq-answer p { margin: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; margin-bottom: .45rem; font-weight: 500; font-size: .9rem; color: var(--gray-900); }
.form-row label .req { color: var(--danger); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--gray-700); }
.form-consent input { width: auto; margin-top: .25rem; }
.form-message {
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  margin-top: 1rem; display: none;
}
.form-message.success { display: block; background: rgba(46,204,113,.12); color: #1B7B43; border: 1px solid rgba(46,204,113,.3); }
.form-message.error   { display: block; background: rgba(230,57,70,.12);  color: #8B1A24; border: 1px solid rgba(230,57,70,.3); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white); padding: 1.5rem;
  border-radius: var(--radius-md); border: 1px solid var(--gray-100);
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-card .ic {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-card strong { display: block; color: var(--dark); margin-bottom: .25rem; }
.contact-card p, .contact-card a { color: var(--gray-700); font-size: .92rem; word-break: break-word; }
.contact-card a:hover { color: var(--primary); }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem; margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer h4 { color: var(--white); margin-bottom: 1.2rem; font-size: 1rem; }
.footer p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer ul li { margin-bottom: .65rem; }
.footer ul a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer ul a:hover { color: var(--accent); }
.footer .logo { color: var(--white); margin-bottom: 1rem; }
.footer .logo span em { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.65); margin: 0 .4rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Cookie / GDPR Banner (CSS-only checkbox hack) ---------- */
/* Hidden checkbox used to dismiss the banner */
.cookie-cb { display: none; position: absolute; left: -9999px; }
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  z-index: 9999;
  animation: slideUp .4s ease;
}
.cookie-cb:checked ~ .cookie-banner { display: none; }
.cookie-banner h4 { margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.cookie-banner h4::before { content: '🍪'; }
.cookie-banner p { font-size: .88rem; margin-bottom: 1rem; }
.cookie-banner a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie-actions .btn { padding: .6rem 1.1rem; font-size: .85rem; cursor: pointer; }

@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- Legal page styles ---------- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { margin: 2rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gray-100); }
.legal-content h3 { margin: 1.4rem 0 .6rem; color: var(--primary-dark); }
.legal-content p, .legal-content li { margin-bottom: .8rem; color: var(--gray-700); }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content .updated { color: var(--gray-500); font-size: .9rem; font-style: italic; margin-bottom: 2rem; }
.legal-content .callout {
  background: var(--gray-100); border-left: 4px solid var(--primary);
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}
.legal-content .callout strong { color: var(--dark); }

/* ---------- Service detail page ---------- */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.service-sidebar {
  background: var(--gray-100); border-radius: var(--radius-md);
  padding: 1.5rem; position: sticky; top: 100px; align-self: start;
}
.service-sidebar h4 { margin-bottom: 1rem; }
.service-sidebar ul li { margin-bottom: .5rem; }
.service-sidebar ul a { display: block; padding: .55rem .8rem; border-radius: var(--radius-sm); color: var(--gray-900); font-size: .9rem; }
.service-sidebar ul a:hover, .service-sidebar ul a.active { background: var(--white); color: var(--primary); font-weight: 600; }
.service-content h2 { margin: 1.5rem 0 1rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content p, .service-content li { color: var(--gray-700); margin-bottom: 1rem; }
.service-content ul { padding-left: 1.5rem; }
.service-content ul li { list-style: disc; margin-bottom: .5rem; }
.service-content .feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.service-content .feature-list .item {
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 1rem; display: flex; gap: .8rem;
}
.service-content .feature-list .item .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---------- Testimonial badges ---------- */
.badge-strip { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.badge-strip .badge-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.badge-strip .badge-item .star-rating { color: var(--accent-2); }
.badge-strip .badge-item strong { display: block; }
.badge-strip .badge-item span { color: var(--gray-500); font-size: .85rem; }

/* ---------- Animations (CSS-only, no JS needed) ---------- */
.reveal { opacity: 1; transform: none; animation: fadeInUp .7s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero .container, .cta-strip, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  .hero-visual { max-width: 100%; margin: 0; }
  .service-sidebar { position: static; }
  .pricing-card.featured { transform: none; }
  .service-content .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* CSS-only mobile nav using :checked sibling */
  .nav-cb:checked ~ .navbar .nav-menu {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1rem; border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    align-items: stretch; gap: 0;
  }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.5rem; color: var(--dark);
    padding: .5rem .8rem; user-select: none;
  }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1rem; border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    align-items: stretch; gap: 0;
    display: none;
  }
  .nav-menu .submenu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: 1rem; border: none; }
  .nav-cta .btn { display: none; }
  .grid-2, .grid-3, .grid-4, .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 2rem 1.5rem; text-align: center; }
  .section { padding: 3rem 0; }
  .hero-stats { gap: 1.5rem; }
  .topbar .container { font-size: .75rem; }
  .legal-content .feature-list { grid-template-columns: 1fr; }
  .float-card { font-size: .9rem; padding: .8rem; }
}
