/* ==========================================================================
   VAISHNAVI A P — PERSONAL PORTFOLIO STYLESHEET
   Style: Editorial • Modern • Minimal • Warm • Human • Conversion-Focused
   Fonts: Playfair Display (Headings) + Poppins (Body)
   Palette: Warm Ivory, Deep Charcoal, Muted Terracotta, Soft Beige
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-primary: #FAF8F5;       /* Warm Ivory */
  --bg-surface: #FFFFFF;       /* Crisp Surface Card */
  --bg-soft: #F3EFE9;          /* Soft Beige */
  --bg-subtle: #EBE5DC;        /* Warm Sand Border / Background */
  --bg-dark: #191817;          /* Rich Charcoal */

  --text-primary: #191817;     /* Deep Charcoal */
  --text-secondary: #4A4A46;   /* Medium Muted Charcoal */
  --text-tertiary: #787771;    /* Light Muted Charcoal */
  --text-inverse: #FAF8F5;     /* Text on dark surfaces */

  --accent: #C85A32;           /* Muted Terracotta / Sophisticated Orange */
  --accent-hover: #AF4924;     /* Deep Terracotta */
  --accent-light: #F9EFE9;     /* Soft Terracotta Tint */
  --accent-border: #E8BCA9;    /* Light Terracotta Border */

  --border-light: rgba(25, 24, 23, 0.08);
  --border-medium: rgba(25, 24, 23, 0.15);
  --border-strong: rgba(25, 24, 23, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-spacing-desktop: 7rem;
  --section-spacing-mobile: 4.5rem;

  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(25, 24, 23, 0.04);
  --shadow-card: 0 12px 36px -8px rgba(74, 52, 38, 0.07);
  --shadow-card-hover: 0 20px 48px -10px rgba(74, 52, 38, 0.12);
  --shadow-modal: 0 24px 64px -12px rgba(25, 24, 23, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Skip to Content for Screen Readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1.5rem;
}

/* --------------------------------------------------------------------------
   02. TYPOGRAPHY & COMMON ELEMENTS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.3;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: var(--section-spacing-desktop);
  padding-bottom: var(--section-spacing-desktop);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

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

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

.section-subheading {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 680px;
}

.text-center .section-subheading {
  margin-left: auto;
  margin-right: auto;
}

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

/* Editorial highlight */
.highlight-terracotta {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   03. BUTTONS & CRO ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn .btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

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

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(200, 90, 50, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 90, 50, 0.32);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  background-color: var(--bg-surface);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--text-primary);
  border-color: #FFFFFF;
  font-weight: 600;
}

.btn-white:hover {
  background-color: var(--bg-primary);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-link:hover {
  color: var(--accent-hover);
}

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

/* Tags & Badges */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-soft);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.tag-accent {
  background-color: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent-border);
}

/* --------------------------------------------------------------------------
   04. NAVIGATION (STICKY & RESPONSIVE)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-smooth);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background-color: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(25, 24, 23, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
}

.nav-brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
}

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

.nav-link:hover {
  color: var(--accent);
}

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

.nav-link.active {
  color: var(--accent);
}

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

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
  z-index: 1100;
}

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

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-modal);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  z-index: 1050;
  overflow-y: auto;
}

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

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(25, 24, 23, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

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

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  display: block;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.mobile-nav-footer .btn {
  width: 100%;
}

.mobile-contact-info {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* --------------------------------------------------------------------------
   05. HERO SECTION (PRIMARY CRO ZONE)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--section-spacing-desktop) + 3rem);
  padding-bottom: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #2E7D32;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(46, 125, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-services-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.hero-services-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-right: 0.25rem;
}

.hero-services-strip .tag {
  background-color: transparent;
  border-color: var(--border-medium);
  font-size: 0.7rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Hero Media (Right Column) */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-backdrop {
  position: absolute;
  width: 88%;
  height: 95%;
  background: linear-gradient(135deg, #F5ECE5 0%, #EAE0D5 100%);
  border-radius: var(--radius-xl);
  top: 5%;
  right: 4%;
  z-index: 1;
  border: 1px solid var(--border-medium);
}

.hero-media-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 16px 32px rgba(25, 24, 23, 0.08));
}

.hero-portrait-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Editorial Floating Badges */
.hero-badge-available {
  position: absolute;
  bottom: 5%;
  left: -8%;
  background-color: var(--bg-surface);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-badge-text-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-badge-text-sub {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  line-height: 1.2;
  margin-top: 2px;
}

.hero-badge-top {
  position: absolute;
  top: 8%;
  right: -5%;
  background-color: var(--bg-surface);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   06. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  position: relative;
}

.trust-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.trust-icon-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.trust-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.trust-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   07. ABOUT SECTION (EDITORIAL)
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-primary);
}

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

.about-media-col {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #F3ECE5 0%, #E8DFD5 100%);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
}

.about-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

.about-image-frame:hover .about-portrait-img {
  transform: scale(1.05);
}

.about-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.about-badge-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.about-badge-role {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-heading {
  margin-bottom: 1.75rem;
}

.about-text-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text-body {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-cta-wrapper {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   08. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  background-color: var(--bg-soft);
}

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

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 1;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: background-color var(--transition-fast);
}

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

.service-card:hover::before {
  background-color: var(--accent);
}

.service-card-top {
  margin-bottom: 2rem;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   09. VALUE PROPOSITION / MY APPROACH
   -------------------------------------------------------------------------- */
.approach-section {
  background-color: var(--bg-primary);
}

.approach-hero-card {
  background: linear-gradient(145deg, #FAF4EF 0%, #F2E7DC 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  border: 1px solid var(--accent-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 3.5rem;
}

.approach-hero-content {
  max-width: 840px;
}

.approach-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.approach-headline {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.approach-statement {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.approach-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.approach-step-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-fast);
}

.approach-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card);
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. PORTFOLIO / SELECTED WORK
   -------------------------------------------------------------------------- */
.portfolio-section {
  background-color: var(--bg-soft);
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.case-study-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  transition: all var(--transition-smooth);
}

.case-study-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border);
}

.case-study-card.reversed {
  direction: rtl;
}

.case-study-card.reversed > * {
  direction: ltr;
}

.case-study-media {
  position: relative;
  background: #EAE3D9;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

/* Special visual mockup for Imprints */
.imprints-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1C2D42 0%, #0F1A28 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
}

.imprints-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #64B5F6;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.imprints-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.imprints-subtitle {
  font-size: 0.95rem;
  color: #B0BEC5;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.imprints-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.imprints-feat-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Portfolio Personal Brand Mockup */
.portfolio-mockup {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #FAF8F5 0%, #EFE8DF 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.portfolio-mockup-frame {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
}

.portfolio-mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-medium);
}

.dot.red { background-color: #E57373; }
.dot.yellow { background-color: #FFD54F; }
.dot.green { background-color: #81C784; }

.portfolio-mockup-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-mockup-body p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.case-study-details {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-study-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.case-study-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* Case Study 4-Phase Grid */
.case-study-phases {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.phase-item {
  border-left: 2px solid var(--border-medium);
  padding-left: 1.25rem;
  transition: border-color var(--transition-fast);
}

.phase-item:hover {
  border-left-color: var(--accent);
}

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

.phase-content {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.case-study-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* CRO Banner below portfolio */
.portfolio-cro-banner {
  margin-top: 4.5rem;
  background: linear-gradient(135deg, #FAF4EE 0%, #F2E8DE 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-card);
}

.cro-banner-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cro-banner-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   11. WHY VAISHNAVI SECTION
   -------------------------------------------------------------------------- */
.why-section {
  background-color: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.why-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition-fast);
}

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

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
}

.why-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.why-content p {
  font-size: 0.96rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   12. SKILLS & TOOLS SECTION
   -------------------------------------------------------------------------- */
.skills-section {
  background-color: var(--bg-soft);
}

.skills-wrapper {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.skills-block {
  margin-bottom: 2.5rem;
}

.skills-block:last-child {
  margin-bottom: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.skills-category-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.skill-chip {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-chip:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-2px);
}

.skill-chip .chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* --------------------------------------------------------------------------
   13. CURRENTLY LEARNING
   -------------------------------------------------------------------------- */
.learning-section {
  background-color: var(--bg-primary);
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.learning-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6F2 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.learning-header {
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.learning-header h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.learning-topics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.learning-loop {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  flex-wrap: wrap;
  justify-content: center;
}

.loop-arrow {
  color: var(--text-tertiary);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   14. CURRENTLY BUILDING (CREDIBILITY / PRACTICE WORK)
   -------------------------------------------------------------------------- */
.building-section {
  background-color: var(--bg-soft);
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.building-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

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

.building-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.building-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.building-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. DIGITAL MARKETING NOTES (BLOG)
   -------------------------------------------------------------------------- */
.notes-section {
  background-color: var(--bg-primary);
}

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

.note-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

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

.note-meta {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.note-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.note-excerpt {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.note-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   16. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  background-color: var(--bg-soft);
  padding-bottom: 0;
}

.final-cta-card {
  background: linear-gradient(135deg, #1C1B19 0%, #2A2825 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 4rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 90, 50, 0.22) 0%, rgba(200, 90, 50, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-heading {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.final-cta-text {
  font-size: 1.15rem;
  color: #D1CEC7;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  font-weight: 600;
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 20px rgba(200, 90, 50, 0.4);
}

.btn-cta-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(200, 90, 50, 0.55);
}

.btn-cta-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   17. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-soft);
  padding-top: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-info-col h2 {
  margin-bottom: 1rem;
}

.contact-info-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-text-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.detail-text-val {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-primary);
}

.detail-text-val a:hover {
  color: var(--accent);
}

/* Instagram QR Block */
.instagram-qr-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.qr-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: #FFF;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.qr-details h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.qr-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.12);
}

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

/* Selectable Service Pills */
.service-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.service-pill-label {
  cursor: pointer;
  margin: 0;
}

.service-pill-input {
  display: none;
}

.service-pill-custom {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.service-pill-input:checked + .service-pill-custom {
  background-color: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  display: block;
  color: #2E7D32;
  background-color: #E8F5E9;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #C8E6C9;
}

.form-feedback.error {
  display: block;
  color: #C62828;
  background-color: #FFEBEE;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #FFCDD2;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.footer-logo-sub {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #A3A29E;
  line-height: 1.65;
}

.footer-links-group {
  display: flex;
  gap: 3rem;
}

.footer-nav-col h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

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

.footer-nav-list a {
  font-size: 0.9rem;
  color: #A3A29E;
}

.footer-nav-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 0.85rem;
  color: #7A7873;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #A3A29E;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.back-to-top-btn:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   19. MODALS (CASE STUDIES & BLOG READING MODAL)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(25, 24, 23, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--border-medium);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  z-index: 10;
}

.modal-header-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.modal-body {
  padding: 2.5rem;
}

.modal-body h3 {
  font-size: 1.6rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal-body h4 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.modal-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.modal-image-preview {
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-media-wrapper {
    order: 2;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .trust-card:nth-child(2)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-media-col {
    max-width: 440px;
    margin: 0 auto;
  }

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

  .services-grid .service-card:nth-child(5) {
    grid-column: span 2;
  }

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

  .case-study-card {
    grid-template-columns: 1fr;
  }

  .case-study-card.reversed {
    direction: ltr;
  }

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

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

  .notes-grid .note-card:nth-child(3) {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta-wrapper {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

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

  .hero-badge-available {
    left: 0;
    bottom: -10px;
  }

  .hero-badge-top {
    right: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-card::after {
    display: none !important;
  }

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

  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .approach-hero-card {
    padding: 2.5rem 1.75rem;
  }

  .approach-steps-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cro-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

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

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

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

  .notes-grid .note-card:nth-child(3) {
    grid-column: span 1;
  }

  .skills-wrapper {
    padding: 2rem 1.5rem;
  }

  .learning-card {
    padding: 2.5rem 1.5rem;
  }

  .final-cta-card {
    padding: 3.5rem 1.75rem;
  }

  .contact-form-card {
    padding: 2.5rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
