:root {
  --ink: #111827;
  --muted: #647084;
  --line: #dce4f4;
  --paper: #ffffff;
  --soft: #f4f7ff;
  --teal: #2457e6;
  --teal-dark: #121a2a;
  --mint: #e8efff;
  --amber: #f59e0b;
  --coral: #f0643f;
  --charcoal: #101827;
  --shadow: 0 20px 52px rgba(17, 24, 39, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  inset: 12px auto auto 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: var(--radius);
}

.shell {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 225, 0.72);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo-frame {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(36, 87, 230, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(36, 87, 230, 0.16);
}

.brand-logo-frame img {
  width: 96%;
  height: 96%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.2;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--teal);
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(36, 87, 230, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 126px 0 0;
  color: var(--paper);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/fly-digital-media-team.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 30, 0.88) 0%, rgba(18, 32, 62, 0.72) 52%, rgba(18, 32, 62, 0.38) 100%),
    linear-gradient(0deg, rgba(11, 17, 32, 0.64), rgba(11, 17, 32, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

h4 {
  margin: 22px 0 8px;
  font-size: 0.82rem;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  font-weight: 820;
  white-space: normal;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, #2457e6, #1d4ed8);
  box-shadow: 0 16px 34px rgba(36, 87, 230, 0.28);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-light {
  color: var(--teal-dark);
  background: var(--paper);
}

.button-secondary {
  color: var(--teal-dark);
  background: var(--mint);
  border-color: rgba(36, 87, 230, 0.14);
}

.button-dark {
  color: var(--paper);
  background: var(--charcoal);
}

.button-outline-light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.hero-highlights {
  width: min(920px, 100%);
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 8px 12px;
  border: 1px solid rgba(166, 192, 255, 0.36);
  border-radius: 999px;
  background: rgba(36, 87, 230, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--soft);
}

.section-intro {
  padding-top: 70px;
}

.intro-grid,
.split-grid,
.choose-grid,
.quote-grid,
.faq-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p {
  margin: 16px auto 0;
  color: var(--muted);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.type-card {
  grid-column: span 2;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.type-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 87, 230, 0.34);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
}

.type-card-featured {
  grid-column: 2 / span 4;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  column-gap: 26px;
  background: linear-gradient(135deg, #f8fbff, #edf3ff);
}

.type-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--paper);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 850;
}

.type-card p,
.type-card li,
.price-card p,
.price-card li,
.process-list p,
.quote-copy p,
.faq-list p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.type-card ul,
.check-list {
  margin: 0;
  padding-left: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), #6ea0ff);
}

.price-card-popular {
  border-color: rgba(36, 87, 230, 0.5);
  box-shadow: var(--shadow);
}

.price-card-premium {
  color: var(--paper);
  background: linear-gradient(145deg, #101827, #1b2b4e);
  border-color: var(--charcoal);
}

.price-card-premium::before {
  background: linear-gradient(90deg, #f59e0b, #2457e6);
}

.price-card-premium p,
.price-card-premium li {
  color: rgba(255, 255, 255, 0.75);
}

.price-card-premium .package-label {
  color: var(--mint);
}

.package-label {
  margin: 0 0 8px;
  color: var(--teal);
  font-weight: 820;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  color: #5c3200;
  background: #fce7bd;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 820;
}

.price {
  margin: 18px 0 12px;
}

.price span {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 880;
}

.price-card-premium .price span {
  color: var(--paper);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
}

.check-list li::marker {
  color: var(--teal);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--paper);
  background: var(--teal-dark);
}

tbody th {
  width: 190px;
  color: var(--ink);
}

tbody td {
  color: var(--muted);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.section-split {
  background: #fff8ed;
}

.split-grid {
  align-items: center;
}

.split-grid p {
  color: var(--muted);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.addon-grid span,
.industry-tags span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 680;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-list div {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.benefit-list strong {
  color: var(--coral);
}

.benefit-list span {
  font-weight: 720;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
}

.section-industries {
  background: #edf4ff;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-tags span {
  border-color: rgba(15, 118, 110, 0.16);
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(16, 24, 39, 0.96), rgba(29, 78, 216, 0.86)),
    var(--charcoal);
  color: var(--paper);
}

.quote-grid {
  align-items: center;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.quote-copy .eyebrow {
  color: var(--mint);
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-panel a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 760;
}

.quote-form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 730;
}

label span {
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(36, 87, 230, 0.13);
}

.full-row {
  grid-column: 1 / -1;
}

.honeypot {
  display: none;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.form-status.is-error {
  color: #a2271c;
}

.faq-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 790;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 50%;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  padding: 88px 0;
  color: var(--paper);
  background: linear-gradient(135deg, #111827, #2457e6);
  text-align: center;
}

.final-cta p {
  width: min(720px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 30px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-brand {
  display: inline-flex;
  width: min(210px, 70vw);
}

.footer-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: #20b15a;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 880;
  box-shadow: 0 18px 38px rgba(32, 177, 90, 0.28);
}

.thank-you-page {
  min-height: 100svh;
  background: var(--soft);
}

.thank-you {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.thank-you-panel {
  width: min(720px, 100%);
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-brand {
  margin-bottom: 34px;
}

.thank-you h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.thank-you p {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-list li:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .shell {
    width: calc(100% - 28px);
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-links.is-open a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding: 112px 0 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 8.7vw, 3rem);
    line-height: 1.04;
  }

  .hero-copy,
  .hero-actions,
  .hero-highlights {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .intro-grid,
  .split-grid,
  .choose-grid,
  .quote-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading,
  .section-heading.left {
    margin-inline: 0;
    text-align: left;
  }

  .type-grid,
  .pricing-grid,
  .benefit-list,
  .form-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .type-card,
  .type-card-featured {
    grid-column: auto;
    display: block;
  }

  .footer-grid {
    align-items: start;
  }

  .footer-links {
    display: grid;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .brand-logo-frame {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-highlights li {
    min-height: 42px;
    justify-content: center;
    text-align: center;
    font-size: 0.84rem;
    padding: 7px 10px;
  }

  .type-card,
  .price-card,
  .quote-form,
  .thank-you-panel {
    padding: 20px;
  }

  .price span {
    font-size: 2.25rem;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .table-wrap {
    margin-inline: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  .shell {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 86px;
    padding-bottom: 22px;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-highlights {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-highlights li {
    min-height: 38px;
    font-size: 0.78rem;
    padding: 6px 8px;
  }

  .hero-highlights li:nth-child(n + 5) {
    display: none;
  }

  .type-card,
  .price-card,
  .quote-form,
  .thank-you-panel {
    padding: 18px;
  }
}
