:root {
  --color-primary: #f04b23; /* inspired by the warm orange/red of the logo */
  --color-primary-dark: #d23f1d;
  --color-accent: #008c9c; /* teal from logo */
  --color-accent-soft: #e6f6f8;
  --color-hero-bg: radial-gradient(circle at 0% 0%, #00b7c9 0%, #008c9c 30%, #f04b23 70%, #ffb27a 100%);
  --color-text-main: #112026;
  --color-muted: #6a7b83;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fa;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(10, 30, 45, 0.09);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-main);
  background-color: #020617; /* deep navy for space theme */
  scroll-behavior: smooth;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

main {
  padding-top: 72px; /* header offset */
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark img {
  height: 64px;
  width: auto;
}

/* Brand text removed from header; only logo is shown */

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-text-main);
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav .btn {
  font-weight: 600;
  line-height: 1;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.main-nav li.active a,
.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav li.active a::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--color-text-main);
  border-radius: 999px;
  position: relative;
}

.nav-toggle span + span {
  margin-top: 4px;
}

/* Hero */
.hero {
  padding: 5.2rem 0 4.6rem;
  background: radial-gradient(circle at top left, rgba(0, 183, 201, 0.35), transparent 55%),
    radial-gradient(circle at top right, rgba(240, 75, 35, 0.3), transparent 55%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero--full {
  position: relative;
}

.hero--full::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 65%);
  pointer-events: none;
  animation: floatBlob 14s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.8rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-main h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.9rem);
  margin: 0.8rem 0 0.8rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 0.9rem;
}

.hero-text p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  text-align: center;
  line-height: 1;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out, color 0.16s ease-out;
}

.btn.primary-btn {
  background: linear-gradient(120deg, var(--color-accent), var(--color-primary));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn.primary-btn:hover {
  background: var(--color-text-main);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.btn.secondary-btn {
  background: #ffffff;
  color: var(--color-text-main);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-meta span {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 140, 156, 0.06);
  color: var(--color-muted);
}

.hero-highlight-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-highlight-card h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.hero-highlight-card p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hero-highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-highlight-card li::before {
  content: "• ";
  color: var(--color-primary);
}

.hero-panel {
  background: rgba(5, 11, 20, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  padding: 1.6rem 1.5rem 1.8rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.hero-panel p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-pills li {
  font-size: 0.76rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.hero-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff;
}

.hero-link:hover {
  text-decoration: underline;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 1.1rem;
}

.stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Sections */
.section {
  padding: 3.6rem 0;
}

.section-light {
  background: transparent;
  color: #e5f2f6;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-header.align-left {
  max-width: none;
  margin: 0 0 2.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: rgba(229, 242, 246, 0.96);
  font-size: 0.96rem;
}

.process-subtitle {
  margin-bottom: 3.5rem;
}

/* Make headings in dark sections clearly visible */
.section:not(.section-light) .section-header h2 {
  color: #f9fafb;
}

.section-cta-link {
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
}

.section-cta-link:hover {
  text-decoration: underline;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.card {
  position: relative;
  background: radial-gradient(circle at top left, #f9fafb, #ffffff);
  border-radius: 22px 22px 18px 18px;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 16px 40px rgba(12, 36, 52, 0.35);
  border-top: 4px solid rgba(0, 140, 156, 0.7);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
  text-align: center;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 0.7rem;
  color: #111827;
  font-size: 0.92rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: #111827;
}

.card ul li {
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1.1rem;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--color-accent), var(--color-primary));
}

.card:hover,
.solution-card:hover,
.case-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 32px 80px rgba(12, 36, 52, 0.55),
    0 0 25px rgba(0, 140, 156, 0.6),
    0 0 45px rgba(240, 75, 35, 0.5);
}

.solution-card {
  position: relative;
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 18px 45px rgba(5, 12, 24, 0.7);
  border-top: 4px solid var(--color-accent);
  text-align: center;
}

.solution-card h3 {
  margin: 0.6rem 0 0.4rem;
  font-size: 1.04rem;
  color: #38bdf8;
}

.solution-card p {
  margin: 0 0 0.7rem;
  color: rgba(191, 209, 222, 0.96);
  font-size: 0.9rem;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: rgba(191, 209, 222, 0.96);
  text-align: left;
}

.solution-card ul li {
  margin-bottom: 0.25rem;
}

.solution-card ul li::before {
  content: "› ";
  color: var(--color-primary);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill--accent {
  background: linear-gradient(120deg, rgba(0, 140, 156, 0.18), rgba(240, 75, 35, 0.18));
  color: var(--color-accent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.steps-grid--detailed .step {
  min-height: 0;
}

.step {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.4rem;
}

.step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Infographic style process cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  overflow: visible;
}

.process-card {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border-radius: 22px;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: #0f172a;
  background: #e5e7eb;
}

.process-pill--discover {
  background: linear-gradient(120deg, #e0f2fe, #38bdf8);
}

.process-pill--design {
  background: linear-gradient(120deg, #fee2e2, #fb7185);
}

.process-pill--deploy {
  background: linear-gradient(120deg, #fef9c3, #f97316);
}

.process-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: #e5f2f6;
}

.process-card p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.96);
}

.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.96);
}

.process-card ul li {
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1.1rem;
}

.process-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: rgba(148, 163, 255, 0.9);
}

/* Curved connectors between 01 → 02 and 02 → 03 */
.process-card:nth-child(2)::before {
  content: "";
  position: absolute;
  left: -50%;
  bottom: -40px;
  width: 100%;
  height: 80px;
  border-bottom: 2px dashed rgba(148, 163, 184, 0.7);
  border-radius: 0 0 999px 999px;
}

.process-card:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -50%;
  top: -40px;
  width: 100%;
  height: 80px;
  border-top: 2px dashed rgba(148, 163, 184, 0.7);
  border-radius: 999px 999px 0 0;
}

/* Why Brands Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.why-choose-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem 1.8rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  isolation: isolate;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  z-index: -1;
}

.why-choose-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 19px;
  background: #ffffff;
  z-index: -1;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 24px 55px rgba(12, 36, 52, 0.25),
    0 0 30px rgba(240, 75, 35, 0.3),
    0 0 45px rgba(0, 183, 201, 0.3);
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 140, 156, 0.4);
}

.why-choose-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: #020617;
}

.why-choose-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6a7b83;
}

.why-choose-card:first-child .why-choose-icon {
  font-size: 1.3rem;
}

/* Brands we work with - logo strip */
.brand-strip {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.1rem 0.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.brand-strip-inner {
  display: inline-flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: brandMarquee 26s linear infinite;
}

.brand-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(120deg, rgba(0, 140, 156, 0.08), rgba(240, 75, 35, 0.08));
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
}

.brand-logo-chip img {
  max-height: 200px;
  width: auto;
  display: block;
}

.brand-note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
}

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

/* What we do for your brand – three tracks */
.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.capabilities-label {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border-radius: 24px;
  padding: 1.3rem 1.3rem 1.5rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.cap-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0.25rem 0.55rem 0;
  color: #0f172a;
  background: #e5e7eb;
}

.cap-pill--strategy {
  background: linear-gradient(120deg, #e0f2fe, #38bdf8);
}

.cap-pill--creative {
  background: linear-gradient(120deg, #fee2e2, #fb7185);
}

.cap-pill--media {
  background: linear-gradient(120deg, #fef9c3, #f97316);
}

.capabilities-label p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.96);
}

.capabilities-rows {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cap-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.cap-row-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border-radius: 14px;
  background: #0b1120;
}

.cap-row-index {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.cap-row-tag span:last-child {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e5f2f6;
}

.cap-row-tag--strategy {
  border-left: 3px solid #38bdf8;
}

.cap-row-tag--creative {
  border-left: 3px solid #fb7185;
}

.cap-row-tag--media {
  border-left: 3px solid #f97316;
}

.cap-row-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: #e5f2f6;
}

.cap-row-body p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.96);
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(120deg, var(--color-accent), var(--color-primary));
  color: #ffffff;
  padding: 2.2rem 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip h2 {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
}

.cta-strip p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-strip .btn.primary-btn {
  background: #ffffff;
  color: var(--color-text-main);
  box-shadow: none;
}

.cta-strip .btn.primary-btn:hover {
  background: #f3f4f7;
}

/* Page hero */
.page-hero {
  padding: 4.2rem 0 2.4rem;
  background: transparent;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
}

.page-hero p {
  margin: 0;
  max-width: 32rem;
  color: rgba(229, 242, 246, 0.96);
}

/* Split layout */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.feature-list li::before {
  content: "✓ ";
  color: var(--color-primary);
}

.split-layout p {
  color: rgba(229, 242, 246, 0.96);
  font-size: 0.96rem;
}

.feature-list li {
  color: rgba(229, 242, 246, 0.96);
}

/* Digital, outdoor & experiential media matrix */
.media-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.media-column {
  background: radial-gradient(circle at top left, var(--color-accent), rgba(0, 140, 156, 0.85));
  border-radius: 22px 0 0 22px;
  padding: 1.4rem 1.3rem 1.6rem 1.6rem;
  padding-right: 2.2rem;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.4),
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 24px 48px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(240, 75, 35, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  min-height: 200px;
  clip-path: polygon(0% 0%, calc(100% - 24px) 0%, 100% 50%, calc(100% - 24px) 100%, 0% 100%);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.media-column:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(240, 75, 35, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.media-column::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 100%;
  background: var(--color-accent);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

.media-column::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: calc(100% - 4px);
  background: radial-gradient(circle at top left, var(--color-accent), rgba(0, 140, 156, 0.85));
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}

.media-column h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  color: #02131a;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.45);
}

.media-column .feature-list li::before {
  content: "✓ ";
  color: #003d47;
  font-weight: 700;
}

/* Contact layout - New Design */
.contact-layout-new {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: stretch;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 
    0 20px 60px rgba(15, 23, 42, 0.15),
    0 0 30px rgba(0, 140, 156, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.contact-form-subheader {
  margin-bottom: 2rem;
}

.contact-form-subheader h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #020617;
  font-weight: 700;
}

.contact-form-subheader p {
  margin: 0;
  color: #6a7b83;
  font-size: 0.9rem;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-new:last-of-type {
  grid-column: 1 / -1;
}

.form-group-new label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 0.25rem;
}

.form-group-new input,
.form-group-new textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
  color: #020617;
  transition: all 0.2s ease-out;
  resize: vertical;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
  color: #9ca3af;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 
    0 0 0 3px rgba(0, 140, 156, 0.1),
    0 4px 12px rgba(0, 140, 156, 0.15);
  transform: translateY(-1px);
}

.form-actions-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-note-new {
  font-size: 0.85rem;
  color: #6a7b83;
  text-align: center;
  margin: 0;
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
  color: #f9fafb;
  font-weight: 800;
  text-align: center;
}

.contact-section-header p {
  margin: 0;
  color: rgba(229, 242, 246, 0.9);
  font-size: 1.05rem;
  text-align: center;
}


.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 50px rgba(15, 23, 42, 0.8),
    0 0 30px rgba(0, 140, 156, 0.3);
  border-color: rgba(0, 140, 156, 0.4);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 140, 156, 0.4);
}

.contact-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: #f9fafb;
  font-weight: 700;
}

.contact-card p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: rgba(229, 242, 246, 0.95);
  flex: 1;
}

.contact-card a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-out;
}

.contact-card a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-card-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.8);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Contact Card with Map - Full Width Layout */
.contact-card-map-full {
  grid-column: 1 / -1;
  padding: 2rem 1.8rem;
}

.contact-map-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-map-header-text {
  flex: 1;
}

.contact-map-header-text h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: #f9fafb;
  font-weight: 700;
}

.contact-address-inline {
  margin: 0;
}

.contact-address-inline p {
  margin: 0.3rem 0;
  line-height: 1.5;
  color: rgba(229, 242, 246, 0.95);
  font-size: 0.9rem;
}

.contact-address-inline p:first-child {
  color: #f9fafb;
  font-size: 1rem;
  font-weight: 600;
}

.contact-map-container-full {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  margin-top: 0.5rem;
}

.contact-map-container-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 140, 156, 0.3);
  z-index: 1;
}

.contact-map-container-full iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s ease-out;
}

.contact-card-map-full:hover .contact-map-container-full iframe {
  filter: grayscale(0) contrast(1.2);
}

/* Legacy styles for backward compatibility */
.contact-card-map {
  padding-bottom: 1.5rem;
}

.contact-address {
  margin: 1rem 0 1.2rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  border-left: 3px solid var(--color-accent);
}

.contact-address p {
  margin: 0.4rem 0;
  line-height: 1.6;
}

.contact-address p:first-child {
  margin-top: 0;
  color: #f9fafb;
  font-size: 1rem;
}

.contact-address p:last-child {
  margin-bottom: 0;
  color: rgba(229, 242, 246, 0.9);
  font-size: 0.9rem;
}

.contact-map-container {
  margin: 1.2rem 0 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
}

.contact-map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 140, 156, 0.3);
  z-index: 1;
}

.contact-map-container iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s ease-out;
}

.contact-card-map:hover .contact-map-container iframe {
  filter: grayscale(0) contrast(1.2);
}

/* Urgent Response Box - Full Width, Center Aligned */
.contact-urgent-wrapper {
  width: 100%;
  margin-top: 3.5rem;
  padding-top: 2rem;
}

.contact-cta-box {
  background: linear-gradient(135deg, rgba(0, 140, 156, 0.15), rgba(240, 75, 35, 0.1));
  border-radius: 20px;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(0, 140, 156, 0.3);
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.4);
  transition: all 0.3s ease-out;
}

.contact-cta-box:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 50px rgba(15, 23, 42, 0.5),
    0 0 30px rgba(0, 140, 156, 0.2);
  border-color: rgba(0, 140, 156, 0.5);
}

.contact-cta-box h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  color: #f9fafb;
  font-weight: 700;
  text-align: center;
}

.contact-cta-box p {
  margin: 0;
  font-size: 1rem;
  color: rgba(229, 242, 246, 0.9);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Legacy contact styles (for backward compatibility) */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.contact-form {
  background: #ffffff;
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.form-row input,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(0, 140, 156, 0.15);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.contact-aside {
  font-size: 0.9rem;
}

.contact-aside h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.contact-details a {
  color: var(--color-accent);
}

.small-text {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.alert {
  padding: 0.7rem 0.9rem;
  border-radius: 9px;
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

.alert.success {
  background: #e5f7ec;
  color: #166534;
}

.alert.error {
  background: #fee2e2;
  color: #b91c1c;
}

/* Footer - Redesigned */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #020617 0%, #0f172a 50%, #1a1f3a 100%);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-accent)) 1;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-primary), var(--color-accent), transparent);
}

.footer-top-wave {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(0, 140, 156, 0.1) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 600;
}

.footer-description {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  color: rgba(229, 242, 246, 0.8);
  line-height: 1.6;
  max-width: 400px;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-column h4 {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 2px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: rgba(229, 242, 246, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease-out;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: "→";
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--color-accent);
  transition: all 0.2s ease-out;
}

.footer-nav a:hover {
  color: var(--color-accent);
  padding-left: 18px;
  transform: translateX(2px);
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

.footer-contact-info svg {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 18px;
  height: 18px;
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease-out;
}

.footer-contact-info a:hover {
  color: var(--color-accent);
}

.footer-contact-info span {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.7);
}

.footer-decoration {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  animation: footerDotPulse 2s ease-in-out infinite;
}

.footer-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.footer-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes footerDotPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Case-grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.case-card {
  position: relative;
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  border-left: 4px solid var(--color-primary);
  text-align: center;
}

.case-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.case-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: rgba(191, 209, 222, 0.96);
}

.case-tag {
  font-size: 0.78rem;
  color: #38bdf8;
  font-weight: 600;
}

/* Thumbnails inside tiles */
.solution-thumb,
.case-thumb {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.solution-thumb img,
.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: transform 0.3s ease-out;
}

.solution-card:hover .solution-thumb img,
.case-card:hover .case-thumb img {
  transform: scale(1.08);
}

/* Hero image tile */
.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5f2f6;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Space background: stars, glowing planets, and orbits */
.bg-sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, rgba(15, 118, 178, 0.45), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(248, 113, 113, 0.4), transparent 55%);
}

.bg-stars {
  position: absolute;
  inset: -50px;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.95) 0, transparent 60%),
    radial-gradient(2px 2px at 70% 40%, rgba(255, 255, 255, 0.9) 0, transparent 60%),
    radial-gradient(2px 2px at 30% 80%, rgba(148, 163, 255, 0.9) 0, transparent 60%),
    radial-gradient(2px 2px at 85% 85%, rgba(125, 211, 252, 0.9) 0, transparent 60%),
    radial-gradient(2px 2px at 40% 25%, rgba(248, 250, 252, 0.9) 0, transparent 60%),
    radial-gradient(2px 2px at 15% 65%, rgba(191, 219, 254, 0.9) 0, transparent 60%),
    radial-gradient(2px 2px at 92% 30%, rgba(244, 244, 245, 0.9) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 55% 10%, rgba(226, 232, 240, 0.9) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(248, 250, 252, 0.9) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 95% 60%, rgba(248, 250, 252, 0.9) 0, transparent 60%),
    radial-gradient(1.8px 1.8px at 65% 85%, rgba(148, 163, 255, 0.9) 0, transparent 60%),
    radial-gradient(1.8px 1.8px at 25% 35%, rgba(148, 163, 255, 0.9) 0, transparent 60%),
    radial-gradient(3px 3px at 30% 10%, rgba(248, 250, 252, 0.95) 0, transparent 60%),
    radial-gradient(3.5px 3.5px at 80% 75%, rgba(191, 219, 254, 0.95) 0, transparent 60%);
  background-repeat: repeat;
  background-size: 400px 400px;
  opacity: 0.9;
  animation: twinkle 14s ease-in-out infinite alternate;
}

.bg-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-orbit::before,
.bg-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}

.bg-orbit::before {
  width: 420px;
  height: 420px;
  background: rgba(0, 140, 156, 0.8);
  top: -120px;
  left: -110px;
  animation: orbitOne 26s linear infinite;
}

.bg-orbit::after {
  width: 420px;
  height: 420px;
  background: rgba(240, 75, 35, 0.8);
  bottom: -140px;
  right: -110px;
  animation: orbitTwo 32s linear infinite;
}

.bg-planets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.planet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #38bdf8 40%, #020617 80%);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.6);
  opacity: 0.7;
}

.planet-1 {
  width: 52px;
  height: 52px;
  top: 14%;
  left: 12%;
  animation: orbitSmallOne 32s linear infinite;
}

.planet-2 {
  width: 46px;
  height: 46px;
  top: 26%;
  right: 10%;
  animation: orbitSmallTwo 36s linear infinite reverse;
}

.planet-3 {
  width: 40px;
  height: 40px;
  top: 48%;
  left: 6%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #facc15 40%, #020617 80%);
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.6);
  opacity: 0.65;
  animation: orbitSmallThree 38s linear infinite;
}

.planet-4 {
  width: 44px;
  height: 44px;
  bottom: 20%;
  right: 18%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #f97316 40%, #020617 80%);
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.55);
  opacity: 0.6;
  animation: orbitSmallFour 34s linear infinite reverse;
}

.planet-5 {
  width: 36px;
  height: 36px;
  bottom: 10%;
  left: 22%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #4ade80 40%, #020617 80%);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
  opacity: 0.55;
  animation: orbitSmallFive 40s linear infinite;
}

.planet-6 {
  width: 34px;
  height: 34px;
  top: 8%;
  right: 32%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #a855f7 40%, #020617 80%);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  opacity: 0.6;
  animation: orbitSmallSix 42s linear infinite reverse;
}


@keyframes floatBlob {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-18px, 26px, 0) scale(1.12);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-14px);
  }
}

@keyframes orbitOne {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(40px, 30px, 0) rotate(360deg);
  }
}

@keyframes orbitTwo {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-40px, -30px, 0) rotate(-360deg);
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.55;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    transform: translate3d(-15px, 10px, 0) scale(1.03);
  }
}

@keyframes orbitSmallOne {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(80px, -40px, 0);
  }
  50% {
    transform: translate3d(140px, 0, 0);
  }
  75% {
    transform: translate3d(80px, 40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbitSmallTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-70px, -40px, 0);
  }
  50% {
    transform: translate3d(-130px, 0, 0);
  }
  75% {
    transform: translate3d(-70px, 40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbitSmallThree {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(40px, 60px, 0);
  }
  50% {
    transform: translate3d(0, 120px, 0);
  }
  75% {
    transform: translate3d(-40px, 60px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbitSmallFour {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-60px, 40px, 0);
  }
  50% {
    transform: translate3d(-120px, 0, 0);
  }
  75% {
    transform: translate3d(-60px, -40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbitSmallFive {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(70px, -40px, 0);
  }
  50% {
    transform: translate3d(130px, 0, 0);
  }
  75% {
    transform: translate3d(70px, 40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbitSmallSix {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-60px, 40px, 0);
  }
  50% {
    transform: translate3d(-120px, 0, 0);
  }
  75% {
    transform: translate3d(-60px, -40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

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

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .contact-layout,
  .contact-layout-new {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-container iframe,
  .contact-map-container-full iframe {
    height: 200px;
  }

  .contact-map-header {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-cta-box {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .contact-cta-box h3 {
    font-size: 1.2rem;
  }

  .contact-cta-box p {
    font-size: 0.9rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 720px) {
  .header-inner {
    padding: 0.55rem 0;
  }

  main {
    padding-top: 64px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo img {
    height: 80px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 0 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1rem;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }

  .main-nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .cards-grid,
  .steps-grid,
  .solutions-grid,
  .case-grid,
  .why-choose-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 3.2rem;
  }
}


