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

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  overflow-x: clip;
  background-color: #0a0a0c;
  color: #f5f5f7;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }

:root { --brand: #e31e24; }
.font-display { font-family: "Sora", sans-serif; }
.text-brand { color: var(--brand); }
.brand-bg { background-color: var(--brand); }

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.09);
}
.red-glow { box-shadow: 0 10px 40px -8px rgba(227,30,36,0.55); }

.hero-grid {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(227,30,36,0.18), transparent 55%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

/* layout helpers */
.container { margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.max-72 { max-width: 72rem; }
.max-90 { max-width: 90rem; }
.max-56 { max-width: 56rem; }
.max-3xl { max-width: 48rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600;
  min-height: 44px; cursor: pointer; border: none; transition: all .2s; font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 40px -8px rgba(227,30,36,0.55); }
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost { color: #fff; background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.09); backdrop-filter: blur(16px); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }
.btn-white { background: #fff; color: #171717; }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-full { width: 100%; }
.icon { width: 1rem; height: 1rem; stroke-width: 2; }

/* header */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10,10,12,0.8); backdrop-filter: blur(24px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-chip { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; overflow: hidden; border-radius: .75rem; background: #fff; padding: .25rem; }
.logo-chip img { height: 100%; width: 100%; object-fit: contain; }
.logo-text { font-family: "Sora", sans-serif; font-size: 1.125rem; font-weight: 800; letter-spacing: -0.02em; }
.nav-desktop { display: none; align-items: center; gap: .25rem; }
.nav-link { border-radius: 9999px; padding: .5rem .875rem; font-size: .875rem; font-weight: 500; color: #d4d4d4; transition: color .2s; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-btn { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; color: #fff; cursor: pointer; }
.order-desktop { display: none; }
.mobile-menu { display: none; border-top: 1px solid rgba(255,255,255,0.05); background: #0a0a0c; padding: 1rem 1.25rem; }
.mobile-menu.open { display: block; }
.mobile-menu .col { display: flex; flex-direction: column; gap: .25rem; }
.mobile-link { border-radius: .75rem; padding: .75rem 1rem; font-size: .875rem; font-weight: 500; color: #d4d4d4; }
.mobile-link.active { background: rgba(227,30,36,0.1); color: var(--brand); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
}
@media (min-width: 640px) { .order-desktop { display: inline-flex; } }

/* sections */
.section { padding-top: 5rem; padding-bottom: 5rem; }
.py-hero { padding-top: 6rem; padding-bottom: 6rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 9999px;
  border: 1px solid rgba(227,30,36,0.4); background: rgba(227,30,36,0.1);
  padding: .375rem 1rem; font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--brand);
}
.heading-block { margin: 0 auto 3rem; max-width: 42rem; text-align: center; }
.heading-block.left { margin-left: 0; text-align: left; }
.eyebrow-wrap { display: flex; justify-content: center; margin-bottom: 1rem; }
.h2 { font-family: "Sora", sans-serif; font-size: 1.875rem; font-weight: 800; line-height: 1.15; margin: 0; }
.subtitle { margin-top: 1rem; color: #a3a3a3; line-height: 1.6; }

.hero-h1 { font-family: "Sora", sans-serif; font-size: 2.25rem; font-weight: 800; line-height: 1.1; margin: 1.5rem auto 0; max-width: 56rem; }
.hero-p { margin: 1.5rem auto 0; max-width: 42rem; font-size: 1rem; line-height: 1.6; color: #a3a3a3; }
.hero-actions { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; }

/* grids */
.grid { display: grid; gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr; }

/* cards */
.card { border-radius: 1.5rem; padding: 2rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.service-card { display: flex; flex-direction: column; border-radius: 1.5rem; padding: 2rem; transition: all .3s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(227,30,36,0.4); }
.service-imgwrap { margin-bottom: 1.5rem; display: flex; height: 7rem; align-items: center; justify-content: center; border-radius: 1rem; background: #fff; padding: 1rem; box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); }
.service-imgwrap img { max-height: 100%; width: auto; object-fit: contain; }
.card-title { font-family: "Sora", sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0; }
.card-desc { margin-top: .75rem; flex: 1; font-size: .875rem; line-height: 1.6; color: #a3a3a3; }
.card-link { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--brand); transition: gap .2s; }
.card-link:hover { gap: .75rem; }

.step { display: flex; align-items: flex-start; gap: 1rem; border-radius: 1rem; padding: 1.25rem; }
.step-num { display: flex; height: 2.25rem; width: 2.25rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 9999px; background: var(--brand); font-family: "Sora", sans-serif; font-size: .875rem; font-weight: 700; color: #fff; }
.step p { font-size: .875rem; color: #e5e5e5; margin: 0; }

.trust-card { border-radius: 1rem; padding: 1.5rem; transition: all .3s; }
.trust-card:hover { transform: translateY(-4px); border-color: rgba(227,30,36,0.4); }
.icon-chip { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: .75rem; background: rgba(227,30,36,0.15); color: var(--brand); }
.icon-chip .icon { width: 1.25rem; height: 1.25rem; }
.trust-card p { margin: 1rem 0 0; font-size: .875rem; font-weight: 500; color: #e5e5e5; }

.feature-item { display: flex; align-items: center; gap: .75rem; border-radius: 1rem; padding: 1.25rem; }
.feature-item span.txt { font-size: .875rem; color: #e5e5e5; }

/* price cards */
.price-card { position: relative; display: flex; flex-direction: column; border-radius: 1.5rem; padding: 2rem; }
.price-card.featured { box-shadow: 0 10px 40px -8px rgba(227,30,36,0.55); border: 2px solid var(--brand); }
.badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); border-radius: 9999px; background: var(--brand); padding: .25rem 1rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.price-card h3 { font-family: "Sora", sans-serif; font-size: 1.125rem; font-weight: 700; color: #fff; margin: 0; }
.price-row { margin-top: 1rem; display: flex; align-items: flex-end; gap: .25rem; }
.price-amount { font-family: "Sora", sans-serif; font-size: 2.25rem; font-weight: 800; color: #fff; }
.price-period { margin-bottom: .25rem; font-size: .875rem; color: #a3a3a3; }
.price-features { margin-top: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.price-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: #d4d4d4; }
.check { margin-top: .125rem; width: 1rem; height: 1rem; flex-shrink: 0; color: var(--brand); }
.price-card .btn { margin-top: 2rem; }
.price-note { margin: 2rem auto 0; max-width: 36rem; border-radius: 1rem; border: 1px solid rgba(227,30,36,0.3); background: rgba(227,30,36,0.05); padding: 1rem 1.25rem; text-align: center; font-size: .875rem; color: #d4d4d4; }

/* prose blocks */
.prose { display: flex; flex-direction: column; gap: 1rem; font-size: .9375rem; line-height: 1.7; color: #d4d4d4; }
.prose p { margin: 0; }
.info-box { border-radius: 1.5rem; border: 1px solid rgba(227,30,36,0.3); background: rgba(227,30,36,0.05); padding: 2rem; }
.info-box h3 { font-family: "Sora", sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0; }
.info-box p { margin-top: 1rem; font-size: .875rem; line-height: 1.6; color: #d4d4d4; }

/* two-col hero */
.split { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1fr; }
.hero-media { border-radius: 1.5rem; padding: .75rem; }
.hero-media .inner { border-radius: 1rem; background: #fff; padding: 1.5rem; }
.hero-media .inner img { width: 100%; object-fit: contain; }
.veo-media { display: flex; align-items: center; justify-content: center; gap: 1.5rem; border-radius: 1.5rem; padding: 2rem; }
.veo-media .chip { display: flex; height: 8rem; align-items: center; justify-content: center; border-radius: 1rem; background: #fff; padding: 0 1.5rem; }
.veo-media .chip img { width: auto; object-fit: contain; }
.veo-media .chip .veo { height: 6rem; }
.veo-media .chip .gem { height: 4rem; }
.canva-media { display: flex; align-items: center; justify-content: center; border-radius: 1.5rem; padding: .75rem; }
.canva-media .inner { display: flex; align-items: center; justify-content: center; border-radius: 1rem; background: #fff; padding: 2rem; }
.canva-media .inner img { height: 14rem; width: auto; object-fit: contain; }

/* cta */
.cta-box { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid rgba(227,30,36,0.3); background: linear-gradient(135deg, rgba(227,30,36,0.2), rgba(227,30,36,0.05), transparent); padding: 2.5rem; text-align: center; }
.cta-box h2 { font-family: "Sora", sans-serif; font-size: 1.875rem; font-weight: 800; margin: 0; }
.cta-box p { margin: 1rem auto 0; max-width: 36rem; color: #d4d4d4; }

/* accordion */
.acc-item { border-radius: 1rem; padding: 0 1.25rem; }
.acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; font-size: 1rem; font-weight: 500; color: #fff; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; }
.acc-trigger .chev { width: 1.125rem; height: 1.125rem; transition: transform .25s; flex-shrink: 0; color: #a3a3a3; }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-content-inner { padding-bottom: 1.25rem; font-size: .875rem; line-height: 1.6; color: #a3a3a3; }

/* form */
.field { display: grid; gap: .5rem; }
.field label { font-size: .875rem; font-weight: 500; color: #d4d4d4; }
.input {
  width: 100%; border-radius: .75rem; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); padding: .75rem 1rem; font-size: .875rem; color: #fff; font-family: inherit;
}
.input::placeholder { color: #737373; }
.input:focus { border-color: var(--brand); outline: none; }
textarea.input { resize: vertical; }
.form-grid { display: grid; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; border-radius: 1rem; padding: 1.25rem; transition: border-color .2s; }
.contact-item:hover { border-color: rgba(227,30,36,0.4); }
.contact-item .meta p:first-child { font-weight: 600; color: #fff; margin: 0; }
.contact-item .meta p:last-child { font-size: .875rem; color: #a3a3a3; margin: 0; }

/* footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); background: #08080a; }
.footer-inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.footer p.about { margin-top: 1rem; font-size: .875rem; line-height: 1.6; color: #a3a3a3; }
.socials { margin-top: 1.25rem; display: flex; gap: .75rem; }
.social-btn { display: flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center; border-radius: .75rem; color: #fff; }
.social-btn:hover { color: var(--brand); }
.footer h4 { font-family: "Sora", sans-serif; font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin: 0; }
.footer ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .625rem; font-size: .875rem; color: #a3a3a3; }
.footer ul a:hover { color: var(--brand); }
.footer .colp { margin-top: 1rem; font-size: .875rem; color: #a3a3a3; }
.footer-bottom { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }
.footer-bottom p { font-size: .75rem; line-height: 1.6; color: #737373; margin: 0; }
.footer-bottom p + p { margin-top: .75rem; }

.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.section-tint { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.015); }

/* responsive */
@media (min-width: 640px) {
  .sm-g2 { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: row; }
  .hero-h1 { font-size: 3rem; }
}
@media (min-width: 768px) {
  .md-g2 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .h2 { font-size: 2.25rem; }
  .hero-h1 { font-size: 3.75rem; }
  .cta-box { padding: 4rem; }
  .cta-box h2 { font-size: 2.25rem; }
  .py-hero { padding-top: 7rem; padding-bottom: 7rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .g3, .lg-g3 { grid-template-columns: repeat(3, 1fr); }
  .g4, .lg-g4 { grid-template-columns: repeat(4, 1fr); }
}
