
:root {
  --bg: #FFFFFF;
  --bg-secondary: #F7F7F7;
  --accent: #ACACAC;
  --warm-peach: #F2F2F2;

  --text: #1F1F1F;
  --muted: #6F6F6F;

  --btn-bg: #ACACAC;
  --btn-hover: #959595;

  --white: #FFFFFF;
  --border: rgba(172,172,172,.28);
  --shadow: rgba(0,0,0,.06);
  --shadow-md: rgba(0,0,0,.12);
  --font-main: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(255,253,252,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 30px var(--shadow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--btn-bg);
  color: var(--text) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--btn-hover) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(255,253,252,0.97);
  backdrop-filter: blur(30px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mobile-menu-close {
  display: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 8px 30px rgba(45,42,42,0.18);
}

.btn-primary:hover {
  background: #1a1818;
  box-shadow: 0 12px 40px rgba(45,42,42,0.28);
}

.btn-secondary {
  background: var(--btn-bg);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--btn-hover);
  box-shadow: 0 8px 30px rgba(239,216,210,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(45,42,42,0.18);
}

.btn-outline:hover {
  background: var(--warm-peach);
  border-color: transparent;
}

.btn-large {
  padding: 18px 44px;
  font-size: 1rem;
}



.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-title.xl { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.section-title.lg { font-size: clamp(1.8rem, 4vw, 3rem); }
.section-title.md { font-size: clamp(1.4rem, 3vw, 2.2rem); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* BLOBS */
.blob {
  position: absolute;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  padding-top: 90px;
  background: var(--bg);
  position: relative;
  overflow: clip;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F6E8E2 0%, transparent 70%);
  top: -100px; right: -100px;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #EFD8D2 0%, transparent 70%);
  bottom: 0; left: -50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
 
  padding: 80px 60px 80px 40px;
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-peach);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.hero-stat {
  position: relative;
  padding-left: 16px;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 2px; height: 30px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-image-wrapper {
  
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* HERO PHOTO PLACEHOLDER */
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(160deg, var(--warm-peach) 0%, var(--accent) 50%, #e8c4b8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-main);
  color: var(--muted);
  position: relative;
}

.hero-photo-placeholder svg {
  opacity: 0.4;
}

.hero-photo-placeholder p {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero-floating-card {
  position: absolute;
  bottom: 50px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 20px 60px var(--shadow-md);
  min-width: 200px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card-title {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-floating-card-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-floating-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6dbf7e;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
}

.hero-floating-card-2 {
  position: absolute;
  top: 30px;
  right: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 20px 60px var(--shadow-md);
  z-index: 2;
  animation: float 5s ease-in-out infinite reverse;
}

.hero-floating-card-2 .rating {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.hero-floating-card-2 .stars {
  color: #f5a623;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.hero-floating-card-2 p {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
/* SERVICES */
.section { padding: 120px 0; }
.services-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}
.services-sidebar { position: sticky; top: 120px; }
.services-sidebar .section-title { margin-bottom: 24px; }
.services-sidebar p {
  font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 40px;
}
.services-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text);
  border-bottom: 1px solid var(--text); padding-bottom: 2px;
  transition: opacity 0.3s;
}
.services-link:hover { opacity: 0.6; }
.services-grid { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row-idx {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text3); margin-bottom: 12px;
}
.service-row-name {
  font-size: 20px; font-weight: 400; color: var(--text);
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.service-row-desc {
  font-size: 13px; color: var(--text2); line-height: 1.7;
  max-width: 480px;
}
.service-row-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text2);
  border: 1px solid var(--border); padding: 6px 14px;
  white-space: nowrap; align-self: flex-start;
}
.service-row:hover .service-row-name { color: var(--text2); transition: color 0.3s; }
@media(max-width:1000px){
  .services-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-sidebar { position: static; }
}
@media(max-width:600px){
  .service-row { grid-template-columns: 1fr; }
  .service-row-tag { display: none; }
}


/* ===================== ABOUT ===================== */
.about {
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: clip;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

/* ABOUT PHOTO PLACEHOLDER */
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--warm-peach) 0%, var(--accent) 60%, #deb8ae 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-main);
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(45,42,42,0.08), transparent);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.about-photo-placeholder p {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 1;
}

.about-photo-placeholder svg { opacity: 0.4; z-index: 1; }

.about-cert-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 20px 60px var(--shadow-md);
  text-align: center;
  min-width: 140px;
}

.about-cert-badge .num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  display: block;
}

.about-cert-badge .label {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.about-exp-badge {
  position: absolute;
  top: 40px;
  left: -28px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(45,42,42,0.2);
}

.about-exp-badge .num {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  color: #fff;
}

.about-exp-badge .label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.about-text .section-label { margin-bottom: 12px; }

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

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-highlight-icon {
  width: 32px; height: 32px;
  background: var(--warm-peach);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-highlight-text {
  font-family: var(--font-main);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ===================== WHY ===================== */
.why {
  padding: 120px 0;
  background: var(--bg);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-feature {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.3s;
  position: relative;
}

.why-feature:hover { background: var(--warm-peach); }

.why-feature:nth-child(1) { border-radius: var(--radius-sm) 0 0 0; }
.why-feature:nth-child(2) { border-radius: 0 var(--radius-sm) 0 0; }
.why-feature:last-child:nth-child(odd) { border-radius: 0 0 0 var(--radius-sm); grid-column: span 2; }
.why-feature:nth-last-child(2) { border-radius: 0 0 0 var(--radius-sm); }
.why-feature:nth-last-child(1) { border-radius: 0 0 var(--radius-sm) 0; }

.why-check {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-feature-title {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.why-feature-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.why-text .section-title { margin-bottom: 20px; }

.why-text > p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-cta-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.why-cta-mini-text {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===================== PRICES ===================== */
.prices {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.prices-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.prices-header .section-label { justify-content: center; }

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.price-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 30px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px var(--shadow-md);
}

.price-category-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}

.price-category-header h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.price-items { padding: 8px 0; }

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
  transition: background 0.2s;
}

.price-item:hover { background: var(--bg-secondary); }

.price-item-name {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 400;
}

.price-item-cost {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.price-item-cost span {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
}

.price-note {
  text-align: center;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--warm-peach);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  letter-spacing: 0.01em;
}

/* ===================== PORTFOLIO ===================== */
.portfolio {
  padding: 120px 0;
  background: var(--bg);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 12px;
    gap: 16px;
}

/* PORTFOLIO PHOTO PLACEHOLDERS */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.portfolio-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-img-placeholder { transform: scale(1.05); }

.portfolio-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.6s ease;
  font-family: var(--font-main);
}
.ph-11 {
  grid-column: 1;
  grid-row: 1 / span 20;
}
.ph-12 {
  grid-column: 1;
  grid-row: 21 / span 27;
}
.ph-13 {
  grid-column: 1;
  grid-row: 48 / span 27;
}
.ph-21 {
  grid-column: 2;
  grid-row: 1 / span 10;
}

.ph-22 {
  grid-column: 2;
  grid-row: 11 / span 20;
}

.ph-23 {
  grid-column: 2;
  grid-row: 31 / span 20;
}
.ph-24 {
  grid-column: 2;
  grid-row: 51 / span 27;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,42,42,0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-label {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-img-placeholder .ph-icon {
  opacity: 0.35;
}

.portfolio-img-placeholder .ph-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45,42,42,0.5);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: clip;
}

.cta-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F2F2F2 0%, transparent 70%);
  top: -100px; left: -100px;
}

.cta-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ACACAC 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--text) 0%, #3d3838 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,216,210,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,232,226,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cta-label-text::before {
  content: '';
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.3);
}

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-cta-main {
  background: var(--accent);
  color: var(--text);
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-main:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(239,216,210,0.3);
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--text);
  padding: 60px 0 36px;
}

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

.footer-brand-name {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-brand-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.footer-ig-btn:hover {
  background: rgba(239,216,210,0.15);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-stats-mobile {
  display: none;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 80px 40px 80px 28px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .about-inner { gap: 50px; }
  .why-inner { gap: 60px; }
  .cta-inner { padding: 60px; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .hero-badge,
.hero-blob-1,

  .hero-blob-2 {
   
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hero-visual {
    order: -1;
    aspect-ratio: 3/4;
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 0px 0px;
  }

 

  .hero-image-wrapper img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-photo-placeholder { min-height: 280px; }

  .hero-content {
    padding: 48px 20px 60px;
  }

  .hero-floating-card { bottom: 24px; left: 16px; }
  .hero-floating-card-2 { top: 20px; right: 16px; }

  .sc-1, .sc-2, .sc-3, .sc-4,
  .sc-5, .sc-6, .sc-7, .sc-8 { grid-column: span 6 !important; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-cert-badge { right: 0; bottom: -12px; }

  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-features { order: 2; }
  .why-text { order: 1; }

  .portfolio-header { flex-direction: column; align-items: flex-start; }

  .cta-inner { grid-template-columns: 1fr; padding: 48px 28px; }
  .cta-actions { flex-direction: row; justify-content: flex-start; align-items: center; flex-wrap: wrap; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .container { padding: 0 20px; }
}
@media (max-width: 768px) {
  .hero-stats {
    order: 1;
    gap: 20px;
     margin: 20px 0px;
   display: flex;
  }
  .hero-actions {
    order: 2;
  }

  .hero-visual {
    aspect-ratio: auto;
  }


  .hero-image-wrapper {
    height: 55vh; /* <-- вот это режет весь блок */
    overflow: hidden;
  }
.hero-title {
  margin-top: 6px;
  margin-bottom: 0px;

}
  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
     object-fit: cover;
  object-position: center 20%;
  
  }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }

  .hero-content { padding: 8px 16px 12px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-desc { font-size: 0.9rem; margin-bottom: 14px; display: none;}
  .hero-stats { gap: 24px; }
  .hero-floating-card, .hero-floating-card-2 { display: none; }
  .hero-stat-num { font-size: 1.4rem; }

  .section { padding: 80px 0; }
  .services { padding: 80px 0; }
  .about { padding: 80px 0; }
  .why { padding: 80px 0; }
  .prices { padding: 80px 0; }
  .portfolio { padding: 80px 0; }
  .cta-section { padding: 80px 0; }

  .sc-1, .sc-2, .sc-3, .sc-4,
  .sc-5, .sc-6, .sc-7, .sc-8 { grid-column: span 12 !important; }

  .about-highlights { grid-template-columns: 1fr; }
  .about-exp-badge { left: -8px; padding: 12px 16px; }
  .about-exp-badge .num { font-size: 1.3rem; }
  .about-cert-badge { right: 0; bottom: -12px; padding: 14px 18px; }
  .about-cert-badge .num { font-size: 1.5rem; }

  .why-features { grid-template-columns: 1fr; }
  .why-feature:nth-child(n) { border-radius: 0; }
  .why-feature { padding: 24px 20px; }
  .why-feature:last-child:nth-child(odd) { grid-column: span 1; }

  .portfolio-masonry {
        grid-template-columns: 1fr;
    }
.portfolio-overlay {
        opacity: 1;
        transition: none;
    }
    .portfolio-item {
        grid-column: span 1 !important;
    }
  .cta-inner { padding: 32px 20px; }
  .cta-title { font-size: 1.5rem; }
  .cta-sub { font-size: 0.88rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-main { text-align: center; justify-content: center; width: 100%; padding: 16px 28px; font-size: 0.88rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .btn-large { padding: 14px 28px; font-size: 0.88rem; }

  .prices-grid { grid-template-columns: 1fr; }
  .price-category-header { padding: 20px 20px 16px; }
  .price-item { padding: 12px 20px; }

  .section-title.lg { font-size: clamp(1.5rem, 6vw, 2rem); }

  .services-sidebar .section-title { font-size: 1.5rem; }
  .service-row-name { font-size: 17px; }
  .service-row-desc { font-size: 12px; }
  .service-row { padding: 24px 0; }

  .portfolio-header { gap: 20px; }

  .hero-floating-card { padding: 12px 16px; min-width: auto; }
  .hero-floating-card-title { font-size: 0.72rem; }
  .hero-floating-card-sub { font-size: 0.65rem; }
  .hero-floating-card-2 { padding: 12px 14px; }
  .hero-floating-card-2 .rating { font-size: 1rem; }
}

@media (max-width: 400px) {
  .nav-logo { font-size: 1rem; }
  .nav-logo span { font-size: 0.6rem; }
  .hero-title { font-size: 1.6rem; }
  .hero-badge { font-size: 0.68rem; padding: 6px 14px;  display: "none"}
  .hero-stats { gap: 16px; }
  .hero-floating-card, .hero-floating-card-2 { display: none; }
  .cta-inner { padding: 28px 16px; }
  .cta-title { font-size: 1.3rem; }
  .btn-large { padding: 14px 24px; font-size: 0.84rem; }
  .about-exp-badge { top: 20px; left: -4px; }
}

/* AOS overrides */
[data-aos] { pointer-events: auto !important; }
