* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #132033;
  --muted: #5e6b7a;
  --card: #ffffff;
  --blue: #0f4ea8;
  --blue-dark: #0c3f88;
  --blue-light: #2d8cff;
  --soft: #f7fbff;
  --border: rgba(15, 78, 168, 0.08);
  --shadow: 0 16px 40px rgba(12, 23, 40, 0.08);
  --shadow-strong: 0 24px 60px rgba(12, 23, 40, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.dark-mode {
  --bg: #08111d;
  --text: #eaf1ff;
  --muted: #9fb0c7;
  --card: #0d1828;
  --blue: #2d8cff;
  --blue-dark: #1d6fe0;
  --blue-light: #6eb5ff;
  --soft: #0b1524;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.32);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.page-hero {
  background: linear-gradient(135deg, #0f223b, #0f4ea8);
  color: white;
}

.page-hero .section-title p {
  color: rgba(255, 255, 255, 0.82);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title p {
  max-width: 720px;
  margin: auto;
  color: var(--muted);
  line-height: 1.8;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 32, 51, 0.08);
  animation: fadeDown 0.7s ease;
}

body.dark-mode .navbar,
body.dark-mode .mobile-menu {
  background: rgba(8, 17, 29, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a,
.mobile-menu a {
  color: var(--text);
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: var(--blue);
}

.nav-links a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.mobile-menu a:hover::after {
  width: 100%;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 12px 24px rgba(15, 78, 168, 0.22);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.nav-btn,
.primary-btn,
.dark-btn {
  background: var(--blue);
  color: white;
}

.primary-btn:hover,
.dark-btn:hover,
.nav-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 78, 168, 0.18);
}

.primary-btn::before,
.nav-btn::before,
.dark-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.primary-btn:hover::before,
.nav-btn:hover::before,
.dark-btn:hover::before {
  transform: translateX(120%);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: transparent;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.outline-btn {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  background: var(--blue);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px 5%;
  background: white;
  border-top: 1px solid rgba(19, 32, 51, 0.08);
}

.mobile-menu a {
  padding: 10px 0;
}

.mobile-menu-btn {
  display: inline-block;
  background: var(--blue);
  color: white !important;
  padding: 12px 20px;
  border-radius: 999px;
  text-align: center;
  margin-top: 8px;
}

.menu-open .mobile-menu {
  display: flex;
  animation: fadeDown 0.35s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 25, 49, 0.78), rgba(15, 78, 168, 0.72)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: white;
}

.premium-hero {
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 8% 6%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: pulseGlow 7s ease-in-out infinite;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  transition: transform 0.25s ease;
}

.hero-glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(45, 140, 255, 0.28);
  top: 60px;
  right: 80px;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.14);
  bottom: 40px;
  left: 40px;
  animation: floatGlow 8s ease-in-out infinite 2s;
}

.hero-grid,
.hero-text,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.tag.blue {
  background: #eaf2ff;
  color: var(--blue);
}

body.dark-mode .tag.blue {
  background: #14243b;
  color: #9fc4ff;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: softFadeUp 0.9s ease both;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 28px;
  animation: softFadeUp 0.9s 0.15s ease both;
}

.hero-text .tag {
  animation: softFadeUp 0.9s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: softFadeUp 0.9s 0.3s ease both;
}

.hero-mini-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: softFadeUp 0.9s 0.45s ease both;
}

.hero-mini-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 14px;
}

.hero-mini-stats div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7ec2ff, #ffffff);
  opacity: 0.65;
}

.hero-mini-stats strong {
  font-size: 24px;
  color: white;
}

.hero-mini-stats span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(10px);
  animation: floating 4s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.premium-card {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.hero-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  transition: transform 0.6s ease;
}

.hero-card:hover img {
  transform: scale(1.04);
}

.dashboard-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-card h4 {
  margin-bottom: 14px;
  color: white;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.stat-box h3 {
  font-size: 30px;
  color: white;
  margin-bottom: 6px;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.logo-strip {
  padding: 22px 0;
  border-bottom: 1px solid rgba(19, 32, 51, 0.08);
  background: #f8fbff;
}

body.dark-mode .logo-strip {
  background: #0b1524;
  border-color: rgba(255, 255, 255, 0.06);
}

.logo-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-strip-inner span {
  color: var(--muted);
  font-weight: 600;
}

.logo-items {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-items div {
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--blue);
  animation: floatBadge 5s ease-in-out infinite;
}

.logo-items div:nth-child(2) { animation-delay: 0.3s; }
.logo-items div:nth-child(3) { animation-delay: 0.6s; }
.logo-items div:nth-child(4) { animation-delay: 0.9s; }
.logo-items div:nth-child(5) { animation-delay: 1.2s; }

body.dark-mode .logo-items div {
  background: linear-gradient(180deg, #0e1a2c, #0b1524);
  color: var(--text);
}

.stats-section {
  background: var(--soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat {
  padding: 24px;
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.stat h2,
.result,
.float-card h3,
.pricing-card h2 {
  font-size: 40px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2,
.section-title h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease, box-shadow 0.35s ease;
}

.about-image:hover img {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.floating-stats {
  position: absolute;
  left: -20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(420px, 92%);
}

.float-card {
  background: var(--blue);
  color: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 78, 168, 0.25);
  animation: floatMini 5s ease-in-out infinite;
}

.float-card:nth-child(2) {
  animation-delay: 0.8s;
}

.float-card p {
  color: rgba(255, 255, 255, 0.9);
}

.dark-bg {
  background: linear-gradient(180deg, #0e2540, #102b4a);
  color: white;
}

.dark-bg .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card,
.package-card,
.blog-card,
.story-card,
.contact-card,
.feature-card,
.process-card,
.pricing-card,
.info-box,
.testimonial-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card,
.package-card,
.blog-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card:hover,
.package-card:hover,
.blog-card:hover,
.story-card:hover,
.contact-card:hover,
.feature-card:hover,
.process-card:hover,
.pricing-card:hover,
.info-box:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-card img,
.package-card img,
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img,
.package-card:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin-bottom: 12px;
}

.card-body p {
  color: var(--muted);
  line-height: 1.7;
}

.featured {
  border: 2px solid rgba(15, 78, 168, 0.15);
}

.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}

.feature-card {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-large {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, #0f4ea8, #2d8cff);
  color: white;
}

.feature-large p,
.feature-large h3 {
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.process-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
  animation: pulseBox 3s ease-in-out infinite;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.story-card h3 {
  margin: 14px 0 12px;
}

.story-card p {
  color: var(--muted);
  line-height: 1.7;
}

.result {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 800;
}

.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial-card {
  display: none;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card.active {
  display: block;
  animation: fadeUp 0.6s ease;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text);
  margin: 18px 0;
}

.testimonial-card h4 {
  margin-bottom: 6px;
}

.testimonial-card small {
  color: var(--muted);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  padding: 30px;
  border-radius: 20px;
  background: var(--card);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.pricing-card h2 {
  margin: 14px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card li {
  margin: 10px 0;
  color: var(--muted);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  transform: scale(1.05);
}

.pricing-sub {
  color: var(--muted);
  margin-bottom: 16px;
}

.faq-wrap {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(12, 23, 40, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  padding-right: 54px;
  text-align: left;
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 20px 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-box {
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}

.info-box strong {
  display: block;
  margin-bottom: 6px;
}

.info-box p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-form,
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.popup-form input,
.popup-form textarea,
.popup-form select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 78, 168, 0.14);
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
  transform: translateY(-1px);
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .popup-form input,
body.dark-mode .popup-form textarea,
body.dark-mode .popup-form select {
  background: #0d1728;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulseWhatsapp 2.2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  background: #1ebe5d;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 998;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(19, 32, 51, 0.08);
  border-radius: 20px;
  padding: 10px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(12, 23, 40, 0.15);
  animation: slideUpSoft 0.6s ease;
}

body.dark-mode .mobile-sticky-cta {
  background: rgba(8, 17, 29, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

.mobile-cta-btn {
  min-height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.mobile-cta-btn.primary {
  background: var(--blue);
  color: white;
}

.mobile-cta-btn.whatsapp {
  background: #25d366;
  color: white;
}

.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #08111d, #0f223b);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  color: white;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #8bc3ff, #2d8cff 55%, #0f4ea8 100%);
  box-shadow: 0 0 0 10px rgba(45, 140, 255, 0.1), 0 0 40px rgba(45, 140, 255, 0.35);
  animation: spinPulse 1.3s linear infinite;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, 0.58);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 2000;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-strong);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
}

.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
}

.popup-close {
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  position: absolute;
  top: 18px;
  right: 18px;
}

.site-footer {
  background: #0d1b2f;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 70px;
}

body.dark-mode .site-footer {
  background: #050b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  color: white;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 28px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -14px) scale(1.08);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatMini {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseBox {
  0%, 100% {
    box-shadow: 0 0 0 rgba(15, 78, 168, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 10px 25px rgba(15, 78, 168, 0.2);
    transform: scale(1.04);
  }
}

@keyframes slideUpSoft {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseWhatsapp {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.48);
    transform: translateY(-4px);
  }
}

@keyframes spinPulse {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .card-grid,
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-stats {
    position: static;
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section,
  .page-hero {
    padding: 72px 0;
  }

  .section-title h2,
  .about-text h2 {
    font-size: 34px;
  }

  .feature-grid,
  .card-grid,
  .story-grid,
  .pricing-table,
  .process-grid,
  .stats-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-mini-stats {
    flex-direction: column;
    gap: 14px;
  }

  .hero-card img,
  .about-image img {
    height: 260px;
  }

  .section-title h2,
  .about-text h2 {
    font-size: 28px;
  }

  .testimonial-card,
  .contact-card,
  .process-card,
  .feature-card,
  .pricing-card,
  .story-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.agency-hero {
  min-height: 92vh;
}

.service-showcase-grid {
  grid-template-columns: repeat(3, 1fr);
}

.industry-group {
  margin-top: 20px;
}

.industry-heading {
  margin-bottom: 16px;
  font-size: 22px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.city-grid .story-card {
  background: linear-gradient(135deg, #0f4ea8, #1d74e8);
  color: white;
}

.city-grid .story-card p {
  color: rgba(255, 255, 255, 0.82);
}

.tools-grid .contact-card {
  min-height: 220px;
}

.intro-grid {
  align-items: center;
}

.bottom-cta .btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .service-showcase-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .service-showcase-grid,
  .industry-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }
}

.about-banner {
  background:
    linear-gradient(90deg, rgba(234, 245, 255, 0.96), rgba(234, 245, 255, 0.88)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1600&q=80")
    right center/cover no-repeat;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

.about-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background:
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.92) 75%) 0 0/26px 34px repeat-x;
  opacity: 0.9;
}

.about-banner-inner {
  max-width: 1180px;
}

.about-banner h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 12px 0 14px;
}

.about-banner p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumb {
  margin-top: 14px;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}

.about-intro-grid,
.story-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.about-copy h2,
.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-copy p,
.story-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-visual-card {
  position: relative;
  background: linear-gradient(135deg, #0f4ea8, #2d8cff);
  border-radius: 36px;
  padding: 28px;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow-strong);
}

.about-visual-card::before {
  content: "";
  position: absolute;
  inset: 24px auto auto 24px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  filter: blur(8px);
}

.about-visual-card img {
  position: relative;
  z-index: 2;
  max-height: 460px;
  width: auto;
  border-radius: 24px;
  object-fit: cover;
}

.about-visual-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  background: rgba(255,255,255,0.94);
  color: #132033;
  border-radius: 18px;
  padding: 14px 16px;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(12, 23, 40, 0.16);
}

.about-visual-badge strong {
  display: block;
  margin-bottom: 4px;
}

.about-visual-badge span {
  color: var(--muted);
  font-size: 0.95rem;
}

.mission-vision {
  background: #f6faff;
}

body.dark-mode .mission-vision {
  background: #0a1422;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.mv-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(15,78,168,0.12), rgba(45,140,255,0.16));
}

.mv-card h3 {
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--muted);
  line-height: 1.8;
}

.blue-highlight {
  padding-bottom: 10px;
}

.blue-highlight-bar {
  background: linear-gradient(135deg, #0f4ea8, #1d74e8);
  color: white;
  text-align: center;
  padding: 22px 24px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(15, 78, 168, 0.22);
}

.story-media-stack {
  position: relative;
  min-height: 460px;
}

.main-story-image {
  width: 78%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.overlay-story-image {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 42%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-strong);
}

.core-values {
  background: #f8fbff;
}

body.dark-mode .core-values {
  background: #0a1422;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.about-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-card-grid .blog-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-card-grid .btn {
  width: fit-content;
}

@media (max-width: 1100px) {
  .about-intro-grid,
  .story-split-grid,
  .mv-grid,
  .core-values-grid,
  .about-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .core-values-grid .info-box:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .about-banner {
    padding: 72px 0 90px;
    background-position: center right;
  }

  .about-intro-grid,
  .story-split-grid,
  .mv-grid,
  .core-values-grid,
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-visual-card {
    min-height: 380px;
  }

  .about-visual-card img {
    max-height: 340px;
  }

  .story-media-stack {
    min-height: 360px;
  }

  .main-story-image {
    width: 100%;
    height: 280px;
  }

  .overlay-story-image {
    width: 48%;
    height: 160px;
    bottom: -10px;
  }

  .blue-highlight-bar {
    border-radius: 28px;
    font-size: 1.1rem;
  }
}

.highlight-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.highlight-service-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f4f9ff);
  border: 1px solid rgba(15, 78, 168, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.highlight-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0f4ea8, #2d8cff);
}

.highlight-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(15, 78, 168, 0.2);
}

.service-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 78, 168, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.highlight-service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.highlight-service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.featured-service-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.featured-service-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.featured-service-grid.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.featured-service-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.featured-service-content p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.featured-service-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.service-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 18px;
  padding: 0;
}

.service-points li {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--text);
}

.services-category-block {
  margin-top: 36px;
}

.services-category-block h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.featured-outline {
  border: 2px solid rgba(15, 78, 168, 0.2);
  background: linear-gradient(180deg, #ffffff, #f0f7ff);
}

.service-detail-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

@media (max-width: 1100px) {
  .highlight-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-service-grid,
  .featured-service-grid.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .highlight-services-grid {
    grid-template-columns: 1fr;
  }

  .featured-service-media img {
    height: 280px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }
}

.services-category-stack {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.services-category-block {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,255,0.96));
  border: 1px solid rgba(15, 78, 168, 0.08);
  box-shadow: 0 16px 40px rgba(12, 23, 40, 0.06);
  overflow: hidden;
}

body.dark-mode .services-category-block {
  background: linear-gradient(180deg, rgba(13,24,40,0.96), rgba(10,20,34,0.96));
  border-color: rgba(255,255,255,0.06);
}

.services-category-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #0f4ea8, #2d8cff, #78bcff);
}

.category-header {
  margin-bottom: 22px;
}

.category-header h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.category-header p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.pretty-service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-card {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(12, 23, 40, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.service-detail-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #0f4ea8, #2d8cff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 23, 40, 0.12);
  border-color: rgba(15, 78, 168, 0.18);
}

.service-detail-card:hover::after {
  transform: scaleX(1);
}

.service-detail-card h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text);
}

.service-detail-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.featured-outline {
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid rgba(15, 78, 168, 0.18);
  box-shadow: 0 14px 34px rgba(15, 78, 168, 0.08);
}

body.dark-mode .featured-outline {
  background: linear-gradient(180deg, #102038, #0d1a2d);
}

.service-card-pop {
  animation: serviceFloat 5s ease-in-out infinite;
}

.service-card-pop:nth-child(2) { animation-delay: 0.4s; }
.service-card-pop:nth-child(3) { animation-delay: 0.8s; }
.service-card-pop:nth-child(4) { animation-delay: 1.2s; }
.service-card-pop:nth-child(5) { animation-delay: 1.6s; }
.service-card-pop:nth-child(6) { animation-delay: 2s; }
.service-card-pop:nth-child(7) { animation-delay: 2.4s; }

@keyframes serviceFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.services-category-block.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-category-block.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .pretty-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .services-category-block {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .category-header h3 {
    font-size: 1.5rem;
  }

  .pretty-service-grid {
    grid-template-columns: 1fr;
  }
}

.service-icon-card {
  padding-top: 20px;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  font-size: 1.45rem;
  background: linear-gradient(135deg, rgba(15, 78, 168, 0.12), rgba(45, 140, 255, 0.18));
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-icon-card:hover .service-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 24px rgba(15, 78, 168, 0.16);
  background: linear-gradient(135deg, rgba(15, 78, 168, 0.18), rgba(45, 140, 255, 0.28));
}

body.dark-mode .service-icon {
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.16), rgba(90, 170, 255, 0.2));
}

.service-banner {
  background:
    linear-gradient(90deg, rgba(234, 245, 255, 0.96), rgba(234, 245, 255, 0.9)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80")
    right center/cover no-repeat;
}

.highlight-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.highlight-service-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f4f9ff);
  border: 1px solid rgba(15, 78, 168, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.highlight-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0f4ea8, #2d8cff);
}

.highlight-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(15, 78, 168, 0.2);
}

.service-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 78, 168, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.highlight-service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.highlight-service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.services-category-stack {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.services-category-block {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,255,0.96));
  border: 1px solid rgba(15, 78, 168, 0.08);
  box-shadow: 0 16px 40px rgba(12, 23, 40, 0.06);
  overflow: hidden;
}

body.dark-mode .services-category-block {
  background: linear-gradient(180deg, rgba(13,24,40,0.96), rgba(10,20,34,0.96));
  border-color: rgba(255,255,255,0.06);
}

.services-category-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #0f4ea8, #2d8cff, #78bcff);
}

.category-header {
  margin-bottom: 22px;
}

.category-header h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.category-header p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.pretty-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail-card {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(12, 23, 40, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.service-detail-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #0f4ea8, #2d8cff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 23, 40, 0.12);
  border-color: rgba(15, 78, 168, 0.18);
}

.service-detail-card:hover::after {
  transform: scaleX(1);
}

.service-detail-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.service-detail-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.featured-outline {
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid rgba(15, 78, 168, 0.18);
  box-shadow: 0 14px 34px rgba(15, 78, 168, 0.08);
}

body.dark-mode .featured-outline {
  background: linear-gradient(180deg, #102038, #0d1a2d);
}

.service-card-pop {
  animation: serviceFloat 5s ease-in-out infinite;
}

.service-card-pop:nth-child(2) { animation-delay: 0.4s; }
.service-card-pop:nth-child(3) { animation-delay: 0.8s; }
.service-card-pop:nth-child(4) { animation-delay: 1.2s; }
.service-card-pop:nth-child(5) { animation-delay: 1.6s; }
.service-card-pop:nth-child(6) { animation-delay: 2s; }
.service-card-pop:nth-child(7) { animation-delay: 2.4s; }

.service-icon-card {
  padding-top: 20px;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  font-size: 1.45rem;
  background: linear-gradient(135deg, rgba(15, 78, 168, 0.12), rgba(45, 140, 255, 0.18));
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-icon-card:hover .service-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 24px rgba(15, 78, 168, 0.16);
  background: linear-gradient(135deg, rgba(15, 78, 168, 0.18), rgba(45, 140, 255, 0.28));
}

body.dark-mode .service-icon {
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.16), rgba(90, 170, 255, 0.2));
}

@keyframes serviceFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1100px) {
  .highlight-services-grid,
  .pretty-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .highlight-services-grid,
  .pretty-service-grid {
    grid-template-columns: 1fr;
  }

  .services-category-block {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .category-header h3 {
    font-size: 1.5rem;
  }
} 

.blog-hero-shell {
  padding-top: 40px;
  padding-bottom: 24px;
}

.blog-top-pills,
.blog-hero-tags,
.blog-filter-pills,
.mini-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-top-pills {
  justify-content: center;
  margin-bottom: 18px;
}

.blog-top-pills span,
.blog-hero-tags span,
.blog-filter-pills span,
.mini-pill-wrap span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(15, 78, 168, 0.08);
}

body.dark-mode .blog-top-pills span,
body.dark-mode .blog-hero-tags span,
body.dark-mode .blog-filter-pills span,
body.dark-mode .mini-pill-wrap span {
  background: #112036;
  color: #a7c9ff;
}

.blog-filter-pills span.active {
  background: var(--blue);
  color: white;
}

.blog-main-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

body.dark-mode .blog-main-hero {
  background: linear-gradient(135deg, #0d1b2f, #0b1524);
}

.blog-main-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.blog-main-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 60ch;
}

.blog-main-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.featured-blog-cards {
  padding: 8px 0 14px;
}

.featured-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.featured-blog-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.featured-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-blog-body {
  padding: 18px;
}

.featured-blog-body h3 {
  margin: 10px 0 12px;
  line-height: 1.4;
}

.post-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.read-more-link {
  color: var(--blue);
  font-weight: 700;
}

.blog-layout-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: start;
}

.blog-list-shell {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

body.dark-mode .blog-list-shell {
  background: linear-gradient(180deg, #0f1b2d, #0c1626);
}

.blog-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-list-header h2 {
  margin: 0;
}

.blog-card-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  margin-bottom: 14px;
}

.category-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-list a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 78, 168, 0.04);
  border: 1px solid rgba(15, 78, 168, 0.08);
  color: var(--text);
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.category-list a:hover {
  transform: translateX(4px);
  background: rgba(15, 78, 168, 0.08);
}

@media (max-width: 1100px) {
  .blog-main-hero,
  .blog-layout-grid {
    grid-template-columns: 1fr;
  }

  .featured-blog-grid,
  .blog-card-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .featured-blog-grid,
  .blog-card-grid-large {
    grid-template-columns: 1fr;
  }

  .blog-main-hero {
    padding: 22px;
  }

  .blog-main-photo img {
    height: 250px;
  }
}

/* clean top header like reference */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eceff3;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #1b2a41;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  flex: 1;
  justify-content: flex-start;
}

.main-nav a {
  font-size: 17px;
  font-weight: 700;
  color: #1b2436;
  text-decoration: none;
  line-height: 1;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #0f4ea8;
}

.site-header .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #f3f6fb;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-header .menu-toggle span {
  width: 18px;
  height: 2px;
  background: #1b2436;
  border-radius: 999px;
  display: block;
}

.site-header .mobile-menu {
  display: none;
  flex-direction: column;
  padding: 14px 5%;
  border-top: 1px solid #eceff3;
  background: #ffffff;
}

.site-header .mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1b2436;
  text-decoration: none;
  border-bottom: 1px solid #f2f4f7;
}

.menu-open .site-header .mobile-menu {
  display: flex;
}

.menu-open .site-header .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .site-header .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .site-header .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* hide old extras from previous header system if still present */
.site-header .theme-toggle,
.site-header .nav-btn,
.site-header .top-actions {
  display: none !important;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 26px;
  }

  .main-nav a {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .site-header .menu-toggle {
    display: flex;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo {
    font-size: 24px;
  }
}

.contact-banner {
  background:
    linear-gradient(90deg, rgba(234, 245, 255, 0.96), rgba(234, 245, 255, 0.78)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1600&q=80")
    right center/cover no-repeat;
  padding: 86px 0 92px;
  border-top: 1px solid #eef2f7;
}

.contact-banner-inner h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 14px;
  line-height: 1.08;
}

.contact-breadcrumb {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-hero {
  background: #eef4ff;
}

body.dark-mode .contact-hero {
  background: #0a1422;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-copy > p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.contact-info-stack {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.contact-info-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15, 78, 168, 0.08);
}

body.dark-mode .contact-info-box {
  background: rgba(255,255,255,0.03);
}

.contact-info-box strong {
  display: block;
  margin-bottom: 6px;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-mini-card {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 78, 168, 0.08);
  box-shadow: 0 10px 24px rgba(12, 23, 40, 0.05);
}

body.dark-mode .support-mini-card {
  background: #0f1b2d;
}

.support-mini-card h4 {
  margin-bottom: 8px;
}

.support-mini-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.support-mini-card span {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(15, 78, 168, 0.08);
  box-shadow: 0 18px 40px rgba(12, 23, 40, 0.12);
}

body.dark-mode .contact-form-card {
  background: #0f1b2d;
}

.contact-form-card h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.contact-form-card > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-lead-form input,
.contact-lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 78, 168, 0.16);
  background: #f8fbff;
  color: var(--text);
}

body.dark-mode .contact-lead-form input,
body.dark-mode .contact-lead-form textarea {
  background: #0c1626;
  border-color: rgba(255,255,255,0.08);
  color: var(--text);
}

.contact-lead-form input:focus,
.contact-lead-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
}

.fake-captcha {
  min-height: 76px;
  border: 1px solid rgba(15, 78, 168, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafcff;
}

body.dark-mode .fake-captcha {
  background: #0c1626;
  border-color: rgba(255,255,255,0.08);
}

.fake-captcha label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.full-btn {
  width: 100%;
}

.form-note {
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.office-map-card {
  min-height: 340px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(15, 78, 168, 0.08);
}

.office-copy h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.office-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.office-kicker {
  color: var(--blue) !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.office-address-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.faq-visual-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

body.dark-mode .faq-visual-card {
  background: #0f1b2d;
}

.faq-side-label {
  background: linear-gradient(180deg, #0f6df0, #1c86ff);
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
  padding: 18px 0;
}

.faq-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .contact-hero-grid,
  .office-grid,
  .contact-faq-grid,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .contact-banner {
    padding: 68px 0 78px;
  }

  .form-two-col {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .office-map-card {
    border-radius: 22px;
  }

  .contact-copy h2,
  .office-copy h2,
  .contact-form-card h3 {
    font-size: 1.9rem;
  }

  .faq-visual-card {
    grid-template-columns: 90px 1fr;
  }

  .faq-side-label {
    font-size: 1.1rem;
  }
}

.journey-banner {
  background:
    linear-gradient(90deg, rgba(234, 245, 255, 0.96), rgba(234, 245, 255, 0.8)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1600&q=80")
    right center/cover no-repeat;
  padding: 90px 0 96px;
  position: relative;
  overflow: hidden;
}

.journey-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28px;
  background:
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.95) 75%) 0 0/24px 28px repeat-x;
  opacity: 0.9;
}

.journey-banner-inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.journey-breadcrumb {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}

.journey-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.journey-side-card,
.journey-phone-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.journey-side-card img,
.journey-phone-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.journey-side-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, #0f6df0, #2d8cff);
  color: white;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 800;
  max-width: 180px;
  line-height: 1.2;
}

.journey-main-copy h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.journey-main-copy p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.journey-growth-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.journey-growth-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.journey-growth-quote {
  border-radius: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0f6df0, #2587ff);
  color: white;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  padding: 30px;
  box-shadow: var(--shadow-strong);
}

.journey-story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.journey-illustration,
.journey-person-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.journey-illustration img,
.journey-person-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.journey-story-card {
  background: linear-gradient(180deg, #f6fbff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

body.dark-mode .journey-story-card {
  background: linear-gradient(180deg, #0f1b2d, #0b1524);
}

.journey-story-card p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.journey-highlight-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.journey-mini-stack {
  display: grid;
  gap: 16px;
}

.journey-mini-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 190px;
  position: relative;
}

.journey-mini-card.blue {
  background: linear-gradient(135deg, #0f6df0, #1e88ff);
  color: white;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.12;
}

.journey-mini-card.green-bar {
  min-height: 72px;
  background: linear-gradient(135deg, #27ae60, #55c96e);
}

.journey-mini-card.image-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.journey-mini-card.tinted::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,174,96,0.35), rgba(24,117,73,0.5));
}

.journey-mini-card .overlay-text {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: white;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: right;
  max-width: 230px;
}

.journey-text-panel {
  background: linear-gradient(180deg, #f3f8ff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}

body.dark-mode .journey-text-panel {
  background: linear-gradient(180deg, #0f1b2d, #0b1524);
}

.journey-text-panel p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.journey-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.summary-box {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

body.dark-mode .summary-box {
  background: linear-gradient(180deg, #0f1b2d, #0b1524);
}

.summary-box p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.summary-box strong {
  display: block;
  margin-top: 4px;
}

.journey-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 300px;
  box-shadow: var(--shadow-strong);
}

.journey-cta-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.journey-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,39,0.86), rgba(7,20,39,0.3));
}

.journey-cta-content {
  position: absolute;
  z-index: 2;
  left: 34px;
  top: 34px;
  color: white;
  max-width: 280px;
}

.journey-cta-content small {
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
  letter-spacing: 1px;
}

.journey-cta-content h3 {
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: white;
}

@media (max-width: 1100px) {
  .journey-intro-grid,
  .journey-story-grid,
  .journey-highlight-grid,
  .journey-summary-grid,
  .journey-growth-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .journey-banner {
    padding: 72px 0 84px;
  }

  .journey-main-copy h2 {
    font-size: 2rem;
  }

  .journey-growth-quote {
    font-size: 2rem;
  }

  .journey-mini-card.blue {
    font-size: 1.3rem;
  }

  .journey-mini-card .overlay-text {
    font-size: 1.15rem;
    max-width: 180px;
  }

  .journey-cta-content h3 {
    font-size: 1.6rem;
  }
}

.packages-hero {
  background: linear-gradient(135deg, #0d2d5f, #1a4d9b);
  color: #ffffff;
  padding: 90px 0 100px;
  text-align: center;
}

.packages-hero-inner {
  max-width: 900px;
}

.packages-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 14px;
  color: #fff;
}

.packages-hero p {
  color: rgba(255,255,255,0.86);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

.package-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-highlight-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(15, 78, 168, 0.1);
  border-radius: 26px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.package-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.package-highlight-card.featured {
  border: 2px solid var(--blue);
  transform: scale(1.02);
}

.package-highlight-card h3 {
  margin: 14px 0 10px;
}

.package-highlight-card strong {
  display: block;
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.package-highlight-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.package-mini-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.package-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-poster-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-poster-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.package-poster-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.poster-body {
  padding: 18px;
}

.poster-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.poster-body p {
  color: var(--muted);
  line-height: 1.75;
}

.package-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-detail-box {
  background: linear-gradient(180deg, var(--card), var(--soft));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-detail-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.package-detail-box h3 {
  margin-bottom: 12px;
}

.package-detail-box p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .package-highlight-grid,
  .package-gallery-grid,
  .package-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .packages-hero {
    padding: 72px 0 84px;
  }

  .package-highlight-grid,
  .package-gallery-grid,
  .package-details-grid {
    grid-template-columns: 1fr;
  }

  .package-highlight-card.featured {
    transform: none;
  }
}

