@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #facc15;
  --accent-strong: #eab308;
  --accent-soft: rgba(250, 204, 21, 0.12);
  --logo-blue: #0757ff;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  font-family: inherit;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}


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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(7, 26, 62, 0.08);
}

.nav {
  max-width: 1100px;
  height: 78px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand strong {
  position: relative;
  color: var(--text);
}

.brand strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--logo-blue), var(--accent));
  transform-origin: left center;
  animation: brandSlide 4s linear infinite;
  opacity: 0.95;
}

@keyframes brandSlide {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 26, 62, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.brand:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 60px rgba(7, 87, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(7, 26, 62, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-button:hover {
  transform: translateY(-1px);
}


.page-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 140px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 420px;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(7,87,255,0.06), transparent 28%), radial-gradient(circle at 70% 70%, rgba(250,204,21,0.06), transparent 28%);
  z-index: 0;
}

.floating-bubble {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.26;
  filter: blur(0.9px);
  animation: floatBubble 3.6s ease-in-out infinite, floatWave 8s ease-in-out infinite;
}

.bubble-one {
  top: 18%;
  right: 12%;
  animation-delay: 0s;
}

.bubble-two {
  top: 58%;
  right: 30%;
  width: 24px;
  height: 24px;
  animation-duration: 5.2s;
  animation-delay: 0.8s;
}

/* Use logo-blue and accent yellow for the floating accents to echo the mark */
.bubble-one {
  background: var(--logo-blue);
  opacity: 0.22;
}

.bubble-two {
  background: var(--accent);
  opacity: 0.28;
}

@keyframes floatWave {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(6px) translateY(-6px) rotate(-2deg); }
  50% { transform: translateX(0) translateY(-12px) rotate(0deg); }
  75% { transform: translateX(-6px) translateY(-6px) rotate(2deg); }
  100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

/* Additional floating bubbles */
.bubble-three {
  top: 8%;
  left: 8%;
  width: 12px;
  height: 12px;
  background: var(--accent);
  opacity: 0.18;
  animation-duration: 4.2s;
  animation-delay: 0.6s;
}

.bubble-four {
  bottom: 8%;
  left: 20%;
  width: 20px;
  height: 20px;
  background: var(--logo-blue);
  opacity: 0.16;
  animation-duration: 5.8s;
  animation-delay: 1.2s;
}

.bubble-five {
  top: 36%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--accent);
  opacity: 0.12;
  animation-duration: 6.4s;
  animation-delay: 0.4s;
}

.bubble-six {
  bottom: 22%;
  right: 8%;
  width: 10px;
  height: 10px;
  background: var(--logo-blue);
  opacity: 0.14;
  animation-duration: 7.2s;
  animation-delay: 0.9s;
}

@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); opacity: 0.16; }
  50% { transform: translateY(-18px) scale(1.1); opacity: 0.24; }
  100% { transform: translateY(0) scale(1); opacity: 0.16; }
}


.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 18px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.primary {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.primary:hover,
.primary:focus-visible {
  background: var(--accent-strong);
  color: #ffffff;
}

.secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
}

.secondary:hover,
.secondary:focus-visible {
  border-color: var(--text);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.hero-metrics span {
  padding: 20px 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
}

.hero-metrics strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-panel {
  padding: 34px 30px 30px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.06);
}

.hero-panel h3 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.hero-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.75;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.hero-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--accent);
}

.section {
  padding: 56px 0;
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 3vw, 3.4rem);
  line-height: 1.05;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 12px;
  opacity: 0.98;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.package-grid,
.service-list,
.cards,
.about-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.package-card,
.service,
.work-card,
.panel,
.contact-panel,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.05);
}

.package-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  perspective: 900px;
  min-height: 320px;
}

.card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms ease;
  transform-style: preserve-3d;
}

.package-card:hover .card-inner {
  transform: rotateX(6deg) translateY(-8px);
  box-shadow: 0 30px 80px rgba(17,24,39,0.08);
}

.card-footer {
  margin-top: auto;
}

.package-top-stripe {
  height: 6px;
  width: 64px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--logo-blue), var(--accent));
  margin-bottom: 12px;
}

.package-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.package-card h3,
.service h3,
.work-card h3,
.panel h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}

.package-card p,
.service p,
.work-card p,
.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.trust-strip {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.trust-list {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.mini-testimonial {
  margin: 6px 0 0;
  color: var(--muted);
  font-style: italic;
}

.package-price {
  margin: 24px 0 26px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.package-card .button {
  width: max-content;
}

.service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.service {
  padding: 24px;
}

.work-card {
  padding: 30px;
}

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

.work-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 36px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

.inline-link:hover {
  color: var(--accent-strong);
}

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

.panel {
  padding: 30px;
}

.panel:hover,
.package-card:hover,
.service:hover,
.work-card:hover,
.contact-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 179, 8, 0.22);
}

.contact-grid {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: start;
}

.contact-panel {
  padding: 32px;
}

.contact-panel h3 {
  margin-top: 0;
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  color: var(--text);
}

.contact-form label span {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: #ffffff;
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #b91c1c;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .package-grid,
  .service-list,
  .cards,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(7, 26, 62, 0.14);
  }

  .nav-links.open a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--text);
  }

  .nav-links.open a:hover,
  .nav-links.open a:focus-visible {
    background: var(--accent-soft);
    color: var(--accent-strong);
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 7vw, 3.5rem);
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .package-card,
  .work-card,
  .service,
  .panel,
  .contact-panel,
  .contact-form {
    border-radius: 20px;
  }

  .page-container {
    padding: 0 18px;
  }
}

/* Mobile/touch overrides: reduce heavy visuals */
@media (max-width: 760px) {
  .hero::after { display: none; }
  .package-card:hover .card-inner { transform: none !important; box-shadow: none !important; }
  .floating-bubble { display: none !important; }
}

@media (max-width: 540px) {
  .nav {
    padding: 0 14px;
  }

  .nav-links.open {
    left: 14px;
    right: 14px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-panel,
  .package-card,
  .work-card,
  .service,
  .panel,
  .contact-panel,
  .contact-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
