/* ============================================
   SMARDEIN — Main Stylesheet
   Glassmorphic Precision Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --navy-deep: #14193A;
  --navy-mid: #202A5E;
  --accent: #5D70D6;
  --lavender: #EAEBFC;
  --cyan: #7DD8F8;
  --violet: #9B7FFF;
  --white: #FFFFFF;
  --glass-bg: rgba(32, 42, 94, 0.4);
  --glass-border: rgba(93, 112, 214, 0.25);
  --glass-blur: blur(16px);
  --glow: 0 0 24px rgba(93, 112, 214, 0.35);
  --glow-strong: 0 0 40px rgba(93, 112, 214, 0.5);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--lavender);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}

h4,
h5,
h6,
p,
span,
a,
li,
label,
input,
textarea,
select,
button {
  font-family: var(--font-body);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

p {
  color: var(--lavender);
  line-height: 1.75;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-sm {
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

/* === GLASS COMPONENTS === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.glass-card {
  background: rgba(20, 25, 58, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(93, 112, 214, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  border-color: rgba(93, 112, 214, 0.5);
  box-shadow: var(--glow);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(93, 112, 214, 0);
}

.btn-primary:hover {
  background: #6B80E0;
  color: var(--white);
  box-shadow: 0 0 24px rgba(93, 112, 214, 0.6), 0 4px 20px rgba(93, 112, 214, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--lavender);
  border: 1px solid rgba(93, 112, 214, 0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 16px rgba(93, 112, 214, 0.3);
  transform: translateY(-1px);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
  margin-top: 12px;
}

.nav.scrolled {
  background: rgba(20, 25, 58, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(93, 112, 214, 0.2), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--lavender);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  margin-left: 16px;
  padding: 8px 20px;
  /* ← controls size (was 14px 32px from .btn) */
  font-size: 0.82rem;
  /* ← controls text size */
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--lavender);
  transition: all var(--transition);
}

/* Full-screen mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 25, 58, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--lavender);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--white);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--lavender);
  font-size: 2rem;
  cursor: pointer;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announcement-bar-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: top;
  display: block;
  opacity: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 112, 214, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 127, 255, 0.1) 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding-top: 80px;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-overline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  font-weight: 600;
}

.hero-italic {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--cyan);
  display: block;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--lavender);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(234, 235, 252, 0.5);
}

.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(93, 112, 214, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* === SECTION LABELS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* === AUTHORITY STRIP === */
.authority-strip {
  background: rgba(32, 42, 94, 0.5);
  border-top: 1px solid rgba(93, 112, 214, 0.15);
  border-bottom: 1px solid rgba(93, 112, 214, 0.15);
  backdrop-filter: blur(10px);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.authority-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.authority-strip-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(234, 235, 252, 0.5);
  margin-right: 8px;
}

.authority-item {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--lavender);
  padding: 6px 16px;
  border: 1px solid rgba(93, 112, 214, 0.2);
  border-radius: 2px;
  transition: border-color var(--transition);
}

.authority-item:hover {
  border-color: rgba(93, 112, 214, 0.5);
}

.authority-dot {
  color: rgba(93, 112, 214, 0.4);
  font-size: 0.5rem;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--violet));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(93, 112, 214, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.4rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(93, 112, 214, 0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* === SELECTED WORK === */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(93, 112, 214, 0.2);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  border-color: rgba(93, 112, 214, 0.5);
  box-shadow: var(--glow);
}

.work-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card-img {
  transform: scale(1.03);
}

.work-card-body {
  padding: 28px;
  background: rgba(20, 25, 58, 0.9);
}

.work-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(93, 112, 214, 0.15);
  border: 1px solid rgba(93, 112, 214, 0.3);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.work-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.work-card-body p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.work-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.work-link:hover {
  color: var(--cyan);
  gap: 10px;
}

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  padding: 36px;
  position: relative;
}

.process-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(93, 112, 214, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.process-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* === CLOSING CTA === */
.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(93, 112, 214, 0.12) 0%, transparent 70%);
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 1px;
}

/* === FOOTER === */
.footer {
  background: rgb(20, 25, 58);
  border-top: 1px solid rgba(93, 112, 214, 0.15);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(93, 112, 214, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 12px rgba(93, 112, 214, 0.3);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--lavender);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity var(--transition), color var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-contact-email {
  font-size: 0.95rem;
  color: var(--cyan);
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}

.footer-contact-line {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(93, 112, 214, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  opacity: 0.45;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--lavender);
  opacity: 0.45;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 160px 0 12px;
}

.about-story {
  padding: 48px 0;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-two-col.reversed {
  direction: rtl;
}

.about-two-col.reversed>* {
  direction: ltr;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(93, 112, 214, 0.2);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
  opacity: 0.85;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.belief-card {
  padding: 36px 28px;
  text-align: center;
}

.belief-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}

/* === PORTFOLIO PAGE === */
.portfolio-header {
  padding: 140px 0 60px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(93, 112, 214, 0.25);
  border-radius: var(--radius);
  color: var(--lavender);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--white);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 20px rgba(93, 112, 214, 0.4);
}

.filter-count {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 0.72rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(93, 112, 214, 0.15);
  cursor: pointer;
  transition: all var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(93, 112, 214, 0.5);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.portfolio-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.05);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 25, 58, 0.95) 40%, rgba(20, 25, 58, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 58, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 24px;
  text-align: center;
}

.portfolio-card:hover .portfolio-hover-overlay {
  opacity: 1;
}

.discipline-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.badge-web {
  background: rgba(125, 216, 248, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(125, 216, 248, 0.3);
}

.badge-brand {
  background: rgba(93, 112, 214, 0.15);
  color: var(--accent);
  border: 1px solid rgba(93, 112, 214, 0.3);
}

.badge-graphic {
  background: rgba(155, 127, 255, 0.15);
  color: var(--violet);
  border: 1px solid rgba(155, 127, 255, 0.3);
}

.portfolio-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-card-industry {
  font-size: 0.8rem;
  color: var(--lavender);
  opacity: 0.65;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 25, 58, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--navy-deep);
  border: 1px solid rgba(93, 112, 214, 0.3);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid rgba(93, 112, 214, 0.3);
  border-radius: 4px;
  color: var(--lavender);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--white);
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-body {
  padding: 40px;
}

.modal-body .work-badge {
  margin-bottom: 16px;
}

.modal-body h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.modal-industry {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 32px;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section h4 {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.modal-section p {
  opacity: 0.85;
  font-size: 0.95rem;
}

.modal-outcome {
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: rgba(93, 112, 214, 0.08);
  border-radius: 0 4px 4px 0;
}

/* === BLOG PAGE === */
.blog-header {
  padding: 140px 0 60px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(93, 112, 214, 0.2);
  margin-bottom: 60px;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.featured-post:hover {
  border-color: rgba(93, 112, 214, 0.5);
  box-shadow: var(--glow);
}

.featured-post-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.featured-post-body {
  padding: 48px 40px;
  background: rgba(20, 25, 58, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(93, 112, 214, 0.15);
  border: 1px solid rgba(93, 112, 214, 0.3);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.featured-post-body h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.featured-post-body p {
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.post-meta {
  font-size: 0.78rem;
  opacity: 0.5;
}

.post-meta strong {
  opacity: 0.8;
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(93, 112, 214, 0.15);
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(93, 112, 214, 0.45);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 1238/739;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 28px;
  background: rgba(20, 25, 58, 0.9);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin: 12px 0 10px;
  color: var(--white);
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* === BLOG POST === */
.post-header {
  padding: 140px 0 60px;
  max-width: 800px;
}

.post-featured-img {
  display: block;
  width: 50%;
  max-width: 600px;
  aspect-ratio: 217/92;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  border: 1px solid rgba(93, 112, 214, 0.2);
}

.post-body {
  max-width: 720px;
  margin: 0;
}

.post-body h2 {
  font-size: 1.8rem;
  margin: 48px 0 16px;
  color: var(--white);
}

.post-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--white);
}

.post-body p {
  margin-bottom: 20px;
  opacity: 0.85;
  font-size: 1rem;
}

.post-body ul,
.post-body ol {
  margin: 16px 0 24px 24px;
}

.post-body li {
  margin-bottom: 8px;
  opacity: 0.85;
  font-size: 0.95rem;
}

.post-body ul li {
  list-style: disc;
}

.post-body ol li {
  list-style: decimal;
}

.post-cta {
  margin: 60px 0;
  padding: 40px;
  text-align: center;
}

.post-cta h3 {
  margin-bottom: 12px;
}

.post-cta p {
  margin-bottom: 24px;
  opacity: 0.75;
}

.related-posts {
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* === BLOG POST 70/30 LAYOUT === */
.post-layout {
  margin-top: 0;
}

.post-content-main {
  min-width: 0;
}

.post-layout .post-featured-img {
  margin-bottom: 40px;
}

/* === SHARE BUTTONS === */
.post-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(93, 112, 214, 0.15);
}

.post-share-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(234, 235, 252, 0.5);
  margin-bottom: 16px;
}

.post-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.share-facebook {
  background: rgba(24, 119, 242, 0.15);
  color: #5b9de1;
  border-color: rgba(24, 119, 242, 0.25);
}

.share-facebook:hover {
  background: rgba(24, 119, 242, 0.3);
  color: #fff;
}

.share-tumblr {
  background: rgba(52, 93, 138, 0.15);
  color: #7faacc;
  border-color: rgba(52, 93, 138, 0.25);
}

.share-tumblr:hover {
  background: rgba(52, 93, 138, 0.3);
  color: #fff;
}

.share-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #4bd17a;
  border-color: rgba(37, 211, 102, 0.25);
}

.share-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  color: #fff;
}

.share-x {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lavender);
  border-color: rgba(255, 255, 255, 0.12);
}

.share-x:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.share-linkedin {
  background: rgba(10, 102, 194, 0.15);
  color: #6db0e0;
  border-color: rgba(10, 102, 194, 0.25);
}

.share-linkedin:hover {
  background: rgba(10, 102, 194, 0.3);
  color: #fff;
}

/* === MOBILE: collapse share buttons === */
@media (max-width: 900px) {
  .post-featured-img {
    width: 100%;
    aspect-ratio: 1238/739;
  }

  .post-share-buttons {
    gap: 8px;
  }

  .share-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}


/* === CONTACT PAGE === */
.contact-header {
  padding: 140px 0 60px;
}

.pricing-section {
  padding: 80px 0;
  background: rgba(32, 42, 94, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.pricing-card {
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--violet));
}

.pricing-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(234, 235, 252, 0.5);
  display: block;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-service {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--white);
}

.pricing-desc {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 16px;
}

.pricing-callout {
  padding: 24px 32px;
  background: rgba(93, 112, 214, 0.08);
  border: 1px solid rgba(93, 112, 214, 0.2);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 32px;
}

/* Service Cards */
.services-select-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.service-toggle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.service-toggle-card {
  padding: 20px 16px;
  border: 1px solid rgba(93, 112, 214, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: rgba(20, 25, 58, 0.5);
  position: relative;
}

.service-toggle-card:hover {
  border-color: rgba(93, 112, 214, 0.5);
  background: rgba(93, 112, 214, 0.08);
}

.service-toggle-card.selected {
  border-color: var(--accent);
  background: rgba(93, 112, 214, 0.12);
  box-shadow: 0 0 16px rgba(93, 112, 214, 0.25);
}

.service-toggle-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.75rem;
  color: var(--accent);
}

.service-toggle-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.service-toggle-desc {
  font-size: 0.78rem;
  opacity: 0.6;
}

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--lavender);
  margin-bottom: 8px;
  opacity: 0.8;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(20, 25, 58, 0.8);
  border: 1px solid rgba(93, 112, 214, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(93, 112, 214, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(234, 235, 252, 0.35);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-deep);
}

.form-submit-area {
  text-align: left;
}

.form-note {
  font-size: 0.78rem;
  opacity: 0.45;
  margin-top: 12px;
}

.what-next {
  position: sticky;
  top: 100px;
}

.what-next h3 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.next-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.next-step-num {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(93, 112, 214, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.next-step-body h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.next-step-body p {
  font-size: 0.83rem;
  opacity: 0.6;
}

.contact-fallback {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(93, 112, 214, 0.1);
  font-size: 0.85rem;
  opacity: 0.6;
}

.contact-fallback a {
  color: var(--cyan);
}

/* === LEGAL PAGE === */
.legal-header {
  padding: 140px 0 60px;
}

.legal-body {
  padding: 0 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-toc {
  padding: 32px;
  margin-bottom: 60px;
}

.legal-toc h4 {
  margin-bottom: 16px;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc ul li a {
  font-size: 0.9rem;
  color: var(--lavender);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity var(--transition);
}

.legal-toc ul li a:hover {
  opacity: 1;
  color: var(--cyan);
}

.legal-part {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(93, 112, 214, 0.1);
}

.legal-part:last-child {
  border-bottom: none;
}

.legal-part-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.legal-part h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.legal-part .legal-subtitle {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--lavender);
  opacity: 0.6;
  margin-bottom: 40px;
  display: block;
}

.legal-article {
  margin-bottom: 40px;
}

.legal-article h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.legal-article p {
  opacity: 0.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.legal-article ul {
  margin: 12px 0 16px 20px;
}

.legal-article ul li {
  list-style: disc;
  margin-bottom: 8px;
  opacity: 0.8;
  font-size: 0.95rem;
}

.legal-callout {
  padding: 24px 28px;
  background: rgba(93, 112, 214, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* === 404 PAGE === */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.not-found-num {
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(93, 112, 214, 0.15);
  display: block;
  margin-bottom: 16px;
}

.not-found h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.not-found p {
  max-width: 500px;
  opacity: 0.7;
  margin-bottom: 40px;
}

.not-found-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* === MAINTENANCE PAGE === */
.maintenance {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.maintenance-pulse {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(93, 112, 214, 0.4);
  border-radius: 50%;
  margin: 32px auto;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.maintenance-pulse::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(93, 112, 214, 0.3);
  animation: pulse 2s ease-in-out infinite 0.3s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 112, 214, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-toggle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .what-next {
    position: static;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-two-col.reversed {
    direction: ltr;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post-img {
    min-height: 280px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .beliefs-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .services-grid,
  .work-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-toggle-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .not-found-num {
    font-size: 6rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 24px;
  }
}

@media (max-width: 480px) {

  .pricing-grid,
  .service-toggle-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .not-found-btns {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .authority-dot {
    display: none;
  }

  .authority-strip-label {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* About page — services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* === ABOUT PAGE — redesigned sections (no images) === */

.about-story-full {
  max-width: 780px;
}

.about-story-full h2 {
  margin: 12px 0 32px;
  line-height: 1.2;
}

.about-story-body p {
  margin-bottom: 20px;
  opacity: 0.85;
  line-height: 1.8;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid rgba(93, 112, 214, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(93, 112, 214, 0.12);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 24px;
  background: rgba(20, 25, 58, 0.6);
  gap: 8px;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.5px;
}

.about-stat-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Values list */
.about-values {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(93, 112, 214, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(20, 25, 58, 0.5);
  border-bottom: 1px solid rgba(93, 112, 214, 0.12);
  transition: background 0.2s;
}

.about-value-item:last-child {
  border-bottom: none;
}

.about-value-item:hover {
  background: rgba(93, 112, 214, 0.08);
}

.about-value-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-value-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.about-value-item p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.6;
}

/* Location bar */
.about-location-bar {
  margin-top: 40px;
  padding: 20px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(93, 112, 214, 0.07);
  border-radius: 0 6px 6px 0;
}

.about-location-bar p {
  font-style: italic;
  opacity: 0.8;
  font-size: 0.92rem;
}

/* Mobile */
@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-item {
    padding: 22px 20px;
  }

  .about-location-bar p {
    font-size: 0.82rem;
  }
}

/* ════════════════════════════════════════
   FAQ PAGE
   ════════════════════════════════════════ */

.faq-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(93, 112, 214, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.15;
}

.faq-hero p {
  font-size: 1.05rem;
  color: rgba(234, 235, 252, 0.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 56px;
}

.faq-tab {
  background: rgba(32, 42, 94, 0.5);
  border: 1px solid rgba(93, 112, 214, 0.2);
  color: rgba(234, 235, 252, 0.6);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-tab:hover {
  border-color: rgba(93, 112, 214, 0.5);
  color: var(--lavender);
}

.faq-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.faq-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.faq-section {
  margin-bottom: 48px;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(93, 112, 214, 0.18);
}

.faq-section-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 235, 252, 0.4);
}

.faq-item {
  border-bottom: 1px solid rgba(93, 112, 214, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--lavender);
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--white);
}

.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(93, 112, 214, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color var(--transition), background var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(93, 112, 214, 0.15);
  border-color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 700px;
}

.faq-answer-inner {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(234, 235, 252, 0.6);
  padding-bottom: 20px;
}

.faq-answer-inner strong {
  color: var(--lavender);
  font-weight: 500;
}

.faq-answer-inner em {
  color: var(--cyan);
  font-style: italic;
}

.refund-section {
  max-width: 780px;
  margin: 16px auto 80px;
}

.refund-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(93, 112, 214, 0.18);
}

.refund-box {
  background: rgba(32, 42, 94, 0.35);
  border: 1px solid rgba(93, 112, 214, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 36px 28px;
  margin-top: 20px;
}

.refund-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 6px;
}

.refund-box .refund-sub {
  font-size: 0.88rem;
  color: rgba(234, 235, 252, 0.45);
  margin: 0 0 28px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.policy-card {
  background: rgba(20, 25, 58, 0.7);
  border: 1px solid rgba(93, 112, 214, 0.18);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.policy-phase {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.phase-green {
  color: #5DD8A8;
}

.phase-amber {
  color: #F5C97A;
}

.phase-red {
  color: #F08080;
}

.policy-outcome {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--lavender);
  margin-bottom: 6px;
}

.policy-detail {
  font-size: 0.82rem;
  color: rgba(234, 235, 252, 0.5);
  line-height: 1.6;
}

.refund-note {
  font-size: 0.87rem;
  color: rgba(234, 235, 252, 0.5);
  line-height: 1.75;
  padding-top: 22px;
  border-top: 1px solid rgba(93, 112, 214, 0.15);
}

.refund-note strong {
  color: var(--lavender);
  font-weight: 500;
}

.faq-cta {
  text-align: center;
  padding: 70px 0 90px;
  background: rgba(32, 42, 94, 0.2);
}

.faq-cta p {
  color: rgba(234, 235, 252, 0.55);
  max-width: 480px;
  margin: 12px auto 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .refund-box {
    padding: 24px 20px 20px;
  }

  .faq-hero {
    padding: 120px 0 60px;
  }
}