:root {
  --bg: #F8FAFC;          /* Soft slate blue-white background */
  --paper: #FFFFFF;       /* Pure white card/section background */
  --ink: #0F172A;         /* Slate 900 - very deep blue/black */
  --blue: #1D4ED8;        /* Royal blue brand color */
  --blue-deep: #1E3A8A;   /* Navy blue for hover states */
  --blue-accent: #3B82F6; /* Vibrant blue accent */
  --blue-highlight: #EFF6FF; /* Very soft light blue for card hover / highlighting */
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.16);
  --muted: #475569;       /* Slate 600 secondary text */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display, .closing h2, .section-head h2, .faq-q, .price-card .price {
  font-family: 'Aesthet Nova', Georgia, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

/* For non-italic accent texts */
.italic-accent {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  font-weight: 400;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

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

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

/* ---- Top bar ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line-strong);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}

.nav-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  transition: all .2s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
}

.topbar-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ---- Dropdown menu ---- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.dropbtn:hover,
.dropbtn.active {
  color: var(--blue);
}

.chevron {
  font-size: 8px;
  transition: transform 0.2s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--paper);
  min-width: 210px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  z-index: 100;
  padding: 8px 0;
  margin-top: 8px;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

.dropdown-content a {
  color: var(--ink);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: none !important;
}

.dropdown-content a:hover {
  background-color: var(--blue-highlight);
  color: var(--blue);
}

.dropdown-content a.active {
  color: var(--blue);
  background-color: var(--blue-highlight);
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* ---- Navigation toggle button (Mobile) ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background 0.2s ease;
}

.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ---- spec tag / signature element ---- */
.spec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 18px;
}

.spec::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--blue);
  display: inline-block;
  transform: rotate(45deg);
}

.bracket-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 28px;
}

.bracket-card::before, .bracket-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--blue);
}

.bracket-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.bracket-card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
}

/* ---- Hero ---- */
.hero {
  padding-top: 64px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 88px);
  text-transform: uppercase;
  max-width: 920px;
}

.hero-note {
  max-width: 230px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 10px;
  text-align: right;
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.hero-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.hero-body p {
  font-size: 18px;
  margin: 0 0 20px;
}

.hero-body p:first-child {
  font-family: 'Aesthet Nova', Georgia, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  margin-top: 12px;
  transition: all .25s ease;
  border: 1px solid var(--blue);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.btn-primary .arrow {
  transform: rotate(-45deg);
  display: inline-block;
  transition: transform .25s ease;
}

.btn-primary:hover .arrow {
  transform: rotate(0deg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  border: 1px solid var(--ink);
  transition: all .2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ---- generic section ---- */
section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-strong);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 640px;
  text-transform: uppercase;
}

.section-head .num {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 8px;
}

.lede {
  max-width: 680px;
  font-size: 18px;
  color: var(--ink);
}

.lede + .lede {
  margin-top: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.two-col p {
  font-size: 16.5px;
  color: var(--ink);
  margin: 0 0 16px;
}

/* ---- card grid (services / plans / etc) ---- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.build-item {
  background: var(--paper);
  padding: 36px 32px;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
}

.build-item h3 {
  font-size: 22px;
  text-transform: none;
  margin-bottom: 12px;
  font-weight: 600;
}

.build-item p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 0 14px;
}

.build-item .taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.build-item .taglist span {
  font-size: 12px;
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.build-item.feature {
  grid-column: span 2;
  background: var(--paper);
  color: var(--ink);
}

.build-item.feature h3 {
  color: var(--ink);
}

.build-item.feature p {
  color: var(--muted);
}

.build-item.statement {
  grid-column: span 2;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  text-align: center;
}

.build-item.statement p {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- capability list blocks ---- */
.cap-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.cap-block:last-child {
  margin-bottom: 0;
}

.cap-block h3 {
  font-size: 26px;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 360px;
}

.cap-block p {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 420px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.tag-grid div {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.tag-grid div::before {
  content: "—";
  color: var(--blue);
}

/* ---- Approach / steps ---- */
.approach-list {
  border-top: 1px solid var(--line-strong);
}

.approach-row {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
  align-items: baseline;
}

.approach-row .idx {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  color: var(--blue);
  font-size: 14px;
}

.approach-row h3 {
  font-size: 24px;
  text-transform: none;
  font-weight: 600;
}

.approach-row p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

/* ---- Why / quote block ---- */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-quote {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.25;
}

/* ---- Pricing cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.price-card {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.price-card.highlight {
  background: var(--blue-highlight);
  color: var(--ink);
  border-color: var(--blue);
}

.price-card .plan-name {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.price-card.highlight .plan-name {
  color: var(--blue);
}

.price-card .price {
  font-size: 44px;
  margin-bottom: 6px;
}

.price-card .price span {
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}

.price-card.highlight .price span {
  color: var(--muted);
}

.price-card .plan-desc {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-card.highlight .plan-desc {
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.price-card li {
  font-size: 14.5px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
}

.price-card.highlight li {
  border-top: 1px solid var(--line-strong);
}

.price-card li::before {
  content: "—";
  color: var(--blue);
}

.price-card.highlight li::before {
  color: var(--blue);
}

/* ---- FAQ accordion ---- */
.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.faq-q .plus {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  color: var(--blue);
  font-size: 20px;
  transition: transform .25s ease;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  font-size: 15.5px;
  color: var(--muted);
  padding-bottom: 26px;
  max-width: 720px;
  margin: 0;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.contact-detail .value {
  font-size: 19px;
  font-weight: 500;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-highlight);
}

/* ---- Closing CTA ---- */
.closing {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 90px;
  border-bottom: none;
}

.closing .spec {
  justify-content: center;
  display: flex;
}

.closing h2 {
  font-size: clamp(38px, 6vw, 72px);
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 36px;
}

.closing-note {
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 15px;
}

footer {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
}

footer .brand img {
  height: 48px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--blue);
}

/* ---- Scroll Lock ---- */
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 900px) {
  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero-body, .two-col, .cap-block, .why-wrap, .pricing-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .build-item.feature, .build-item.statement {
    grid-column: span 1;
  }
  .approach-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tag-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-top {
    flex-direction: column;
  }
  .hero-note {
    text-align: left;
  }
  
  /* Mobile menu logic */
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 100;
    padding: 40px;
    overflow-y: auto;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 8px;
    padding: 0;
    text-align: center;
    display: block;
  }
  .dropdown-content a {
    padding: 8px 12px;
  }
  .topbar-cta {
    display: none;
  }
}

/* ---- 3D Curved Carousel ---- */
.carousel-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--bg);
}

.carousel-container {
  position: relative;
  width: 100%;
  padding: 40px 0;
  perspective: 1100px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transform-style: preserve-3d;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container::before, .carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  transform: translate3d(0, 0, 10px);
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 10%, transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 10%, transparent);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  transform-style: preserve-3d;
  padding: 0 calc(50vw - 140px);
}

.carousel-card {
  width: 280px;
  height: 320px;
  background: var(--paper);
  border: 1px solid var(--blue);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  color: var(--blue);
  -webkit-font-smoothing: subpixel-antialiased;
}

.carousel-card:hover {
  box-shadow: 0 16px 40px rgba(29, 78, 216, 0.1);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-tag {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-tag.brand {
  background: rgba(29, 78, 216, 0.08);
  color: var(--blue);
}

.card-tag.creator {
  background: rgba(29, 78, 216, 0.08);
  color: var(--blue);
}

.card-doodle {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-doodle svg {
  width: 100%;
  height: 100%;
}

.card-body h3 {
  font-family: 'Aesthet Nova', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: none;
  line-height: 1.2;
  color: var(--blue);
}

.card-body p {
  font-size: 13.5px;
  color: rgba(29, 78, 216, 0.8) !important;
  line-height: 1.5;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 600px) {
  .carousel-card {
    width: 220px;
    height: 260px;
    padding: 18px 16px;
  }
  .carousel-track {
    padding: 0 calc(50vw - 110px);
    gap: 16px;
  }
  .card-top {
    margin-bottom: 12px;
  }
  .card-doodle {
    width: 44px;
    height: 44px;
  }
  .card-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .card-body p {
    font-size: 12px;
    line-height: 1.4;
  }
  .carousel-container {
    padding: 20px 0;
  }
}

