/* ─── swissflow24.ai — Website Styles ──────────── */

:root {
  --blue-dark: #0a3d62;
  --blue-mid: #1e6091;
  --blue-light: #2980b9;
  --blue-bg: #f0f7ff;
  --green: #27ae60;
  --gray: #666;
  --gray-light: #e0e0e0;
}

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

body {
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* ─── Navigation ─────────────────────────── */

#nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 61, 98, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.nav-logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--blue-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  opacity: 1 !important;
}

/* ─── Hero ─────────────────────────────────── */

#hero {
  margin-top: 70px;
  min-height: 500px;
  background: linear-gradient(135deg, #0a3d62 0%, #1e6091 50%, #2980b9 100%);
  color: white;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
}

.hero-content { flex: 1; max-width: 600px; }
.hero-content h1 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 span { color: #74d4f7; }
.hero-content p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }

.hero-buttons { display: flex; gap: 15px; }

.hero-image { flex: 1; text-align: center; }
.hero-image img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn-primary {
  background: var(--blue-light);
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41,128,185,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* ─── Sections ─────────────────────────────── */

section { padding: 60px 40px; max-width: 1200px; margin: 0 auto; }

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 40px;
}

/* ─── Services Grid ────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--blue-light);
}

.service-card img {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 20px;
  color: var(--blue-dark);
  margin-bottom: 10px;
  text-align: center;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.service-card ul { list-style: none; margin-bottom: 15px; }
.service-card ul li { font-size: 13px; padding: 3px 0; }

.card-link {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* ─── Pricing ──────────────────────────────── */

.pricing-subtitle {
  font-size: 20px;
  color: var(--blue-dark);
  margin: 40px 0 15px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 20px;
}

.pricing-grid.two-col {
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
}

.price-card {
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  background: white;
}

.price-card.featured {
  border-color: var(--blue-light);
  background: var(--blue-bg);
  transform: scale(1.03);
}

.price-name { font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.price-amount { font-size: 32px; font-weight: 800; color: var(--blue-light); margin: 8px 0; }
.price-period { font-size: 12px; color: var(--gray); }
.price-features { text-align: left; margin-top: 12px; }
.price-features div { font-size: 12px; padding: 4px 0; }
.check { color: var(--green); font-weight: bold; }
.cross { color: #ccc; }

/* ─── Setup Wizard ────────────────────────── */

.setup-step {
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.setup-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.setup-header img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.setup-header h3 { font-size: 24px; color: var(--blue-dark); }
.setup-header p { color: var(--gray); font-size: 15px; }

.setup-steps { display: flex; flex-direction: column; gap: 25px; }

.step {
  display: flex;
  gap: 20px;
  align-items: start;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}

.step-number {
  background: var(--blue-light);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 { font-size: 17px; color: var(--blue-dark); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: #444; margin-bottom: 8px; }
.step-content a { color: var(--blue-light); }

.step-note {
  background: #e8f5e9;
  border-left: 4px solid var(--green);
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 10px;
}

.setup-btn { margin-top: 25px; }

/* ─── Contact ──────────────────────────────── */

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border: 2px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.contact-card h3 { font-size: 24px; color: var(--blue-dark); }
.contact-role { color: var(--blue-light); font-weight: 600; margin-bottom: 20px; }
.contact-details { text-align: left; margin-bottom: 25px; }
.contact-details p { font-size: 15px; padding: 5px 0; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 5px;
}

.btn-email {
  background: var(--blue-light);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 5px;
}

.contact-quote {
  background: var(--blue-bg);
  border-left: 4px solid var(--blue-light);
  border-radius: 12px;
  padding: 30px;
  font-style: italic;
  color: #444;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-author { font-weight: 600; color: var(--blue-dark); margin-top: 15px; font-style: normal; }

/* ─── Footer ──────────────────────────────── */

footer {
  background: var(--blue-dark);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer-logo { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.footer-copy { font-size: 12px; opacity: 0.6; margin-top: 10px; }

/* ─── Language Switcher ─────────────────────── */

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.25);
}

.lang-btn.active {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

/* ─── Fade-in Animation ────────────────────── */

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

.fade-in-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ─── Responsive ──────────────────────────── */

@media (max-width: 768px) {
  #nav { padding: 12px 20px; flex-direction: column; gap: 10px; }
  .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
  #hero { flex-direction: column; text-align: center; padding: 40px 20px; }
  .hero-content h1 { font-size: 28px; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-height: 250px; }
  section { padding: 40px 20px; }
  .section-title { font-size: 24px; }
  .pricing-grid, .pricing-grid.two-col { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .setup-header { flex-direction: column; text-align: center; }
  .price-card.featured { transform: none; }
}