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

:root {
  --white: #ffffff;
  --light-gray: #f5f5f7;
  --medium-gray: #e8e8ed;
  --dark-gray: #86868b;
  --black: #1d1d1f;
  --accent-blue: #0071e3;
  --accent-teal: #00a6a6;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --border-light: #d2d2d7;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

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

.brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-cta {
  background: var(--accent-blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #0077ed;
  color: var(--white);
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hero-minimal {
  padding: 140px 0 100px;
  background: var(--white);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-text p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent-blue);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 28px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0077ed;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 28px;
  border: 2px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px);
}

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

.visual-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--light-gray);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.visual-prompt {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}

.innovation-section {
  padding: 120px 0;
  background: var(--light-gray);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-intro h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.technology-section {
  padding: 120px 0;
  background: var(--white);
}

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

.content-image .visual-placeholder {
  aspect-ratio: 4/3;
}

.content-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.content-text > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-blue);
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.experiences-section {
  padding: 120px 0;
  background: var(--light-gray);
}

.section-header-center {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-header-center h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-header-center p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.experience-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.experience-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.experience-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.experience-image .visual-placeholder {
  height: 100%;
  border-radius: 0;
}

.experience-info {
  padding: 32px;
}

.experience-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.experience-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.solutions-section {
  padding: 120px 0;
  background: var(--white);
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.plan-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.featured-plan {
  background: var(--text-primary);
  color: var(--white);
}

.featured-plan .plan-header h3,
.featured-plan .stat-number,
.featured-plan .plan-features li {
  color: var(--white);
}

.featured-plan .price-currency,
.featured-plan .price-period {
  color: var(--dark-gray);
}

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: -1px;
}

.price-currency {
  font-size: 20px;
  color: var(--text-secondary);
  margin-left: 8px;
}

.price-period {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  margin-bottom: 40px;
}

.plan-features li {
  padding: 16px 0;
  font-size: 16px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--accent-blue);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background: #0077ed;
  transform: scale(1.02);
}

.visit-section {
  padding: 120px 0;
  background: var(--light-gray);
}

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

.visit-image .visual-placeholder {
  aspect-ratio: 4/3;
}

.visit-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.visit-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.connect-section {
  padding: 120px 0;
  background: var(--white);
}

.connect-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.connect-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.connect-info > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 16px;
  color: var(--text-primary);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--white);
}

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

.form-submit {
  padding: 18px;
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #0077ed;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.form-success {
  display: none;
  padding: 24px;
  background: var(--light-gray);
  border-left: 4px solid var(--accent-teal);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-primary);
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.main-footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
}

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

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

.footer-col ul li a {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--dark-gray);
  font-size: 14px;
}

.cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 10000;
  display: none;
}

.cookie-notification.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cookie-wrapper p {
  flex: 1;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 16px;
}

.btn-accept,
.btn-decline {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-accept:hover {
  background: #0077ed;
}

.btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-light);
}

.btn-decline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.privacy-main {
  padding-top: 70px;
}

.privacy-header {
  padding: 100px 0 60px;
  background: var(--light-gray);
  text-align: center;
}

.privacy-header h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}

.update-date {
  font-size: 16px;
  color: var(--text-secondary);
}

.privacy-body {
  padding: 80px 0;
  background: var(--white);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.policy-section {
  margin-bottom: 60px;
}

.policy-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.policy-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.policy-section p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.policy-section ul {
  margin: 20px 0 20px 30px;
}

.policy-section ul li {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-box {
  padding: 32px;
  background: var(--light-gray);
  border-left: 4px solid var(--accent-blue);
  border-radius: 8px;
  margin: 24px 0;
}

.contact-box p {
  margin-bottom: 12px;
}

.contact-box strong {
  color: var(--text-primary);
}

.back-action {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    padding: 40px;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -6px);
  }

  .hero-container,
  .content-split,
  .visit-grid,
  .connect-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

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

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

@media (max-width: 640px) {
  .nav-container {
    padding: 0 20px;
  }

  .section-container,
  .hero-container,
  .footer-container,
  .policy-container {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .section-intro h2,
  .section-header-center h2 {
    font-size: 36px;
  }

  .stats-grid,
  .experience-grid,
  .plans-container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .privacy-header h1 {
    font-size: 36px;
  }
}
