@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400;1,700&family=Libre+Baskerville:ital,wght@1,400;1,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --aqua-white: #F8FAFC;
  --flow-canvas: #F1F5F9;
  --pale-sky: #E2E8F0;
  --deep-navy: #0C4A6E;
  --ocean-core: #0369A1;
  --sky-edge: #0284C7;
  --pale-cyan: #BAE6FD;
  --ocean-white: rgba(248, 250, 252, 0.98);
  --ocean-canvas: rgba(241, 245, 249, 0.98);
  --ocean-blue: #0284C7;
  --deep-sky: #0369A1;
  
  --font-serif: 'Libre Baskerville', serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --sidebar-width: 64px;
  --sidebar-expanded: 100px;
  --content-offset: 64px;
  
  --transition-smooth: 0.32s ease;
  --transition-spring: 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--ocean-core);
  background: var(--aqua-white);
  overflow-x: hidden;
}

/* Скрыть скроллбары каруселей */
.about-panels::-webkit-scrollbar,
.reviews-carousel::-webkit-scrollbar {
  height: 6px;
}

.about-panels::-webkit-scrollbar-track,
.reviews-carousel::-webkit-scrollbar-track {
  background: var(--pale-sky);
}

.about-panels::-webkit-scrollbar-thumb,
.reviews-carousel::-webkit-scrollbar-thumb {
  background: var(--sky-edge);
  border-radius: 3px;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

strong, b, p {
  color: inherit;
}


.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(180deg, var(--ocean-white), var(--ocean-canvas));
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border-right: 2.5px solid rgba(14, 165, 233, 0.28);
  box-shadow: 8px 0 48px rgba(14, 165, 233, 0.14);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
  transition: width var(--transition-spring);
  overflow: hidden;
}

.sidebar:hover {
  width: var(--sidebar-expanded);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  width: 100%;
  padding-left: 16px;
}

.sidebar-logo svg {
  min-width: 32px;
  width: 32px;
  height: 32px;
  stroke: var(--deep-sky);
  stroke-width: 2.5;
  fill: none;
}

.sidebar-logo-text {
  font-family: var(--font-serif);
  font-size: 9px;
  font-weight: 600;
  color: var(--ocean-core);
  letter-spacing: -0.01em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.sidebar:hover .sidebar-logo-text {
  opacity: 1;
  transition-delay: 0.08s;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-left: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-item svg {
  min-width: 28px;
  width: 28px;
  height: 28px;
  stroke: var(--sky-edge);
  stroke-width: 2.5;
  fill: none;
  transition: var(--transition-smooth);
}

.nav-item:hover svg {
  transform: scale(1.1);
  stroke: var(--ocean-blue);
}

.nav-item-text {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-navy);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.sidebar:hover .nav-item-text {
  opacity: 1;
  transition-delay: 0.12s;
}

.sidebar-cta {
  margin-bottom: 24px;
  width: 100%;
  padding: 0 18px;
}

.cta-button {
  display: none;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sky));
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.45);
  transition: var(--transition-spring);
}

.sidebar:hover .cta-button {
  display: block;
  animation: fadeIn 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(14, 165, 233, 0.55);
}


.main-content {
  padding-left: var(--content-offset);
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--aqua-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(186, 230, 253, 0.4) 0%, transparent 48%),
    radial-gradient(ellipse at 65% 45%, rgba(125, 211, 252, 0.35) 0%, transparent 52%),
    radial-gradient(ellipse at 85% 75%, rgba(224, 242, 254, 0.3) 0%, transparent 44%),
    radial-gradient(ellipse at 35% 85%, rgba(240, 249, 255, 0.25) 0%, transparent 40%);
  animation: blobFloat 28s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes blobFloat {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  100% { transform: translateX(64px) translateY(48px) rotate(12deg); }
}

.hero-content {
  padding-left: 80px;
  z-index: 1;
  position: relative;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--deep-navy);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--ocean-core);
  line-height: 1.6;
  max-width: 520px;
  margin-top: 24px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 52px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sky));
  color: white;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 80px rgba(14, 165, 233, 0.45);
  transition: var(--transition-spring);
}

.hero-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 96px rgba(14, 165, 233, 0.55);
}

.hero-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ocean-core);
}

.hero-secondary svg {
  width: 18px;
  height: 18px;
  stroke: var(--deep-sky);
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/5;
  border: 2px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 48px 192px rgba(14, 165, 233, 0.18);
  background: var(--flow-canvas);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-geo-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-geo-lines line {
  stroke: var(--sky-edge);
  stroke-width: 0.05;
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ocean-core);
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep-sky);
  stroke-width: 2;
}

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


.section {
  padding: 112px 80px;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-edge);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--deep-navy);
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ocean-core);
  max-width: 600px;
  margin-top: 24px;
}


.services-section {
  background: var(--aqua-white);
}

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

.service-card {
  position: relative;
  background: white;
  border: 2px solid rgba(14, 165, 233, 0.15);
  transition: var(--transition-spring);
  overflow: hidden;
}

.service-card:hover {
  transform: translateZ(24px) scale(1.04);
  box-shadow: 0 32px 128px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.22);
  z-index: 86;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 24px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 16px;
  color: var(--ocean-core);
  line-height: 1.7;
}

.service-card-price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--sky-edge);
  margin-top: 16px;
  display: block;
}


.about-section {
  background: var(--flow-canvas);
}

.about-panels {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 0 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.about-panel {
  min-width: 280px;
  flex-shrink: 0;
  background: white;
  border: 2px solid rgba(14, 165, 233, 0.15);
  scroll-snap-align: start;
  transition: var(--transition-smooth);
}

.about-panel:hover {
  border-color: rgba(14, 165, 233, 0.25);
}

.about-panel-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-panel-content {
  padding: 24px;
}

.about-panel-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.about-panel-text {
  font-size: 16px;
  color: var(--ocean-core);
  line-height: 1.7;
}


.process-section {
  background: var(--aqua-white);
}

.process-canvas {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.process-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: var(--transition-spring);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.35);
}

.process-node:active {
  cursor: grabbing;
}

.process-node:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 64px rgba(14, 165, 233, 0.45);
}

.process-node svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.process-node-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-navy);
  white-space: nowrap;
}


.advantages-section {
  background: var(--flow-canvas);
}

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

.advantage-card {
  background: white;
  border: 2px solid rgba(14, 165, 233, 0.15);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-spring);
}

.advantage-card:hover {
  flex-grow: 1.4;
  border-color: rgba(14, 165, 233, 0.25);
  transform: translateZ(12px);
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.2);
  z-index: 86;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  stroke: var(--sky-edge);
  stroke-width: 2;
}

.advantage-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-navy);
  display: block;
  margin-bottom: 8px;
}

.advantage-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.advantage-text {
  font-size: 14px;
  color: var(--ocean-core);
  line-height: 1.6;
}


.achievements-section {
  background: linear-gradient(135deg, var(--deep-navy), var(--ocean-core));
  padding: 48px 0;
  overflow: hidden;
}

.achievements-marquee {
  display: flex;
  gap: 72px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.achievement-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.achievement-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.achievement-label {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--pale-cyan);
}


.team-section {
  background: var(--aqua-white);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-item {
  padding: 20px 24px;
  border: 2px solid rgba(14, 165, 233, 0.12);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.team-item:hover,
.team-item.active {
  border-color: rgba(14, 165, 233, 0.25);
  background: white;
  z-index: 86;
}

.team-item-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-navy);
}

.team-item-role {
  font-size: 14px;
  color: var(--ocean-core);
  margin-top: 4px;
}

.team-photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-photo img {
  border: 2px solid rgba(14, 165, 233, 0.15);
  transition: var(--transition-smooth);
}

.team-photo img:first-child {
  grid-column: span 2;
}


.faq-section {
  background: var(--flow-canvas);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-left-color: var(--sky-edge);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-navy);
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--sky-edge);
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ocean-core);
}


.reviews-section {
  background: var(--aqua-white);
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.review-card {
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: white;
  border: 2px solid rgba(14, 165,233, 0.15);
  padding: 24px;
  transition: var(--transition-spring);
}

.review-card:hover {
  z-index: 86;
}

.review-card.active {
  transform: scale(1.15);
  z-index: 100;
  border-color: rgba(14,165,233, 0.3);
}

.review-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--deep-navy);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.review-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-navy);
}

.review-date {
  font-size: 12px;
  color: var(--ocean-core);
}


.contact-section {
  background: var(--flow-canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--sky-edge);
  stroke-width: 2;
}

.contact-item span {
  font-size: 16px;
  color: var(--ocean-core);
}

.contact-map {
  width: 100%;
  height: 400px;
  border: 2px solid rgba(14, 165, 233, 0.2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--sky-edge);
  background: white;
  font-size: 16px;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--deep-navy);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.contact-form button {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sky));
  color: white;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.4);
}


.site-footer {
  background: var(--pale-sky);
  border-top: 3px solid var(--sky-edge);
  padding: 64px 80px 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  stroke: var(--deep-sky);
  stroke-width: 2.5;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-navy);
}

.footer-desc {
  font-size: 14px;
  color: var(--ocean-core);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--ocean-core);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--sky-edge);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ocean-core);
}


.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 400px;
  padding: 24px;
  background: white;
  border: 2px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 16px 64px rgba(14, 165, 233, 0.2);
  z-index: 9999;
  display: block;
}

.cookie-banner h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--ocean-core);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--ocean-blue), var(--deep-sky));
  color: white;
}

.cookie-btn.decline {
  background: var(--flow-canvas);
  color: var(--deep-navy);
  border: 2px solid rgba(14, 165, 233, 0.2);
}

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


.mobile-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ocean-white), var(--ocean-canvas));
  backdrop-filter: blur(64px);
  border: 2.5px solid rgba(14, 165, 233, 0.28);
  cursor: pointer;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--sky-edge);
  stroke-width: 2.5;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 250, 252, 0.99);
  backdrop-filter: blur(64px);
  z-index: 9998;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 24px;
}

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

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--deep-navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

.mobile-menu a:hover {
  color: var(--sky-edge);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  stroke: var(--deep-navy);
  stroke-width: 2;
}


.page-hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  background: var(--aqua-white);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 15% 25%, rgba(186, 230, 253, 0.3) 0%, transparent 48%),
    radial-gradient(ellipse at 65% 45%, rgba(125, 211, 252, 0.25) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}

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

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--deep-navy);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.page-hero p {
  font-size: 18px;
  color: var(--ocean-core);
  margin-top: 24px;
  max-width: 500px;
}

.page-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-visual img {
  width: 100%;
  max-width: 500px;
  border: 2px solid rgba(14, 165, 233, 0.2);
}


@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .sidebar {
    display: none;
  }
  
  .main-content {
    padding-left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 60px 32px;
  }
  
  .hero-visual {
    height: 50vh;
    padding: 0 32px;
  }
  
  .section {
    padding: 64px 32px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-layout {
    grid-template-columns: 1fr;
  }
  
  .about-panels {
    padding: 0 32px;
  }
  
  .cookie-banner {
    width: calc(100% - 48px);
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
  }
  
  .about-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
    overflow: visible;
  }
  
  .about-panel {
    min-width: 100%;
  }
  
  .reviews-carousel {
    padding: 24px 24px;
  }
  
  .review-card {
    min-width: 260px;
  }
  
  .team-photo {
    grid-template-columns: 1fr;
  }
  
  .team-photo img:first-child {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }
  
  .hero-cta {
    width: 100%;
    justify-content: center;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 48px 24px;
  }
  
  .site-footer {
    padding: 48px 24px 24px;
  }
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 48px; }