/* ==========================================================================
   VEZORA MEDIA — PROFESSIONAL POLISH STYLESHEET
   Design . Develop . Scale
   Theme: Professional Polish | Light Luxury & Modern Creative Agency
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

/* --- 1. CSS DESIGN TOKENS --- */
:root {
  /* Brand Colors from Professional Polish palette */
  --gold: #C89B3C;
  --charcoal: #1C1C1C;
  --ivory: #FEFCF6;
  --white: #FFFFFF;
  --dark-gray: #3A3835;
  --warm-gray: #706B65;
  --light-gray: #ECE8E1;
  --dark-gold: #9C7424;
  --light-gold: #FBF7EE;
  --gold-tint: rgba(200, 155, 60, 0.08);

  /* Subtle Crisp Borders */
  --border-light: rgba(28, 28, 28, 0.06);
  --border-medium: rgba(28, 28, 28, 0.12);
  --border-gold: rgba(200, 155, 60, 0.28);
  --border-gold-strong: rgba(200, 155, 60, 0.55);

  /* Elevation Shadows */
  --shadow-subtle: 0 4px 20px rgba(28, 28, 28, 0.02);
  --shadow-soft: 0 10px 40px rgba(28, 28, 28, 0.06);
  --shadow-hover: 0 16px 45px rgba(200, 155, 60, 0.14);
  --shadow-card: 0 8px 30px rgba(28, 28, 28, 0.04);
  --shadow-float: 0 20px 50px rgba(28, 28, 28, 0.08);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 84px;
  --header-height-scrolled: 72px;
}

/* --- 2. GLOBAL RESET & BASE RULES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--ivory);
  color: var(--dark-gray);
}

body {
  font-family: var(--font-main);
  background-color: var(--ivory);
  color: var(--dark-gray);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Selection Color */
::selection {
  background-color: rgba(200, 155, 60, 0.22);
  color: var(--charcoal);
}

/* Base Headings & Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.font-serif {
  font-family: var(--font-serif);
}

p {
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
}

/* --- 3. LAYOUT & WRAPPER UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.section-sm {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-lg {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.bg-ivory {
  background-color: var(--ivory);
}

.bg-white {
  background-color: var(--white);
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

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

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

/* --- 4. LUXURY TYPOGRAPHY SYSTEM --- */
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.95rem;
  margin-bottom: 1.25rem;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(200, 155, 60, 0.05);
}

.gold-badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
}

.section-header {
  margin-bottom: 3.75rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

.text-gold {
  color: var(--gold);
}

.text-charcoal {
  color: var(--charcoal);
}

.text-warm-gray {
  color: var(--warm-gray);
}

/* --- 5. BUTTONS & INTERACTIVE ELEMENTS (PROFESSIONAL POLISH) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 1rem 2rem;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
}

/* Primary Button: Crisp Charcoal, turns Gold on Hover */
.btn-primary {
  background-color: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.12);
}

.btn-primary:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 155, 60, 0.28);
}

/* Gold Button */
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 18px rgba(200, 155, 60, 0.25);
}

.btn-gold:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(133, 89, 31, 0.3);
}

/* Secondary Button: Outlined Gold / Ivory */
.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 155, 60, 0.22);
}

/* Minimal Text Link with Animated Arrow */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--gold);
}

.btn-link:hover {
  color: var(--gold);
  border-bottom-color: var(--dark-gold);
}

.btn-link .arrow-icon {
  transition: transform var(--transition-fast);
}

.btn-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* --- 6. NAVIGATION BAR --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: height var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(28, 28, 28, 0.02);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link,
.brand-logo {
  display: flex;
  align-items: center;
  height: auto;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.logo-link:hover,
.brand-logo:hover {
  opacity: 0.92;
}

/* Official Logo Sizing & Aspect Ratio Preservation */
.logo-image,
.brand-logo img,
.logo img,
.logo-img,
.logo-link img {
  width: auto;
  height: auto;
  max-width: 182px;
  max-height: 105px;
  object-fit: contain;
  display: block;
  margin-left: 0.5rem;
}

.footer-brand .logo-image,
.footer-brand .logo-img,
.footer-brand .logo-link img,
.footer-brand .brand-logo img {
  max-width: 210px;
  max-height: 130px;
}

.mobile-drawer .logo-image,
.mobile-drawer .logo-img,
.mobile-drawer .brand-logo img {
  max-width: 150px;
  max-height: 42px;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.75rem 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

/* Dropdown Mega Menu for Services */
.has-dropdown {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 320px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 0.85rem;
  box-shadow: 0 15px 45px rgba(28, 28, 28, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--ivory);
  color: var(--gold);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ivory);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  padding: 2rem 1.75rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right var(--transition-normal);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 28, 28, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-sub-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 2px solid var(--border-gold);
}

.mobile-sub-link {
  font-size: 0.9375rem;
  color: var(--dark-gray);
}

/* --- 7. HOME HERO SECTION (PROFESSIONAL POLISH) --- */
.hero-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.metric-number span {
  color: var(--gold);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Hero Visual Composition */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.hero-frame-bg-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, rgba(254, 252, 246, 0) 70%);
  top: -40px;
  right: -40px;
  z-index: 0;
  pointer-events: none;
}

.hero-frame-inner {
  position: relative;
  z-index: 1;
}

.hero-logo-box {
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-capabilities {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cap-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.cap-item:hover {
  border-color: var(--border-gold);
  background-color: var(--light-gold);
  transform: translateX(4px);
}

.cap-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold);
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Floating Badges on Hero */
.floating-tag {
  position: absolute;
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 10px 30px rgba(28, 28, 28, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.floating-tag-1 {
  bottom: -20px;
  left: -25px;
}

.floating-tag-2 {
  top: -15px;
  right: -20px;
  animation-delay: -3s;
}

.floating-icon {
  width: 34px;
  height: 34px;
  background-color: var(--ivory);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--charcoal);
  font-weight: 700;
}

.floating-text span {
  font-size: 0.6875rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* --- 8. BRAND STATEMENT SECTION --- */
.statement-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 0;
}

.statement-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.statement-quote {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.statement-quote em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.statement-pills {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.pill-item:hover {
  border-color: var(--border-gold);
  background-color: var(--white);
}

.pill-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
}

/* --- 9. SERVICES OVERVIEW & SERVICE CARDS (PROFESSIONAL POLISH) --- */
.service-card {
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-strong);
  background-color: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::after {
  width: 100%;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-number {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--gold);
  color: var(--white);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.service-list-item {
  font-size: 0.875rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--gold);
}

/* Custom Services Highlight Card */
.custom-service-banner {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.custom-service-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
}

/* --- 10. WHY CHOOSE VEZORA (VALUE PILLARS) --- */
.pillar-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
  position: relative;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
}

.pillar-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.pillar-card:hover::after {
  width: 100%;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background-color: var(--ivory);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* --- 11. PROCESS STEPS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.25rem 1.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
}

.process-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.process-step:hover::after {
  width: 100%;
}

.step-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.step-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.step-text {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* --- 12. PORTFOLIO & SHOWCASE --- */
.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--dark-gray);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.15);
}

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

.portfolio-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.portfolio-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--ivory);
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  padding: 0.35rem 0.85rem;
  backdrop-filter: blur(6px);
}

.portfolio-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.portfolio-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}

.portfolio-desc {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.portfolio-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.65rem;
}

/* --- 13. TEAM SECTION --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.team-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.team-avatar-box {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  background-color: var(--ivory);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.team-content {
  flex-grow: 1;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: -0.015em;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* --- 14. FAQ ACCORDION --- */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.75rem;
  color: var(--warm-gray);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* --- 15. CONTACT FORM & CARDS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--ivory);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  color: var(--charcoal);
  transition: all var(--transition-fast);
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 155, 60, 0.15);
}

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

.form-error {
  display: none;
  font-size: 0.75rem;
  color: #c53030;
  margin-top: 0.35rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  background-color: #f0fff4;
  border: 1px solid #9ae6b4;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.form-success.visible {
  display: block;
}

/* --- 16. FOOTER (PROFESSIONAL POLISH) --- */
.site-footer {
  background-color: var(--ivory);
  border-top: 1px solid var(--border-light);
  color: var(--warm-gray);
  position: relative;
}

.footer-main {
  padding: 5.5rem 2rem 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 1.25rem 0 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--warm-gray);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-light);
  background-color: var(--ivory);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Footer CTA Box */
.footer-top-banner {
  padding: 3rem 0 0;
}

.footer-top-inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  padding: 2.5rem 3rem;

  background-color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.footer-top-text h2 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.footer-top-text p {
  margin-bottom: 0;
  color: var(--warm-gray);
}

@media (max-width: 768px) {
  .footer-top-banner {
    padding: 2rem 0 0;
  }

  .footer-top-inner {
    width: calc(100% - 2rem);
    max-width: none;
    margin: 0 auto;

    flex-direction: column;
    align-items: flex-start;

    padding: 2rem;
    border-radius: 16px;
  }

  .footer-top-inner .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-top-inner {
    width: calc(100% - 1.5rem);
    padding: 1.5rem;
    border-radius: 14px;
  }

  .footer-top-text h2 {
    font-size: 1.35rem;
  }

  .footer-top-text p {
    font-size: 0.9rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .footer-top-banner {
    padding: 2rem 0 0;
  }

  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .footer-top-inner .btn {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-top-inner {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .footer-top-text h2 {
    font-size: 1.35rem;
  }

  .footer-top-text p {
    font-size: 0.9rem;
  }
}

/* Newsletter Small Box */
.footer-brand > div[style*="margin-top: 1.5rem"] {
  margin-top: 1.5rem !important;
  padding: 1.25rem;
  max-width: 360px;
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-subtle);
  border-radius: 16px;
}

.footer-brand > div[style*="margin-top: 1.5rem"] > p {
  margin-bottom: 0.75rem !important;
  color: var(--charcoal) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
}

.footer-brand > div[style*="margin-top: 1.5rem"] form {
  max-width: 100% !important;
}

.footer-brand > div[style*="margin-top: 1.5rem"] input {
  background: var(--ivory) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--charcoal) !important;
  border-radius: 0 !important;
}

.footer-brand > div[style*="margin-top: 1.5rem"] input:focus {
  border-color: var(--gold) !important;
}

.footer-brand > div[style*="margin-top: 1.5rem"] button {
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 480px) {
  .footer-brand > div[style*="margin-top: 1.5rem"] {
    max-width: 100%;
    padding: 1rem;
  }

  .footer-brand > div[style*="margin-top: 1.5rem"] form {
    flex-direction: column;
  }

  .footer-brand > div[style*="margin-top: 1.5rem"] button {
    width: 100%;
  }
}

/* --- 17. BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background-color: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.15);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* --- 18. PAGE HERO (INNER PAGES) --- */
.page-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--dark-gray);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span.current {
  color: var(--gold);
  font-weight: 700;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: var(--warm-gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- 19. SERVICE PAGE SPECIFIC COMPONENTS --- */
.service-feature-box {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
}

.service-feature-box:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.service-feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--ivory);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.deliverables-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.deliverables-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.deliverable-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- 20. SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* --- 21. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.85rem;
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-metrics {
    justify-content: center;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .custom-service-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .page-hero-title {
    font-size: 2.25rem;
  }
  .statement-quote {
    font-size: 1.75rem;
  }
  .grid-2, .grid-3, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    flex-direction: column;
    text-align: center;
  }
  .deliverables-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  @media (max-width: 768px) {
  .footer-main {
    padding: 4rem 1rem 2.5rem;
  }
}
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-metrics {
    flex-direction: column;
    gap: 1.25rem;
  }
  .floating-tag-1, .floating-tag-2 {
    display: none;
  }
  .custom-service-banner {
    padding: 2rem 1.25rem;
  }
}

/* ========================================================================== 
   22. MOBILE / ANDROID RESPONSIVE STABILIZATION
   Covers common phone widths and prevents layout overflow without changing
   the existing desktop/tablet design.
   ========================================================================== */

.grid > *,
.hero-grid > *,
.contact-grid > *,
.custom-service-banner > *,
.team-grid > *,
.footer-grid > * {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-grid,
  .contact-grid,
  .custom-service-banner {
    width: 100%;
  }

  .hero-frame,
  .service-card,
  .pillar-card,
  .process-step,
  .portfolio-card,
  .team-card,
  .contact-info-card,
  .service-feature-box,
  .deliverables-card {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    max-width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .cap-item {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cap-item > * {
    min-width: 0;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .mobile-drawer {
    width: min(88%, 400px);
    max-width: 400px;
  }
}

/* Mobile L — 425px */
@media (max-width: 425px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .site-header {
    min-height: 76px;
  }

  .logo-image,
  .brand-logo img,
  .logo img,
  .logo-img,
  .logo-link img {
    max-width: 145px;
    max-height: 58px;
    margin-left: 0;
  }

  .mobile-toggle {
    padding: 0.4rem;
  }

  .mobile-toggle svg {
    width: 26px;
    height: 26px;
  }

  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-frame {
    padding: 1.25rem;
  }

  .hero-logo-box {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-logo-box .logo-image {
    max-width: 150px;
    max-height: 70px;
  }

  .hero-metrics {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 1.5rem;
  }

  .metric-item {
    min-width: 90px;
    text-align: center;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle,
  .page-hero-desc {
    font-size: 1rem;
  }

  .statement-section {
    padding: 4rem 0;
  }

  .statement-quote {
    font-size: 1.65rem;
  }

  .pill-item {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-title,
  .portfolio-title {
    font-size: 1.2rem;
  }

  .custom-service-banner {
    padding: 1.75rem 1.15rem;
    margin-top: 2.5rem;
  }

  .process-step {
    padding: 1.75rem 1.25rem;
  }

  .portfolio-body {
    padding: 1.5rem 1.15rem;
  }

  .team-card {
    padding: 1.5rem 1.15rem;
  }

  .contact-info-card,
  .deliverables-card,
  .service-feature-box {
    padding: 1.5rem 1.15rem;
  }

  .faq-question {
    padding: 1.15rem 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
  }

  .deliverables-list {
    gap: 0.8rem;
  }

  .footer-main {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* Mobile M — 375px */
@media (max-width: 375px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .site-header {
    min-height: 72px;
  }

  .logo-image,
  .brand-logo img,
  .logo img,
  .logo-img,
  .logo-link img {
    max-width: 135px;
    max-height: 54px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-hero-title {
    font-size: 1.9rem;
  }

  .statement-quote {
    font-size: 1.55rem;
  }

  .hero-frame {
    padding: 1.1rem;
  }

  .hero-capabilities {
    gap: 0.7rem;
  }

  .cap-item {
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .cap-badge {
    font-size: 0.62rem;
    padding: 0.18rem 0.45rem;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 0.8rem;
    font-size: 0.7rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-metrics {
    gap: 1rem;
  }

  .metric-number {
    font-size: 1.65rem;
  }

  .metric-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .gold-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.16em;
    font-size: 0.62rem;
  }

  .portfolio-filter {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .filter-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.68rem;
  }

  .mobile-drawer {
    width: 92%;
    padding: 1.5rem 1.25rem;
  }
}

/* Mobile S — 320px */
@media (max-width: 320px) {
  .container {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .site-header {
    min-height: 68px;
  }

  .logo-image,
  .brand-logo img,
  .logo img,
  .logo-img,
  .logo-link img {
    max-width: 125px;
    max-height: 48px;
  }

  .header-container {
    min-height: 68px;
  }

  .mobile-toggle svg {
    width: 24px;
    height: 24px;
  }

  .hero-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 1.65rem;
    letter-spacing: -0.025em;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle,
  .page-hero-desc {
    font-size: 0.9rem;
  }

  .page-hero {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .page-hero-title {
    font-size: 1.7rem;
  }

  .statement-section {
    padding: 3.25rem 0;
  }

  .statement-quote {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .statement-pills {
    gap: 0.65rem;
  }

  .pill-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0.55rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .service-card,
  .process-step,
  .contact-info-card,
  .deliverables-card,
  .service-feature-box,
  .team-card {
    padding: 1.25rem 0.9rem;
  }

  .service-title,
  .portfolio-title {
    font-size: 1.1rem;
  }

  .service-desc,
  .portfolio-desc,
  .pillar-desc,
  .step-text,
  .page-hero-desc,
  .faq-answer {
    font-size: 0.88rem;
  }

  .service-list-item,
  .deliverable-item {
    font-size: 0.82rem;
  }

  .faq-question {
    padding: 0.95rem 0.8rem;
    font-size: 0.86rem;
    gap: 0.65rem;
  }

  .faq-answer {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.85rem 0.9rem;
  }

  .hero-logo-box .logo-image {
    max-width: 130px;
    max-height: 62px;
  }

  .portfolio-media {
    aspect-ratio: 16 / 10;
  }

  .footer-main {
    padding-top: 3.25rem;
    padding-bottom: 2rem;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }
}

/* ========================================================================== 
   22. MOBILE / ANDROID RESPONSIVE STABILIZATION
   Covers common phone widths and prevents layout overflow without changing
   the existing desktop/tablet design.
   ========================================================================== */

/* Shared responsive safety */
.grid > *,
.hero-grid > *,
.contact-grid > *,
.custom-service-banner > *,
.team-grid > *,
.footer-grid > * {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-grid,
  .contact-grid,
  .custom-service-banner {
    width: 100%;
  }

  .hero-frame,
  .service-card,
  .pillar-card,
  .process-step,
  .portfolio-card,
  .team-card,
  .contact-info-card,
  .service-feature-box,
  .deliverables-card {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    max-width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .cap-item {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cap-item > * {
    min-width: 0;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .mobile-drawer {
    width: min(88%, 400px);
    max-width: 400px;
  }
}

/* Mobile L — 425px */
@media (max-width: 425px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .site-header {
    min-height: 76px;
  }

  .logo-image,
  .brand-logo img,
  .logo img,
  .logo-img,
  .logo-link img {
    max-width: 145px;
    max-height: 58px;
    margin-left: 0;
  }

  .mobile-toggle {
    padding: 0.4rem;
  }

  .mobile-toggle svg {
    width: 26px;
    height: 26px;
  }

  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-frame {
    padding: 1.25rem;
  }

  .hero-logo-box {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-logo-box .logo-image {
    max-width: 150px;
    max-height: 70px;
  }

  .hero-metrics {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 1.5rem;
  }

  .metric-item {
    min-width: 90px;
    text-align: center;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle,
  .page-hero-desc {
    font-size: 1rem;
  }

  .statement-section {
    padding: 4rem 0;
  }

  .statement-quote {
    font-size: 1.65rem;
  }

  .pill-item {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-title,
  .portfolio-title {
    font-size: 1.2rem;
  }

  .custom-service-banner {
    padding: 1.75rem 1.15rem;
    margin-top: 2.5rem;
  }

  .process-step {
    padding: 1.75rem 1.25rem;
  }

  .portfolio-body {
    padding: 1.5rem 1.15rem;
  }

  .team-card {
    padding: 1.5rem 1.15rem;
  }

  .contact-info-card,
  .deliverables-card,
  .service-feature-box {
    padding: 1.5rem 1.15rem;
  }

  .faq-question {
    padding: 1.15rem 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
  }

  .deliverables-list {
    gap: 0.8rem;
  }

  .footer-main {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* Mobile M — 375px */
@media (max-width: 375px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .site-header {
    min-height: 72px;
  }

  .logo-image,
  .brand-logo img,
  .logo img,
  .logo-img,
  .logo-link img {
    max-width: 135px;
    max-height: 54px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-hero-title {
    font-size: 1.9rem;
  }

  .statement-quote {
    font-size: 1.55rem;
  }

  .hero-frame {
    padding: 1.1rem;
  }

  .hero-capabilities {
    gap: 0.7rem;
  }

  .cap-item {
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .cap-badge {
    font-size: 0.62rem;
    padding: 0.18rem 0.45rem;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 0.8rem;
    font-size: 0.7rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-metrics {
    gap: 1rem;
  }

  .metric-number {
    font-size: 1.65rem;
  }

  .metric-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .gold-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.16em;
    font-size: 0.62rem;
  }

  .portfolio-filter {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .filter-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.68rem;
  }

  .mobile-drawer {
    width: 92%;
    padding: 1.5rem 1.25rem;
  }
}

/* Mobile S — 320px */
@media (max-width: 320px) {
  .container {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .site-header {
    min-height: 68px;
  }

  .logo-image,
  .brand-logo img,
  .logo img,
  .logo-img,
  .logo-link img {
    max-width: 125px;
    max-height: 48px;
  }

  .header-container {
    min-height: 68px;
  }

  .mobile-toggle svg {
    width: 24px;
    height: 24px;
  }

  .hero-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 1.65rem;
    letter-spacing: -0.025em;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle,
  .page-hero-desc {
    font-size: 0.9rem;
  }

  .page-hero {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .page-hero-title {
    font-size: 1.7rem;
  }

  .statement-section {
    padding: 3.25rem 0;
  }

  .statement-quote {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .statement-pills {
    gap: 0.65rem;
  }

  .pill-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0.55rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .service-card,
  .process-step,
  .contact-info-card,
  .deliverables-card,
  .service-feature-box,
  .team-card {
    padding: 1.25rem 0.9rem;
  }

  .service-title,
  .portfolio-title {
    font-size: 1.1rem;
  }

  .service-desc,
  .portfolio-desc,
  .pillar-desc,
  .step-text,
  .page-hero-desc,
  .faq-answer {
    font-size: 0.88rem;
  }

  .service-list-item,
  .deliverable-item {
    font-size: 0.82rem;
  }

  .faq-question {
    padding: 0.95rem 0.8rem;
    font-size: 0.86rem;
    gap: 0.65rem;
  }

  .faq-answer {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.85rem 0.9rem;
  }

  .hero-logo-box .logo-image {
    max-width: 130px;
    max-height: 62px;
  }

  .portfolio-media {
    aspect-ratio: 16 / 10;
  }

  .footer-main {
    padding-top: 3.25rem;
    padding-bottom: 2rem;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }
}
