:root {
  --primary: #ad1457;
  --secondary: #f48fb1;
  --on-primary: #ffffff;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }
.nav-links a.is-active { color: var(--primary); font-weight: 700; }

.sec-header-04 { position: sticky; top: 0; z-index: 30; padding: .85rem 0; background: transparent; }
.sec-header-04 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-header-04 .pill { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .45rem .55rem .45rem 1rem; border-radius: 999px; background: color-mix(in srgb, var(--bg) 78%, white); border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.sec-header-04 .brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--secondary); font-weight: 800; }
.sec-header-04 .brand img { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; }
.sec-header-04 .nav-links { display: flex; gap: 1rem; }
.sec-header-04 .nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.sec-header-04 .btn { display: inline-flex; align-items: center; background: var(--secondary); color: #fff; padding: .65rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .88rem; }
@media (max-width: 860px) { .sec-header-04 .nav-links { display: none; } }

.sec-hero-05 { padding: 3.5rem 0 4.5rem; background: radial-gradient(900px 420px at 90% 10%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 60%), var(--bg); }
.sec-hero-05 .container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.sec-hero-05 .layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: center; }
.sec-hero-05 .eyebrow { display: inline-flex; padding: .35rem .7rem; border-radius: 999px; background: color-mix(in srgb, var(--primary) 14%, white); color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sec-hero-05 h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -.035em; margin: 1rem 0; }
.sec-hero-05 .lead { color: var(--muted); font-size: 1.08rem; line-height: 1.7; max-width: 36rem; }
.sec-hero-05 .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.sec-hero-05 .btn { display: inline-flex; background: var(--secondary); color: #fff; padding: .9rem 1.25rem; border-radius: 14px; text-decoration: none; font-weight: 800; }
.sec-hero-05 .ghost { display: inline-flex; align-items: center; padding: .9rem 1.1rem; border-radius: 14px; border: 1px solid var(--border); color: var(--secondary); text-decoration: none; font-weight: 700; }
.sec-hero-05 .media { position: relative; }
.sec-hero-05 .media::before { content: ""; position: absolute; inset: 12% -8% -8% 18%; border-radius: 28px; background: color-mix(in srgb, var(--primary) 22%, transparent); }
.sec-hero-05 img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 28px; box-shadow: 0 30px 60px rgba(15,23,42,.18); }
@media (max-width: 900px) { .sec-hero-05 .layout { grid-template-columns: 1fr; } .sec-hero-05 img { aspect-ratio: 16/11; } }

.sec-features-01 { padding: 4rem 0; }
.sec-features-01 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-features-01 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-features-01 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-features-01 .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .sec-features-01 .grid { grid-template-columns: 1fr; } }

.sec-services-03 { padding: 5rem 0; background: color-mix(in srgb, var(--secondary) 3%, var(--bg)); }
.sec-services-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-services-03 h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -.03em; margin: 0 0 1.75rem; }
.sec-services-03 .bento { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.sec-services-03 .card { background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; padding: 0 0 1.1rem; box-shadow: 0 12px 30px rgba(15,23,42,.05); }
.sec-services-03 .card.wide { grid-row: span 2; display: flex; flex-direction: column; }
.sec-services-03 .card img { width: 100%; height: 180px; object-fit: cover; }
.sec-services-03 .card.wide img { height: 280px; }
.sec-services-03 h3 { margin: 1rem 1.1rem .4rem; font-size: 1.15rem; }
.sec-services-03 p { margin: 0 1.1rem; color: var(--muted); line-height: 1.6; font-size: .95rem; }
@media (max-width: 860px) { .sec-services-03 .bento { grid-template-columns: 1fr; } .sec-services-03 .card.wide { grid-row: auto; } }

.sec-pricing-02 { padding: 4rem 0; }
.sec-pricing-02 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-pricing-02 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-pricing-02 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-faq-02 { padding: 4rem 0; }
.sec-faq-02 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-faq-02 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-faq-02 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-faq-02 .qa { margin-bottom: 1.25rem; }

.sec-cta-03 { padding: 2rem 0 4rem; }
.sec-cta-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-cta-03 .band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem 2.2rem; border-radius: 24px; background: linear-gradient(120deg, var(--secondary), color-mix(in srgb, var(--secondary) 70%, var(--primary))); color: #fff; }
.sec-cta-03 h2 { margin: 0 0 .5rem; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.02em; }
.sec-cta-03 p { margin: 0; color: rgba(255,255,255,.8); max-width: 36rem; line-height: 1.6; }
.sec-cta-03 .btn { display: inline-flex; background: #fff; color: var(--secondary); padding: .95rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 800; white-space: nowrap; }
@media (max-width: 720px) { .sec-cta-03 .band { flex-direction: column; align-items: flex-start; } }

.sec-contact-01 { padding: 4rem 0; }
.sec-contact-01 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-contact-01 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-contact-01 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-contact-01 .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.sec-contact-01 .info { list-style: none; padding: 0; color: var(--muted); }
.sec-contact-01 .panel { display: grid; gap: .75rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.sec-contact-01 input, .sec-contact-01 textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: .75rem; font: inherit; }
.sec-contact-01 .btn { background: var(--primary); color: var(--on-primary); border: 0; border-radius: 999px; padding: .85rem 1.2rem; font-weight: 700; cursor: pointer; }
@media (max-width: 860px) { .sec-contact-01 .grid { grid-template-columns: 1fr; } }

.sec-footer-03 { background: #0b1220; color: #e2e8f0; padding: 3.5rem 0 1.5rem; }
.sec-footer-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-footer-03 .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.sec-footer-03 .brand strong { font-size: 1.2rem; color: #fff; }
.sec-footer-03 .brand p, .sec-footer-03 p { color: #94a3b8; line-height: 1.6; margin: .35rem 0; }
.sec-footer-03 .label { color: var(--primary); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: .5rem !important; }
.sec-footer-03 .bottom { border-top: 1px solid rgba(148,163,184,.2); padding-top: 1rem; font-size: .85rem; }
@media (max-width: 800px) { .sec-footer-03 .grid { grid-template-columns: 1fr; } }

.sec-header-04 { position: sticky; top: 0; z-index: 30; padding: .85rem 0; background: transparent; }
.sec-header-04 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-header-04 .pill { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .45rem .55rem .45rem 1rem; border-radius: 999px; background: color-mix(in srgb, var(--bg) 78%, white); border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.sec-header-04 .brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--secondary); font-weight: 800; }
.sec-header-04 .brand img { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; }
.sec-header-04 .nav-links { display: flex; gap: 1rem; }
.sec-header-04 .nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.sec-header-04 .btn { display: inline-flex; align-items: center; background: var(--secondary); color: #fff; padding: .65rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .88rem; }
@media (max-width: 860px) { .sec-header-04 .nav-links { display: none; } }

.sec-about-02 { padding: 4rem 0; }
.sec-about-02 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-about-02 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-about-02 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-about-02 .wide { max-width: 720px; font-size: 1.1rem; }

.sec-features-01 { padding: 4rem 0; }
.sec-features-01 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-features-01 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-features-01 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-features-01 .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .sec-features-01 .grid { grid-template-columns: 1fr; } }

.sec-footer-03 { background: #0b1220; color: #e2e8f0; padding: 3.5rem 0 1.5rem; }
.sec-footer-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-footer-03 .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.sec-footer-03 .brand strong { font-size: 1.2rem; color: #fff; }
.sec-footer-03 .brand p, .sec-footer-03 p { color: #94a3b8; line-height: 1.6; margin: .35rem 0; }
.sec-footer-03 .label { color: var(--primary); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: .5rem !important; }
.sec-footer-03 .bottom { border-top: 1px solid rgba(148,163,184,.2); padding-top: 1rem; font-size: .85rem; }
@media (max-width: 800px) { .sec-footer-03 .grid { grid-template-columns: 1fr; } }

.sec-header-04 { position: sticky; top: 0; z-index: 30; padding: .85rem 0; background: transparent; }
.sec-header-04 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-header-04 .pill { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .45rem .55rem .45rem 1rem; border-radius: 999px; background: color-mix(in srgb, var(--bg) 78%, white); border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.sec-header-04 .brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--secondary); font-weight: 800; }
.sec-header-04 .brand img { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; }
.sec-header-04 .nav-links { display: flex; gap: 1rem; }
.sec-header-04 .nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.sec-header-04 .btn { display: inline-flex; align-items: center; background: var(--secondary); color: #fff; padding: .65rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .88rem; }
@media (max-width: 860px) { .sec-header-04 .nav-links { display: none; } }

.sec-services-03 { padding: 5rem 0; background: color-mix(in srgb, var(--secondary) 3%, var(--bg)); }
.sec-services-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-services-03 h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -.03em; margin: 0 0 1.75rem; }
.sec-services-03 .bento { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.sec-services-03 .card { background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; padding: 0 0 1.1rem; box-shadow: 0 12px 30px rgba(15,23,42,.05); }
.sec-services-03 .card.wide { grid-row: span 2; display: flex; flex-direction: column; }
.sec-services-03 .card img { width: 100%; height: 180px; object-fit: cover; }
.sec-services-03 .card.wide img { height: 280px; }
.sec-services-03 h3 { margin: 1rem 1.1rem .4rem; font-size: 1.15rem; }
.sec-services-03 p { margin: 0 1.1rem; color: var(--muted); line-height: 1.6; font-size: .95rem; }
@media (max-width: 860px) { .sec-services-03 .bento { grid-template-columns: 1fr; } .sec-services-03 .card.wide { grid-row: auto; } }

.sec-pricing-02 { padding: 4rem 0; }
.sec-pricing-02 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-pricing-02 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-pricing-02 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-footer-03 { background: #0b1220; color: #e2e8f0; padding: 3.5rem 0 1.5rem; }
.sec-footer-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-footer-03 .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.sec-footer-03 .brand strong { font-size: 1.2rem; color: #fff; }
.sec-footer-03 .brand p, .sec-footer-03 p { color: #94a3b8; line-height: 1.6; margin: .35rem 0; }
.sec-footer-03 .label { color: var(--primary); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: .5rem !important; }
.sec-footer-03 .bottom { border-top: 1px solid rgba(148,163,184,.2); padding-top: 1rem; font-size: .85rem; }
@media (max-width: 800px) { .sec-footer-03 .grid { grid-template-columns: 1fr; } }

.sec-header-04 { position: sticky; top: 0; z-index: 30; padding: .85rem 0; background: transparent; }
.sec-header-04 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-header-04 .pill { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .45rem .55rem .45rem 1rem; border-radius: 999px; background: color-mix(in srgb, var(--bg) 78%, white); border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.sec-header-04 .brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--secondary); font-weight: 800; }
.sec-header-04 .brand img { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; }
.sec-header-04 .nav-links { display: flex; gap: 1rem; }
.sec-header-04 .nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.sec-header-04 .btn { display: inline-flex; align-items: center; background: var(--secondary); color: #fff; padding: .65rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .88rem; }
@media (max-width: 860px) { .sec-header-04 .nav-links { display: none; } }

.sec-gallery-01 { padding: 4rem 0; }
.sec-gallery-01 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-gallery-01 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-gallery-01 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-gallery-01 .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sec-gallery-01 img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 860px) { .sec-gallery-01 .grid { grid-template-columns: 1fr; } }

.sec-footer-03 { background: #0b1220; color: #e2e8f0; padding: 3.5rem 0 1.5rem; }
.sec-footer-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-footer-03 .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.sec-footer-03 .brand strong { font-size: 1.2rem; color: #fff; }
.sec-footer-03 .brand p, .sec-footer-03 p { color: #94a3b8; line-height: 1.6; margin: .35rem 0; }
.sec-footer-03 .label { color: var(--primary); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: .5rem !important; }
.sec-footer-03 .bottom { border-top: 1px solid rgba(148,163,184,.2); padding-top: 1rem; font-size: .85rem; }
@media (max-width: 800px) { .sec-footer-03 .grid { grid-template-columns: 1fr; } }

.sec-header-04 { position: sticky; top: 0; z-index: 30; padding: .85rem 0; background: transparent; }
.sec-header-04 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-header-04 .pill { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .45rem .55rem .45rem 1rem; border-radius: 999px; background: color-mix(in srgb, var(--bg) 78%, white); border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(15,23,42,.08); backdrop-filter: blur(14px); }
.sec-header-04 .brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--secondary); font-weight: 800; }
.sec-header-04 .brand img { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; }
.sec-header-04 .nav-links { display: flex; gap: 1rem; }
.sec-header-04 .nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.sec-header-04 .btn { display: inline-flex; align-items: center; background: var(--secondary); color: #fff; padding: .65rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .88rem; }
@media (max-width: 860px) { .sec-header-04 .nav-links { display: none; } }

.sec-contact-01 { padding: 4rem 0; }
.sec-contact-01 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-contact-01 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 1rem; }
.sec-contact-01 p { color: var(--muted, #475569); line-height: 1.65; }

.sec-contact-01 .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.sec-contact-01 .info { list-style: none; padding: 0; color: var(--muted); }
.sec-contact-01 .panel { display: grid; gap: .75rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.sec-contact-01 input, .sec-contact-01 textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: .75rem; font: inherit; }
.sec-contact-01 .btn { background: var(--primary); color: var(--on-primary); border: 0; border-radius: 999px; padding: .85rem 1.2rem; font-weight: 700; cursor: pointer; }
@media (max-width: 860px) { .sec-contact-01 .grid { grid-template-columns: 1fr; } }

.sec-footer-03 { background: #0b1220; color: #e2e8f0; padding: 3.5rem 0 1.5rem; }
.sec-footer-03 .container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.sec-footer-03 .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.sec-footer-03 .brand strong { font-size: 1.2rem; color: #fff; }
.sec-footer-03 .brand p, .sec-footer-03 p { color: #94a3b8; line-height: 1.6; margin: .35rem 0; }
.sec-footer-03 .label { color: var(--primary); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: .5rem !important; }
.sec-footer-03 .bottom { border-top: 1px solid rgba(148,163,184,.2); padding-top: 1rem; font-size: .85rem; }
@media (max-width: 800px) { .sec-footer-03 .grid { grid-template-columns: 1fr; } }
