/* @font-face {
    font-family: 'Organetto';
    src: url('../fonts/Organetto-Regular.woff2') format('woff2'), url('../fonts/Organetto-Regular.woff') format('woff'), url('../fonts/Organetto-Regular.otf') format('opentype'), url('../fonts/Organetto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
} */

@font-face {
    font-family: 'Singolare';
    src:
        url('../fonts/Fontspring-DEMO-singolare-bold.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #0b1b2b;
    --ink: #15273a;
    --ink-2: #0f2030;
    --body: #dfe8f3;
    --muted: #9fb2c6;
    --accent: #ff6b8a;
    --accent-2: #ffa6b8;
    --accent-dark: #e04e78;
    --chip-bg: rgba(255, 255, 255, .06)
}

.accent {
    color: var(--accent)
}

.bg-navy {
    background: var(--navy) !important
}

.bg-ink {
    background: var(--ink) !important
}

.text-body {
    color: var(--body) !important
}

.text-accent-emph {
    color: var(--accent-2)
}

.border-ink {
    border-color: var(--ink) !important
}

body {
    font-feature-settings: 'ss01' on, 'liga' on
}

.btn-pill {
    border-radius: 999px
}


.btn-accent {
    --bs-btn-bg: var(--accent);
    --bs-btn-color: #0b0b0b;
    --bs-btn-box-shadow: 0 10px 20px rgba(255, 107, 138, .2);
    --bs-btn-hover-bg: var(--accent-dark);
    --bs-btn-hover-color: #0b0b0b;
    --bs-btn-hover-border-color: var(--accent)
}

.btn-accent-outline {
    --bs-btn-color: var(--accent);
    border: 3px solid var(--accent);
    --bs-btn-box-shadow: 0 10px 20px rgba(255, 161, 107, 0.2);
    --bs-btn-hover-color: var(--accent-dark);
    --bs-btn-hover-border-color: var(--accent-dark);
}

.btn-accent:hover {
    filter: brightness(.95)
}

.btn-outline-ink {
    --bs-btn-color: var(--body);
    --bs-btn-border-color: var(--ink);
    --bs-btn-hover-bg: var(--ink);
    --bs-btn-hover-border-color: var(--ink)
}

.btn-ghost {
    background: transparent;
    border: 1px dashed var(--ink);
    color: var(--body);
    border-radius: 999px
}

.badge.text-bg-ink {
    background: var(--ink);
    color: var(--body);
    border: 1px solid rgba(255, 255, 255, .06)
}

.grad {
    background: linear-gradient(90deg, var(--accent), #cccfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.logo {
    font-family: 'Singolare', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1;
    display: inline-block;
    font-size: 1.7rem
}

.logo-hero {
    font-size: clamp(2.4rem, 6vw, 4rem)
}

.o-dot {
    position: relative;
    display: inline-block
}

.o-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -.28em;
    width: .22em;
    height: .22em;
    border-radius: 50%;
    background: currentColor
}

.py-6 {
    padding-block: clamp(3rem, 6vw, 5rem)
}

.hero {
    position: relative;
    overflow: hidden
}

.mockup {
    border: 1px solid rgba(255, 255, 255, .08)
}

.brand-lockup {
    opacity: .9
}

.star-wrap {
    position: fixed;
    right: 6vw;
    top: 8vh;
    z-index: -1;
    filter: drop-shadow(0 10px 40px rgba(255, 107, 138, .25))
}

.star {
    width: 120px;
    aspect-ratio: 1;
    background: radial-gradient(circle at 50% 50%, var(--accent), var(--accent-2));
    border-radius: 24px;
    animation: float 9s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-12px) rotate(6deg)
    }

    100% {
        transform: translateY(0) rotate(0)
    }
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--ink-2);
  padding-block: 14px;
}

.marquee .track {
  display: flex;
  gap: 16px;
  min-width: 200%;              /* important for desktop: ensures enough width */
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.marquee:hover .track {
  animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.chip {
    background: var(--chip-bg);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--body);
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05)
}

.tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--chip-bg);
    border: 1px solid rgba(255, 255, 255, .06)
}

.svc-card,
.feat-card {
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.grid {
    columns: 2 240px;
    column-gap: 1rem
}

.tile {
    break-inside: avoid;
    background: linear-gradient(135deg, #2a3d55, #0f2030);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    height: 180px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);


    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tile.wide {
    height: 220px
}

.tile.tall {
    height: 300px
}

.tile {
  position: relative;
  overflow: hidden;
}


/* Image overlay for opacity */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* controls opacity */
  transition: background 0.3s ease;
  border-radius: inherit;
}

/* Optional hover effect */
.tile:hover::before {
  background: rgba(0, 0, 0, 0.25);
}

/* Dynamic title text */
.tile-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.price-card {
    background: linear-gradient(180deg, rgba(21, 39, 58, .8), rgba(15, 32, 48, .9));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: clamp(1rem, 2.5vw, 2rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35)
}

footer {
    color: var(--muted)
}




.subtitle{
    border: None !important;
    border-bottom: 3px solid var(--accent) !important;
    border-radius: 0 !important;
    background: none !important;
    font-size: medium !important;
}

.subtitle h3{
    margin: 0 !important;
    padding-bottom: 4px !important;
    font-weight: 600 !important;
}

.label-subtitle{
    font-weight: 500 !important;
    font-size: 20px !important;
}

.mb-6{
    margin-bottom: 5rem !important;
}

