:root {
  /* Colors - Warm, professional palette */
  --color-bg: #faf7f2;
  --color-bg-alt: #f0ebe3;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-accent: #c4a77d;
  --color-accent-hover: #b8956d;
  --color-accent-light: #e5d4bc;
  --color-accent-glow: rgba(196, 167, 125, 0.3);
  --color-line: #e6dfd6;
  --color-white: #ffffff;

  /* Border radius system */
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  /* Shadow system - multiple levels */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 32px var(--color-accent-glow);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  /* Layout */
  --container: 1200px;

  /* Spacing - 8px base unit */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--color-accent-light);
  color: var(--color-text);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.4px;
  margin: 0 0 var(--space-sm);
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

p {
  margin: 0 0 var(--space-sm);
}

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

button {
  font-family: inherit;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===================
   HEADER & NAVIGATION
   =================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 223, 214, 0.5);
  transition: all var(--transition-base);
}

body.menu-open {
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  position: relative;
}

.logo {
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: var(--space-md);
  font-size: 14px;
  color: var(--color-text-muted);
}

.nav a {
  position: relative;
  padding: 4px 0;
}

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

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

.nav a:hover::after {
  width: 100%;
}

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.burger-line:nth-child(1) {
  margin-bottom: 5px;
}

.burger-line:nth-child(3) {
  margin-top: 5px;
}

/* Burger animation when open */
body.menu-open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

body.menu-open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

/* Close button inside mobile menu */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition-fast);
}

.mobile-close:hover {
  transform: rotate(90deg);
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.mobile-nav a {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-base);
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

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

.mobile-nav a:hover::after {
  width: 100%;
}

.mobile-cta {
  margin-top: 60px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  justify-content: center;
}

/* ===================
   BUTTONS
   =================== */

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ghost-button {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-text);
}

.ghost-button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.ghost-button:active {
  transform: translateY(0);
}

.primary-button {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md), 0 4px 16px var(--color-accent-glow);
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.primary-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 8px 24px var(--color-accent-glow);
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button:active {
  transform: translateY(-1px) scale(1);
}

.circle-button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  transition: all var(--transition-bounce);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.circle-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.circle-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.circle-button:hover::before {
  opacity: 1;
}

.about-visual .circle-button {
  position: relative;
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  z-index: 2;
}

.circle-button.hero-circle {
  width: clamp(100px, 12vw, 130px);
  height: clamp(100px, 12vw, 130px);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  position: absolute;
  left: -20px;
  bottom: 20px;
  z-index: 10;
  border: 2px solid var(--color-accent-hover);
}

/* ===================
   SECTIONS
   =================== */

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-title.align-center {
  text-align: center;
}

/* ===================
   ANIMATIONS
   =================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered card animations */
.card-grid .card:nth-child(1) { animation-delay: 0s; }
.card-grid .card:nth-child(2) { animation-delay: 0.1s; }
.card-grid .card:nth-child(3) { animation-delay: 0.2s; }
.card-grid .card:nth-child(4) { animation-delay: 0.3s; }
.card-grid .card:nth-child(5) { animation-delay: 0.4s; }
.card-grid .card:nth-child(6) { animation-delay: 0.5s; }

/* ===================
   HERO SECTION
   =================== */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  overflow: hidden;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 167, 125, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.hero-bg-text {
  position: absolute;
  inset: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 12vw, 140px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 167, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  white-space: nowrap;
  animation: floatText 20s ease-in-out infinite;
}

@keyframes floatText {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  display: inline-block;
  position: relative;
}

.eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.lead {
  font-size: 18px;
  max-width: 520px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.meta-note {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-note::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(196, 167, 125, 0.1);
  border: 1.5px solid rgba(196, 167, 125, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.badge:hover {
  background: rgba(196, 167, 125, 0.2);
  border-color: var(--color-accent);
  color: var(--color-text);
  transform: translateY(-2px);
}

.hero-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  width: min(360px, 90%);
  aspect-ratio: 3 / 4;
  background: linear-gradient(140deg, #e9e2d9, #d4c6b7);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: rgba(26, 26, 26, 0.6);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: min(360px, 90%);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
}

.hero-photo:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.photo-placeholder.round {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.photo-placeholder.rounded {
  border-radius: 200px 200px 24px 24px;
}

.hero-circle {
  position: absolute;
  left: -28px;
  bottom: 8px;
}

/* ===================
   ABOUT SECTION
   =================== */

.about {
  background: var(--color-white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-line), transparent);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-stats > div {
  text-align: center;
  padding: var(--space-sm);
  background: var(--color-bg);
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.about-stats > div:hover {
  background: var(--color-bg-alt);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  display: block;
  line-height: 1.1;
  color: var(--color-accent);
}

.stat-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.about-photo {
  width: clamp(200px, 30vw, 300px);
  height: clamp(200px, 30vw, 300px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
}

.about-photo:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

/* ===================
   STATS BANNER
   =================== */

.stats-banner {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius);
  padding: var(--space-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-accent));
}

/* Circle accent button */
.circle-btn-accent {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8B7355, #6B5344);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(107, 83, 68, 0.35);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.circle-btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.circle-btn-accent:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 40px rgba(107, 83, 68, 0.4);
}

.circle-btn-accent:hover::before {
  opacity: 1;
}

.stats-banner-numbers {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: var(--color-bg-alt);
  transform: translateY(-2px);
}

.stat-item .stat-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-family: "Playfair Display", serif;
  display: block;
  line-height: 1.1;
  color: var(--color-accent);
}

.stat-item .stat-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}


/* ===================
   HELP/SERVICES SECTION
   =================== */

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

.help-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: start;
}

.help-column {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.help-column:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.help-column h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.help-column h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
}

.help-divider {
  border: none;
  border-top: 1px solid var(--color-line);
  margin: var(--space-md) 0;
}

/* Accordion */
.help-column .accordion details:first-child {
  border-top: none;
}

.accordion details {
  border-top: 1px solid var(--color-line);
  padding: var(--space-sm) 0;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.accordion summary:hover {
  color: var(--color-accent);
}

.accordion summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--color-accent);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion details p {
  padding-top: var(--space-xs);
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================
   PRICING SECTION
   =================== */

.pricing {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

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

.pricing-section .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section .card h3 {
  line-height: 1.2;
  min-height: 2.4em;
}

/* ===================
   CARDS
   =================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

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

.card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 20px;
  transition: color var(--transition-fast);
}

.card:hover h3 {
  color: var(--color-accent);
}

.card p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-line);
  padding-top: var(--space-sm);
  font-size: 14px;
}

.card-meta strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* ===================
   CTA SECTION
   =================== */

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

.cta-box {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg) 100%);
  border-radius: var(--radius);
  padding: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-accent));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* ===================
   PRINCIPLES SECTION
   =================== */

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

.soft-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.soft-list li {
  padding-left: 28px;
  position: relative;
  transition: transform var(--transition-fast);
}

.soft-list li:hover {
  transform: translateX(4px);
}

.soft-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.principles-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.outline-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid var(--color-accent-light);
  right: 10%;
  bottom: -10%;
  opacity: 0.5;
}

/* ===================
   FOOTER
   =================== */

.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 13px;
}

/* ===================
   PAGE HERO
   =================== */

.page-hero {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: var(--space-xl) 0 var(--space-lg);
}

.page-hero .lead {
  max-width: 680px;
}

.text-block {
  max-width: 720px;
}

/* ===================
   LIST COLUMNS
   =================== */

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-columns li {
  background: var(--color-white);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
}

.list-columns li:hover {
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* ===================
   EDUCATION SECTION
   =================== */

.education-list {
  display: grid;
  gap: var(--space-lg);
}

.education-item h3 {
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.education-item h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.education-item .list-columns {
  grid-template-columns: 1fr;
}

.education-item .list-columns li {
  font-size: 14px;
  line-height: 1.5;
}

.education-item .list-columns li strong {
  color: var(--color-text);
}

/* ===================
   CONTACT PAGE
   =================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.contact-list a {
  color: var(--color-text);
}

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

/* Contact with icons */
.contact-phone {
  margin-bottom: var(--space-md);
  font-size: 18px;
}

.contact-phone .phone-label {
  font-weight: 600;
  margin-right: var(--space-xs);
}

.contact-phone a {
  color: var(--color-text);
  font-weight: 500;
}

.contact-phone a:hover {
  color: var(--color-accent);
}

.contact-list-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-xs);
}

.contact-list-icons li {
  flex: 0 0 auto;
}

.contact-list-icons a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  font-weight: 500;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.contact-list-icons a:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--color-white), var(--color-bg));
}

.contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform var(--transition-bounce);
}

.contact-list-icons a:hover .contact-icon {
  transform: scale(1.15);
}

/* Contact Form */
.contact-form {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-md);
}

.contact-form .form-field {
  display: grid;
  gap: 8px;
  position: relative;
}

.contact-form label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: all var(--transition-base);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--color-accent-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-glow);
}

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

.contact-form button {
  justify-self: start;
}

/* Map */
.map-block h2 {
  margin-bottom: var(--space-xs);
}

.map-block .address {
  font-size: 16px;
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
}

.map-placeholder {
  border-radius: var(--radius);
  border: 2px dashed var(--color-line);
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  background: var(--color-white);
}

/* ===================
   SOCIAL PLATFORMS
   =================== */

.social-platforms {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.platform-link {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 2px solid var(--color-line);
  border-radius: var(--radius);
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.platform-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.platform-link:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.platform-link:hover::before {
  transform: scaleX(1);
}

.platform-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 20%;
  padding: 12px;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  transition: all var(--transition-bounce);
}

.platform-link:hover .platform-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
}

.platform-name {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

/* ===================
   RESPONSIVE - TABLET
   =================== */

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .ghost-button.header-cta {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

  .meta-note {
    text-align: center;
    justify-content: center;
  }

  .cta-box {
    padding: var(--space-md);
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .social-platforms {
    flex-direction: column;
  }

  .platform-link {
    min-width: auto;
  }

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

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

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

/* ===================
   RESPONSIVE - MOBILE
   =================== */

@media (max-width: 520px) {
  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .burger {
    width: 40px;
    height: 40px;
  }

  .burger-line {
    width: 20px;
  }

  .mobile-nav a {
    font-size: 24px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-bg-text {
    font-size: clamp(48px, 16vw, 88px);
    letter-spacing: 4px;
    top: 16px;
    align-items: flex-start;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-portrait::before {
    display: none;
  }

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

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

  .pricing-section .card h3 {
    min-height: auto;
  }

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

  .about-stats > div:last-child {
    grid-column: span 2;
  }
}
