/* =============================================
   CoVA Creative - Main Stylesheet
   Colors: #3692ED (primary blue), #FFFF00 (accent yellow)
   ============================================= */

:root {
  --primary: #3692ED;
  --primary-dark: #1a7fd4;
  --primary-light: #e8f3fd;
  --accent: #FFD700;
  --accent-dark: #CCA800;
  --text-dark: #0d1117;
  --text-body: #374151;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 6px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-body); background: var(--bg-white); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; color: var(--text-dark); }
h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
p { color: var(--text-body); }

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

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-cta-primary {
  background: var(--accent); color: #000; border-color: var(--accent); font-weight: 700;
}
.btn-cta-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #000; }
.btn-cta-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-text { color: var(--primary); font-weight: 600; background: none; border: none; cursor: pointer; }
.btn-text:hover { color: var(--primary-dark); text-decoration: underline; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.82rem; }
.btn-danger { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }

/* Account approvals */
.user-actions { display: flex; gap: 0.5rem; }
.user-actions form { margin: 0; }
.status-pending { background: #fef3c7; color: #92400e; }
.nav-badge {
  display: inline-block; min-width: 18px; padding: 0 5px; margin-left: auto;
  background: var(--accent); color: #000; font-size: 0.72rem; font-weight: 700;
  line-height: 18px; text-align: center; border-radius: 9px;
}

/* === NAVBAR === */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex; align-items: center; gap: 1rem;
  height: 70px;
}
.nav-brand {
  text-decoration: none; flex-shrink: 0; display: inline-flex; align-items: center;
}
.logo-img { height: 40px; width: auto; display: block; }
.logo-auth { height: 56px; }
.brand-cova { color: var(--primary); }
.brand-creative { color: var(--text-dark); }

.nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  color: var(--text-body); font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  transition: all 0.15s; display: flex; align-items: center; gap: 0.3rem;
  cursor: pointer; text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.btn-portal {
  background: var(--primary-light); color: var(--primary); font-weight: 600;
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 0.4rem;
}
.btn-portal:hover { background: var(--primary); color: #fff; }
.nav-cta { margin-left: 0.5rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 0.55rem 0.85rem; color: var(--text-body);
  border-radius: var(--radius-sm); font-size: 0.9rem; transition: all 0.15s;
}
.dropdown li a:hover { background: var(--primary-light); color: var(--primary); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text-dark);
  transition: all 0.3s; display: block; border-radius: 2px;
}

/* === SECTIONS === */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 600px; margin: 1rem auto 0; color: var(--text-muted); font-size: 1.05rem; }
.section-badge {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1rem;
}

/* === HERO === */
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero {
  background: linear-gradient(135deg, #0d1b3e, #1044a8, #3692ED, #1044a8);
  background-size: 300% 300%;
  animation: gradientFlow 10s ease infinite;
  position: relative; overflow: hidden;
  padding: 5rem 0 6rem;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%; opacity: 0.06;
}
.shape-1 { width: 600px; height: 600px; background: #fff; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -150px; left: -100px; }
.shape-3 { width: 250px; height: 250px; background: #fff; top: 50%; left: 40%; }

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1.1rem 0.45rem 0.6rem;
  border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  animation: badgeFadeIn 0.6s ease both;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFFF00;
  box-shadow: 0 0 6px 2px rgba(255,255,0,0.5);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-text h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-text h1 .text-accent { color: var(--accent); }
.hero-text > p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-ctas .btn-primary { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 700; }
.hero-ctas .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #000; }
.hero-ctas .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,0.1); }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; }
.trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero Logo */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo {
  width: 100%; max-width: 460px; height: auto; display: block;
  animation: logoReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(0.72) translateY(32px); filter: blur(12px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1044a8 60%, #3692ED 100%);
  padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(54,146,237,0.15) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }

/* === SERVICES GRID === */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  padding: 2rem; background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.25s; cursor: pointer;
  text-decoration: none; display: flex; flex-direction: column; gap: 0.75rem;
}
.service-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 56px; height: 56px; background: var(--primary-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--primary);
}
.service-card h3 { color: var(--text-dark); }
.service-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.card-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

.services-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-detail-card {
  padding: 2rem; background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.25s; text-decoration: none;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.service-detail-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.service-icon-lg {
  width: 72px; height: 72px; background: var(--primary-light);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--primary); margin-bottom: 0.5rem;
}
.service-detail-card h3 { color: var(--text-dark); }
.service-detail-card p { color: var(--text-muted); font-size: 0.93rem; flex: 1; }
.services-cta { text-align: center; padding: 3rem 0 0; }
.services-cta h2 { margin-bottom: 1rem; }
.services-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* === PRICING (used on service pages) === */
.pricing-section { background: var(--bg-light); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start;
}
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.featured {
  background: linear-gradient(160deg, #0d1b3e 0%, #1a5fa8 100%); border-color: #1a5fa8; color: #fff;
  transform: scale(1.03); box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; padding: 0.25rem 1rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.6); }
.plan-price {
  font-size: 1.5rem; font-weight: 600; color: var(--text-body); margin: 0.5rem 0 0.75rem; line-height: 1.3;
}
.plan-price .from {
  display: block; font-size: 0.75rem; font-weight: 400; font-style: normal;
  color: var(--text-muted); margin-bottom: 0.1rem; letter-spacing: 0.02em;
}
.plan-price span:first-of-type { font-size: 0.95rem; vertical-align: super; }
.plan-price span:last-of-type { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.pricing-card.featured .plan-price { color: rgba(255,255,255,0.9); }
.pricing-card.featured .plan-price .from { color: rgba(255,255,255,0.5); }
.pricing-card.featured .plan-price span:last-of-type { color: rgba(255,255,255,0.55); }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.65); }
.plan-features { margin-bottom: 1.75rem; }
.plan-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; padding: 0.4rem 0; color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.1); }
.custom-card { border-style: dashed; }
.pricing-disclaimer { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 1.5rem; }

/* === OUTCOMES === */
.outcomes-section { background: var(--bg-light); }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
}
.outcome-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.outcome-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.outcome-card--featured {
  background: linear-gradient(145deg, #0d1b3e 0%, #1044a8 60%, #2060c0 100%);
  border-color: #1044a8; color: #fff;
}
.outcome-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, #e8f0fe, #c5d8fc);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 1.25rem;
}
.outcome-card--featured .outcome-icon {
  background: rgba(255,255,255,0.12); color: #fff;
}
.outcome-card h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem;
}
.outcome-card--featured h3 { color: #fff; }
.outcome-tagline {
  font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.5rem;
  font-style: italic;
}
.outcome-card--featured .outcome-tagline { color: rgba(255,255,255,0.65); }
.outcome-list {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.outcome-list li {
  font-size: 0.9rem; color: var(--text-body);
  padding-left: 1.4rem; position: relative;
}
.outcome-list li::before {
  content: ''; position: absolute; left: 0; top: 0.45em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.outcome-card--featured .outcome-list li { color: rgba(255,255,255,0.85); }
.outcome-card--featured .outcome-list li::before { background: #7eb8ff; }
.outcome-edge {
  font-size: 0.8rem; font-weight: 600;
  color: var(--primary); border-top: 1px solid var(--border);
  padding-top: 1rem; margin-top: auto;
}
.outcome-card--featured .outcome-edge {
  color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.15);
}
.outcomes-cta {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; padding-top: 3rem;
}

/* === WHY SECTION === */
.why-section { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-content .section-badge { margin-bottom: 1rem; display: inline-block; }
.why-content h2 { margin-bottom: 1.5rem; }
.why-content > p { color: var(--text-muted); margin-bottom: 2.5rem; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; background: var(--primary-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--primary); flex-shrink: 0;
}
.why-point h4 { margin-bottom: 0.25rem; }
.why-point p { font-size: 0.9rem; color: var(--text-muted); }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
}
.stat-box.accent { background: var(--primary); border-color: var(--primary); }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-number span { font-size: 1.5rem; }
.stat-box.accent .stat-number { color: #fff; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; font-weight: 500; }
.stat-box.accent .stat-label { color: rgba(255,255,255,0.8); }

/* === PROCESS === */
.process-section { background: linear-gradient(135deg, #0d1b3e 0%, #1044a8 100%); }
.process-section .section-header .section-badge { background: rgba(54,146,237,0.2); }
.process-section .section-header h2 { color: #fff; }
.process-section .section-header p { color: rgba(255,255,255,0.65); }
.process-steps {
  display: flex; gap: 1rem; align-items: flex-start;
  flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 200px; padding: 2rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.step-number {
  font-size: 3rem; font-weight: 900; color: var(--accent); opacity: 0.8;
  line-height: 1; margin-bottom: 1rem;
}
.process-step h3 { color: #fff; margin-bottom: 0.75rem; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.process-arrow { color: rgba(255,255,255,0.3); font-size: 1.5rem; margin-top: 3.5rem; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* === CTA SECTION === */
/* === CTA === */
.cta-section { background: var(--bg-light); }
.cta-box {
  background: linear-gradient(120deg, #0d1b3e, #1044a8, #3692ED, #1a5fa8, #0d1b3e);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  border-radius: 20px; padding: 4rem; text-align: center; overflow: hidden; position: relative;
}
.cta-box::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  top: -200px; right: -100px;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.8); max-width: 550px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-image-box {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder { text-align: center; color: var(--text-muted); }
.about-img-placeholder p { margin-top: 0.75rem; font-size: 0.9rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); }

/* === FEATURES GRID === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.feature-item {
  padding: 2rem; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-item h3 { margin-bottom: 0.75rem; color: var(--primary); }
.feature-item p { font-size: 0.92rem; color: var(--text-muted); }

/* === DISCOVERY WIZARD === */
.discovery-section { background: var(--bg-light); }

/* Step bubbles */
.wiz-stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem; flex-wrap: nowrap;
}
.wiz-step-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  flex-shrink: 0;
}
.wiz-step-item span {
  font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
  white-space: nowrap; transition: color 0.2s;
}
.wiz-bubble {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; transition: all 0.25s;
}
.wiz-step-item.active .wiz-bubble { background: var(--primary); color: #fff; }
.wiz-step-item.active span { color: var(--primary); font-weight: 700; }
.wiz-step-item.done .wiz-bubble { background: #22c55e; color: #fff; }
.wiz-step-item.done span { color: #22c55e; }
.wiz-connector {
  flex: 1; height: 2px; background: var(--border);
  min-width: 24px; max-width: 60px; margin-bottom: 1.4rem; transition: background 0.3s;
}
.wiz-connector.done { background: #22c55e; }

/* Card shell */
.wiz-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-md);
  overflow: hidden;
}
.wiz-panel { display: none; }
.wiz-panel.active { display: block; }
.wiz-panel-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.wiz-panel-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.wiz-panel-header p { color: var(--text-muted); margin: 0; }
.wiz-body { padding: 2rem 2.5rem; display: flex; flex-direction: column; gap: 2rem; }

/* Full-width option rows */
.wiz-option-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.wiz-option-row {
  display: flex; align-items: center; gap: 1rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 0.9rem 1.25rem; cursor: pointer;
  transition: border-color 0.15s, background 0.15s; user-select: none;
  background: #fff;
}
.wiz-option-row:hover { border-color: var(--primary); background: #f5f8ff; }
.wiz-option-row:has(input:checked) { border-color: var(--primary); background: #eef3ff; }
.wiz-option-row input[type="radio"] { accent-color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.wiz-option-content { display: flex; flex-direction: column; gap: 0.1rem; }
.wiz-option-content strong { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }
.wiz-option-content span { font-size: 0.82rem; color: var(--text-muted); }
.wiz-option-row:has(input:checked) .wiz-option-content strong { color: var(--primary); }

/* Checkbox grid */
.wiz-check-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 0.5rem;
}
.wiz-check-card {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 0.85rem 1.1rem; cursor: pointer;
  transition: border-color 0.15s, background 0.15s; user-select: none;
  font-size: 0.9rem; font-weight: 500; color: var(--text-body);
  background: #fff;
}
.wiz-check-card:hover { border-color: var(--primary); background: #f5f8ff; }
.wiz-check-card:has(input:checked) { border-color: var(--primary); background: #eef3ff; color: var(--primary); font-weight: 600; }
.wiz-check-card input[type="checkbox"] { accent-color: var(--primary); width: 17px; height: 17px; flex-shrink: 0; }

/* Footer nav */
.wiz-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem; border-top: 1px solid var(--border);
  background: var(--bg-light);
}

/* Success */
.wizard-success {
  text-align: center; padding: 5rem 2rem; max-width: 560px; margin: 0 auto;
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.wizard-success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: #eef3ff; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.wizard-success h2 { margin-bottom: 0.75rem; }
.wizard-success p { color: var(--text-muted); }
.req { color: #e53e3e; }
.form-control-lg { font-size: 1rem; padding: 0.8rem 1rem; }

@media (max-width: 640px) {
  .wiz-stepper { gap: 0; }
  .wiz-connector { min-width: 12px; }
  .wiz-step-item span { display: none; }
  .wiz-panel-header { padding: 1.5rem; }
  .wiz-body { padding: 1.5rem; }
  .wiz-footer { padding: 1.25rem 1.5rem; }
  .wiz-check-grid { grid-template-columns: 1fr; }
}

/* === CONTACT === */
.contact-section { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-weight: 500; font-size: 0.9rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.95rem;
  color: var(--text-dark); background: #fff; transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(54,146,237,0.1);
}
.form-group input:disabled { background: var(--bg-light); }
.form-group small { font-size: 0.8rem; color: var(--text-muted); }
.form-group textarea { resize: vertical; }
.form-actions { display: flex; gap: 1rem; align-items: center; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; background: var(--primary-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.95rem; }
.contact-cta-box {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; margin-top: 2rem;
}
.contact-cta-box h3 { margin-bottom: 0.5rem; }
.contact-cta-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }

/* === ALERTS === */
.alert {
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  margin-bottom: 1.5rem; font-size: 0.92rem; font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* === AUTH === */
.auth-section {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); padding: 2rem;
}
.auth-container { width: 100%; max-width: 520px; }
.auth-brand { text-align: center; margin-bottom: 2rem; }
.auth-brand .nav-brand { display: inline-flex; }
.auth-brand p { color: var(--text-muted); font-size: 0.9rem; }
.auth-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-md);
}
.auth-card h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.auth-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 2rem; }
.auth-form { }
.auth-footer { text-align: center; padding-top: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }
.auth-back { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.auth-back a { color: var(--text-muted); }
.demo-credentials {
  margin-top: 1.5rem; padding: 0.85rem; background: var(--bg-light);
  border-radius: var(--radius-sm); font-size: 0.8rem; color: var(--text-muted);
  border: 1px solid var(--border); line-height: 1.9;
}
.demo-credentials code {
  background: var(--border); padding: 0.15rem 0.4rem;
  border-radius: 3px; font-size: 0.78rem;
}

/* === PORTAL === */
.portal-layout { display: flex; min-height: 100vh; }
.portal-sidebar {
  width: 260px; background: linear-gradient(180deg, #0d1b3e 0%, #1044a8 100%); display: flex; flex-direction: column;
  flex-shrink: 0; position: sticky; top: 70px; height: calc(100vh - 70px);
  overflow-y: auto;
}
.portal-brand {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.portal-brand .nav-brand { display: inline-flex; }
.portal-brand .logo-img { height: 36px; }
.portal-label {
  display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 0.25rem;
}
.portal-menu { flex: 1; padding: 1rem 0; }
.portal-menu li a, .portal-logout-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.25rem; color: rgba(255,255,255,0.65);
  font-size: 0.9rem; font-weight: 500; transition: all 0.15s;
  cursor: pointer; text-decoration: none; width: 100%;
  background: none; border: none; font-family: var(--font);
}
.portal-menu li a:hover, .portal-logout-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.portal-menu li a.active { background: var(--primary); color: #fff; }
.portal-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 1rem; }
.portal-logout-btn { color: rgba(255,100,100,0.8); }
.portal-logout-btn:hover { color: #ff6b6b; background: rgba(255,100,100,0.1); }
.portal-user-info {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.portal-avatar {
  width: 36px; height: 36px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.portal-user-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.portal-user-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.portal-main { flex: 1; padding: 2rem; background: var(--bg-light); min-width: 0; }
.portal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.portal-header h1 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.portal-header p { color: var(--text-muted); font-size: 0.92rem; }

.portal-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
}
.stat-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-card-icon.open { background: #fef3c7; color: #d97706; }
.stat-card-icon.in-progress { background: var(--primary-light); color: var(--primary); }
.stat-card-icon.resolved { background: #d1fae5; color: #059669; }
.stat-card-icon.total { background: #f3f4f6; color: var(--text-muted); }
.stat-card-number { font-size: 1.75rem; font-weight: 800; color: var(--text-dark); }
.stat-card-label { font-size: 0.8rem; color: var(--text-muted); }

.portal-section {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; margin-bottom: 1.5rem;
}
.portal-section h2 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.portal-section-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem;
}

/* Tickets Table */
.tickets-table { overflow-x: auto; }
.tickets-table table { width: 100%; border-collapse: collapse; }
.tickets-table th {
  text-align: left; font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.75rem 1rem; border-bottom: 2px solid var(--border);
}
.tickets-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.tickets-table tr:last-child td { border-bottom: none; }
.tickets-table tr:hover td { background: var(--bg-light); }
.ticket-subject { font-weight: 500; max-width: 300px; }
.ticket-date { color: var(--text-muted); font-size: 0.82rem; white-space: nowrap; }
.tickets-table code { font-size: 0.82rem; background: var(--bg-light); padding: 0.2rem 0.4rem; border-radius: 3px; }

/* Status & Tags */
.status-badge {
  display: inline-flex; align-items: center; padding: 0.25rem 0.65rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: capitalize;
}
.status-open { background: #fef3c7; color: #92400e; }
.status-in-progress { background: var(--primary-light); color: var(--primary-dark); }
.status-resolved { background: #d1fae5; color: #065f46; }
.status-closed { background: var(--bg-light); color: var(--text-muted); }

.tag {
  display: inline-flex; align-items: center; padding: 0.2rem 0.55rem;
  border-radius: 4px; font-size: 0.75rem; font-weight: 500; text-transform: capitalize;
}
.tag-category { background: var(--bg-light); color: var(--text-muted); }
.priority-low { background: #f0fdf4; color: #166534; }
.priority-medium { background: #fef9c3; color: #854d0e; }
.priority-high { background: #fff1f2; color: #be123c; }
.priority-urgent { background: #ff0000; color: #fff; }

/* Ticket Filters */
.ticket-filters {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding: 1rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.ticket-filters select { padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.88rem; }

/* Ticket Detail */
.ticket-meta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-top: 0.75rem; }
.ticket-client-info {
  background: var(--primary-light); color: var(--primary-dark); padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.9rem;
}
.ticket-actions { display: flex; gap: 0.75rem; }
.breadcrumb-portal { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.breadcrumb-portal a { color: var(--primary); }

.ticket-thread { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.message {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem;
}
.original-message { border-left: 4px solid var(--primary); }
.staff-message { border-left: 4px solid var(--accent); background: #fffef0; }
.client-message { border-left: 4px solid var(--border); }
.message-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.message-avatar {
  width: 36px; height: 36px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.staff-avatar { background: #d97706; }
.message-info { flex: 1; }
.message-info strong { display: block; font-size: 0.9rem; }
.message-time { font-size: 0.78rem; color: var(--text-muted); }
.staff-badge {
  display: inline-block; background: #fef3c7; color: #92400e;
  padding: 0.1rem 0.5rem; border-radius: 3px; font-size: 0.72rem; font-weight: 600;
  margin-left: 0.4rem;
}
.message-tag { margin-left: auto; font-size: 0.75rem; color: var(--text-muted); background: var(--bg-light); padding: 0.2rem 0.5rem; border-radius: 3px; }
.message-body { font-size: 0.93rem; line-height: 1.75; color: var(--text-body); white-space: pre-wrap; }

.ticket-reply-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem;
}
.ticket-reply-form h3 { margin-bottom: 1.25rem; }
.ticket-closed-notice {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center; color: var(--text-muted); font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.quick-action {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.25rem; background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-body); font-size: 0.85rem;
  font-weight: 500; transition: all 0.2s; text-decoration: none; text-align: center;
}
.quick-action:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.quick-action svg { color: var(--primary); }

/* Empty State */
.empty-state {
  text-align: center; padding: 4rem 2rem;
}
.empty-state h3 { margin: 1rem 0 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Profile */
.profile-avatar-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}
.profile-avatar-large {
  width: 72px; height: 72px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.75rem; flex-shrink: 0;
}
.profile-avatar-row h2 { margin-bottom: 0.25rem; }
.profile-avatar-row p { color: var(--text-muted); }
.profile-danger-zone { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.profile-danger-zone h3 { margin-bottom: 1rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: all 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-category {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 0.2rem 0.65rem; border-radius: 3px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card h2 { font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card h2 a { color: var(--text-dark); }
.blog-card h2 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); }

/* Blog Post */
.blog-post { max-width: 780px; margin: 0 auto; }
.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-header .blog-category { font-size: 0.8rem; }
.blog-post-header h1 { font-size: 2rem; line-height: 1.25; margin: 0.75rem 0 1rem; }
.blog-post-meta { font-size: 0.85rem; color: var(--text-muted); display: flex; gap: 1rem; flex-wrap: wrap; }
.blog-post-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.blog-post-body { font-size: 1rem; line-height: 1.8; color: var(--text-body); }
.blog-post-body h2 { font-size: 1.35rem; font-weight: 700; color: var(--text-dark); margin: 2.25rem 0 0.75rem; }
.blog-post-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin: 1.75rem 0 0.5rem; }
.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 1.25rem 1.5rem; }
.blog-post-body li { margin-bottom: 0.5rem; }
.blog-post-body strong { color: var(--text-dark); }
.blog-post-body .callout {
  background: var(--primary-light); border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem; margin: 1.75rem 0; font-size: 0.95rem;
}
.blog-post-cta {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; margin-top: 3rem; text-align: center;
}
.blog-post-cta h3 { margin-bottom: 0.5rem; }
.blog-post-cta p { color: var(--text-muted); margin-bottom: 1.25rem; }
.blog-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.blog-back:hover { color: var(--primary); }

/* FAQ */
.faq-list { margin-bottom: 3rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.25rem; font-weight: 600; cursor: pointer;
  background: #fff; font-size: 0.95rem;
  border-bottom: 1px solid transparent; transition: all 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-answer {
  padding: 1.1rem 1.25rem; background: var(--bg-light);
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.7;
}

/* Cities */
.cities-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.city-tag {
  background: var(--primary-light); color: var(--primary);
  padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
}

/* Error Page */
.error-code { font-size: 8rem; font-weight: 900; color: var(--primary); opacity: 0.3; line-height: 1; }

/* === FOOTER === */
.footer { background: linear-gradient(135deg, #0d1b3e 0%, #0a1530 100%); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-brand .logo-img { height: 48px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 280px; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.25rem; }
.footer-col ul { }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.contact-list li { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 0.75rem; }
.contact-list svg { color: var(--primary); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-screenshot-wrap { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-stats { grid-template-columns: repeat(2, 1fr); }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 1rem;
    box-shadow: var(--shadow-md); gap: 0.25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--bg-light);
    display: none;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { display: none; }
  .portal-sidebar { display: none; }
  .portal-layout { flex-direction: column; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .portal-stats { grid-template-columns: 1fr 1fr; }
  .ticket-actions { flex-direction: column; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  color: #1a1a2e;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-decline {
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  color: #1a1a2e;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.cookie-decline:hover {
  border-color: rgba(0,0,0,0.5);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
}
