﻿:root {
    --primary: #081734;
    --primary-soft: #0d244c;
    --secondary: #1d8fff;
    --accent: #14c0d8;
    --cta: #f97316;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f3f7fc;
    --white: #ffffff;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-sm: 0 8px 20px rgba(2, 8, 23, 0.08);
    --shadow-lg: 0 16px 36px rgba(2, 8, 23, 0.14);
    --container-max: 1680px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Outfit", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    padding-bottom: 66px;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand {
    font-family: "Outfit", "Manrope", sans-serif;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 3.1vw, 3.15rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.65rem, 2.2vw, 2.4rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.15rem, 1.2vw, 1.45rem);
    line-height: 1.3;
}

main > section > .container {
    max-width: none;
    width: min(var(--container-max), calc(100% - 40px));
}

a {
    color: var(--secondary);
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
    background: #fff;
    padding: 8px 12px;
}

.topbar {
    background: #071a3a;
    color: #f8fbff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    font-size: 1rem;
    font-weight: 400;
}

.topbar a {
    color: #f8fbff;
    text-decoration: none;
}

.topbar i {
    color: #f8fbff;
    font-size: 0.9rem;
}

.site-header {
    z-index: 1200;
}

.navbar {
    box-shadow: 0 2px 12px rgba(2, 8, 23, 0.04);
    min-height: 74px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #17b7d9, #0ca4d2);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.brand-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 400;
}

.nav-link {
    color: #374151;
    font-weight: 400;
    font-size: 0.98rem;
    padding-inline: 0.9rem !important;
}

.nav-link.active,
.nav-link:hover {
    color: #111827;
}

.btn {
    border-radius: 10px;
    font-weight: 700;
}

.btn-cta {
    background: var(--cta);
    border-color: var(--cta);
    color: #fff;
}

.btn-cta:hover,
.btn-cta:focus {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff;
}

.btn-offer {
    background: #10b7d8;
    border-color: #10b7d8;
    color: #fff;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 1.02rem;
}

.btn-offer:hover,
.btn-offer:focus {
    background: #0da0be;
    border-color: #0da0be;
    color: #fff;
}

.hero-section {
    position: relative;
    min-height: 860px;
    display: grid;
    align-items: center;
    background-image: url("https://images.unsplash.com/photo-1587202372775-e229f172b9d7?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    animation: heroBgDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(5, 20, 47, 0.86), rgba(16, 33, 67, 0.62)),
        radial-gradient(circle at 84% 20%, rgba(26, 165, 203, 0.22), transparent 40%);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: -20% -30%;
    background: linear-gradient(105deg, transparent 35%, rgba(64, 213, 240, 0.1) 50%, transparent 66%);
    transform: translateX(-40%);
    animation: heroLightSweep 7s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 116px;
    padding-bottom: 108px;
}

.hero-kicker {
    font-weight: 800;
    font-size: clamp(2.1rem, 4.1vw, 3.95rem);
    color: #ffffff;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-title {
    font-size: clamp(2.75rem, 5.75vw, 5.45rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: #13bce0;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-sub {
    max-width: 980px;
    margin-inline: auto;
    font-size: clamp(1.1rem, 1.72vw, 2rem);
    color: #ecf3ff;
    line-height: 1.38;
    font-weight: 400;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.68s ease, transform 0.68s ease;
}

.hero-actions {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.62s ease, transform 0.62s ease;
}

.btn-hero-whatsapp {
    background: #10bce0;
    border: 1px solid #10bce0;
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 34px;
}

.btn-hero-whatsapp:hover {
    background: #0ea5c5;
    border-color: #0ea5c5;
    color: #fff;
}

.btn-hero-secondary {
    background: #fff;
    border: 1px solid #fff;
    color: #111827;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 34px;
}

.btn-hero-secondary:hover {
    background: #f3f4f6;
    color: #111827;
}

.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-inline: auto;
    max-width: 1220px;
    margin-top: 24px;
}

.quick-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #f4f7fd;
    background: rgba(82, 95, 119, 0.44);
    border: 1px solid rgba(226, 232, 240, 0.28);
    border-radius: 16px;
    padding: 20px 20px;
    transition: 0.2s ease;
    font-weight: 700;
    font-size: 1.06rem;
    min-height: 90px;
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.45s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.quick-box i {
    color: #10c2e5;
    font-size: 1.5rem;
}

.quick-box:hover {
    transform: translateY(-2px);
    border-color: #9bdcf1;
    background: rgba(82, 95, 119, 0.66);
}

.hero-section.is-visible .hero-kicker,
.hero-section.is-visible .hero-title,
.hero-section.is-visible .hero-sub,
.hero-section.is-visible .hero-actions,
.hero-section.is-visible .quick-box {
    opacity: 1;
    transform: none;
}

.hero-section.is-visible .hero-kicker { transition-delay: 0.08s; }
.hero-section.is-visible .hero-title { transition-delay: 0.18s; }
.hero-section.is-visible .hero-sub { transition-delay: 0.28s; }
.hero-section.is-visible .hero-actions { transition-delay: 0.36s; }

.hero-section.is-visible .quick-box:nth-child(1) { transition-delay: 0.44s; }
.hero-section.is-visible .quick-box:nth-child(2) { transition-delay: 0.5s; }
.hero-section.is-visible .quick-box:nth-child(3) { transition-delay: 0.56s; }
.hero-section.is-visible .quick-box:nth-child(4) { transition-delay: 0.62s; }
.hero-section.is-visible .quick-box:nth-child(5) { transition-delay: 0.68s; }
.hero-section.is-visible .quick-box:nth-child(6) { transition-delay: 0.74s; }
.hero-section.is-visible .quick-box:nth-child(7) { transition-delay: 0.8s; }
.hero-section.is-visible .quick-box:nth-child(8) { transition-delay: 0.86s; }

.hero-section.is-visible .hero-quick-grid .quick-box {
    animation: heroQuickFloat 3.6s ease-in-out infinite;
    animation-delay: var(--quick-delay, 0s);
}

@keyframes heroBgDrift {
    from { background-position: 48% 50%; }
    to { background-position: 52% 46%; }
}

@keyframes heroLightSweep {
    0% { transform: translateX(-42%); opacity: 0.25; }
    45% { transform: translateX(14%); opacity: 0.5; }
    100% { transform: translateX(26%); opacity: 0.2; }
}

@keyframes heroQuickFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.section-space {
    padding: clamp(54px, 7.5vw, 100px) 0;
}

.section-light {
    background: #fff;
}

.about-hero {
    position: relative;
    min-height: 300px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 54%, rgba(28, 155, 217, 0.22), transparent 44%),
        linear-gradient(110deg, #071632 5%, #0d234a 50%, #1d345d 100%);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    background: radial-gradient(circle at 84% 40%, rgba(58, 208, 242, 0.14), transparent 40%);
}

.about-hero-overlay::after {
    content: "";
    position: absolute;
    inset: -20% -20%;
    background: linear-gradient(105deg, transparent 36%, rgba(92, 220, 245, 0.12) 50%, transparent 66%);
    transform: translateX(-42%);
    animation: heroLightSweep 8s ease-in-out infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 48px;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 2.7vw, 3.1rem);
    margin-bottom: 10px;
    font-weight: 800;
}

.about-hero-content p {
    margin: 0 auto;
    max-width: 900px;
    color: #e5f2ff;
    font-size: clamp(0.98rem, 0.95vw, 1.18rem);
}

.about-story {
    background: #f4f8fd;
}

.about-story h2 {
    margin-bottom: 16px;
}

.about-story p {
    color: #5b6f88;
    margin-bottom: 12px;
    font-size: clamp(0.96rem, 0.84vw, 1.06rem);
    line-height: 1.7;
}

.about-story-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
    transform: translateZ(0);
}

.about-story-media img {
    width: 100%;
    height: 100%;
    max-height: 720px;
    object-fit: cover;
    display: block;
}

.about-values {
    background: #f6f9fd;
}

.services-detail {
    background: #f4f8fd;
}

.services-list {
    display: grid;
    gap: 24px;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.service-detail-row.reverse .service-detail-media {
    order: 2;
}

.service-detail-row.reverse .service-detail-content {
    order: 1;
}

.service-detail-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.service-detail-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: clamp(1.38rem, 1.25vw, 1.9rem);
}

.service-detail-content h2 i {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: #12b9da;
    color: #fff;
}

.service-detail-content p {
    margin: 0 0 10px;
    color: #5b6f88;
    font-size: clamp(0.94rem, 0.8vw, 1.02rem);
}

.service-detail-content ul {
    margin: 0 0 12px;
    padding-left: 18px;
    color: #1d3658;
}

.service-detail-content li {
    margin-bottom: 4px;
    font-size: clamp(0.9rem, 0.76vw, 0.97rem);
}

.service-detail-btn {
    background: #14bddf;
    border-color: #14bddf;
    color: #fff;
    border-radius: 999px;
    font-size: 0.84rem;
    padding: 6px 14px;
    font-weight: 700;
}

.service-detail-btn:hover {
    background: #0ea8c7;
    border-color: #0ea8c7;
    color: #fff;
}

.services-page.is-visible .service-detail-row {
    opacity: 1;
    transform: none;
    transition-delay: var(--service-row-delay, 0ms);
}

.service-detail-page .about-hero {
    min-height: 250px;
}

.service-hero-head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.service-hero-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #14bedf;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(20, 190, 223, 0.28);
}

.service-detail-page .about-hero-content {
    text-align: left;
}

.service-detail-page .about-hero-content h1 {
    margin: 0;
    font-size: clamp(1.95rem, 2.5vw, 3rem);
}

.service-detail-page .about-hero-content p {
    margin: 2px 0 0 64px;
    max-width: 740px;
}

.service-detail-main {
    background: #f4f8fd;
}

.service-detail-main .row {
    align-items: flex-start;
}

.service-detail-main h2 {
    margin-bottom: 12px;
}

.service-detail-main p {
    color: #5e738d;
    font-size: clamp(0.94rem, 0.8vw, 1.02rem);
    line-height: 1.65;
    margin-bottom: 10px;
}

.service-list-title {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.22rem;
    color: #122a49;
}

.service-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #1e385b;
    font-size: clamp(0.9rem, 0.76vw, 0.98rem);
}

.service-list li::before {
    content: "\F633";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.86rem;
    color: #13b3d4;
}

.service-detail-main .service-detail-media img {
    min-height: 360px;
    max-height: 680px;
}

.service-pricing {
    padding-top: 18px;
}

.service-pricing h2 {
    text-align: center;
    margin-bottom: 18px;
}

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

.service-price-card {
    border: 1px solid #d4ddea;
    border-radius: 14px;
    padding: 14px 14px 12px;
    background: #f8fbff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.service-price-value {
    color: #0fb4d5;
    font-weight: 800;
    font-size: clamp(1.45rem, 1.3vw, 2rem);
    margin-bottom: 8px;
    line-height: 1.1;
}

.service-price-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 10px;
}

.service-price-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: clamp(0.86rem, 0.72vw, 0.92rem);
    color: #1f3a5e;
}

.service-price-list li::before {
    content: "\F633";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.78rem;
    color: #13b3d4;
}

.service-price-btn {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    background: #14bddf;
    border: 1px solid #14bddf;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 7px 10px;
    text-decoration: none;
}

.service-price-btn:hover {
    background: #0ea6c6;
    border-color: #0ea6c6;
    color: #fff;
}

.service-detail-page.is-visible .service-price-card {
    opacity: 1;
    transform: none;
    transition-delay: var(--price-delay, 0ms);
}

.about-value-card {
    text-align: center;
    height: 100%;
    padding: 8px 14px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    margin: 0 auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dff1f8;
    color: #03a9cb;
    font-size: 1.3rem;
}

.about-value-card h3 {
    margin-bottom: 6px;
    font-size: clamp(1.06rem, 0.95vw, 1.3rem);
}

.about-value-card p {
    color: #62758d;
    font-size: clamp(0.9rem, 0.78vw, 0.98rem);
    margin: 0;
}

.about-stats-row {
    padding-top: 10px;
}

.about-stat-box {
    text-align: center;
    padding: 10px 8px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-stat-box strong {
    display: block;
    font-size: clamp(2rem, 2vw, 2.65rem);
    color: #11afcf;
    line-height: 1.1;
    margin-bottom: 2px;
    font-weight: 800;
}

.about-stat-box span {
    color: #5a6f88;
    font-size: clamp(0.9rem, 0.78vw, 0.98rem);
}

.about-page.is-visible .about-value-card,
.about-page.is-visible .about-stat-box {
    opacity: 1;
    transform: none;
}

.services-showcase {
    background: #eff2f6;
}

.services-showcase .container {
    max-width: none;
    width: min(var(--container-max), calc(100% - 40px));
}

.section-muted > .container,
.section-process > .container,
.audience-showcase > .container,
.packages-showcase > .container,
.testimonials-showcase > .container,
.faq-showcase > .container,
.final-cta > .container,
.footer > .container {
    max-width: none;
    width: min(var(--container-max), calc(100% - 40px));
}

.services-showcase .section-head h2 {
    font-size: clamp(2rem, 2.1vw, 2.65rem);
    margin-bottom: 10px;
}

.services-showcase .section-head p {
    font-size: clamp(0.98rem, 0.95vw, 1.2rem);
    max-width: 760px;
}

.section-muted {
    background: #f5f9ff;
    position: relative;
    overflow: hidden;
}

#neden-biz.section-muted::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 320px;
    background: radial-gradient(circle at 30% 40%, rgba(20, 184, 219, 0.08), transparent 55%);
    pointer-events: none;
    animation: whyUsAura 7s ease-in-out infinite alternate;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-head p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

.service-card {
    border: 1px solid #d7dee8;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.06);
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(14, 165, 233, 0.14), transparent 36%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-card > div:last-child {
    padding: 1.15rem 1.25rem 1.2rem !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #bfe3f4;
}

.service-card.is-tilting:hover {
    transform: none;
}

.service-card:hover::after {
    opacity: 1;
}

.services-showcase.is-visible .service-card {
    opacity: 1;
    transform: none;
    transition-delay: var(--service-delay, 0ms);
}

.service-card .thumb {
    height: 168px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, transparent 22%, rgba(255, 255, 255, 0.32) 47%, transparent 66%);
    transform: translateX(-115%);
    transition: transform 0.65s ease;
}

.service-card:hover .thumb::after {
    transform: translateX(118%);
}

.service-card .thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 47, 0.08);
    transition: opacity 0.28s ease;
}

.service-card:hover .thumb::before {
    opacity: 0.1;
}

.service-card h3 {
    font-size: clamp(1.14rem, 1.02vw, 1.52rem);
    margin-bottom: 8px;
    color: #0f172a;
    line-height: 1.28;
}

.service-card p {
    color: #5d6b80;
    margin-bottom: 10px;
    font-size: clamp(0.93rem, 0.78vw, 1.03rem);
    line-height: 1.42;
}

.service-card a {
    text-decoration: none;
    font-weight: 500;
    color: #00a9e0;
    font-size: clamp(0.9rem, 0.72vw, 0.98rem);
}

.service-card a i {
    transition: 0.2s ease;
}

.service-card a:hover i {
    transform: translateX(3px);
}

.service-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.service-card:hover .service-badge {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
}

.badge-blue { background: #3b82f6; }
.badge-green { background: #22c55e; }
.badge-purple { background: #a855f7; }
.badge-orange { background: #f97316; }
.badge-red { background: #ef4444; }
.badge-pink { background: #ec4899; }
.badge-cyan { background: #06b6d4; }
.badge-indigo { background: #6366f1; }

.card-featured {
    border-color: #22b7e7;
    box-shadow: 0 8px 20px rgba(34, 183, 231, 0.18);
}

.benefit {
    background: #fff;
    border: 1px solid #dbe7f5;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    height: 100%;
}

.benefit i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0284c7;
    margin-bottom: 10px;
}

.benefit-inline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 146px;
    background: #f3f7fb;
    border-color: #edf2f7;
    box-shadow: none;
    padding: 22px 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-inline i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: #dff1f7;
    color: #00a5c8;
    margin-bottom: 0;
    font-size: 1.35rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: whyUsIconFloat 3s ease-in-out infinite;
    animation-delay: var(--icon-delay, 0s);
}

#neden-biz.is-visible .benefit-inline {
    opacity: 1;
    transform: translateY(0);
}

.benefit-inline:hover {
    border-color: #d9e7f6;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.benefit-inline:hover i {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.24);
}

.benefit.benefit-inline h3 {
    font-size: clamp(1.1rem, 1.02vw, 1.5rem);
    margin-bottom: 6px;
    color: #0f2748;
}

.benefit.benefit-inline p {
    font-size: clamp(0.93rem, 0.78vw, 1.08rem);
    color: #4d6482;
    margin: 0;
    line-height: 1.45;
}

.benefit h3 {
    font-size: 1.06rem;
    margin-bottom: 6px;
}

.benefit p {
    color: var(--muted);
    margin: 0;
    font-size: 0.92rem;
}

.metric-box {
    border: 1px solid #dbe7f5;
    border-radius: var(--radius-md);
    background: #fff;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.metric-soft {
    background: #dfeaf0;
    border-color: #dfeaf0;
    box-shadow: none;
    border-radius: 18px;
    min-height: 148px;
    display: grid;
    align-items: center;
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.metric-soft::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.36) 45%, transparent 70%);
    transform: translateX(-120%);
    pointer-events: none;
}

#neden-biz.is-visible .metric-soft {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#neden-biz.is-visible .metric-soft::after {
    animation: metricShine 1s ease 0.3s 1;
}

.metric-soft:hover {
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.metric-box.metric-soft strong {
    color: #0ea8c7;
    font-size: clamp(2rem, 2vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-box.metric-soft span {
    color: #455d7a;
    font-size: clamp(0.95rem, 0.9vw, 1.2rem);
}

.metric-box strong {
    display: block;
    color: #0284c7;
    font-size: 1.4rem;
    line-height: 1.2;
}

.metric-box span {
    color: var(--muted);
    font-size: 0.9rem;
}

@keyframes whyUsIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes metricShine {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}

@keyframes whyUsAura {
    from { transform: translateY(0) scale(1); opacity: 1; }
    to { transform: translateY(12px) scale(1.04); opacity: 0.75; }
}

.section-process {
    background: #06153a;
    color: #f8fbff;
    padding-top: 84px;
    padding-bottom: 90px;
}

.section-process .section-head {
    margin-bottom: 46px !important;
}

.section-process .section-head h2 {
    color: #ffffff;
    font-size: clamp(1.95rem, 2.2vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-process .section-head p {
    color: #dbe9ff;
    font-size: clamp(0.95rem, 0.95vw, 1.15rem);
    font-weight: 400;
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
    --track-top: 78px;
}

.process-line::before {
    display: none;
}

.process-track {
    position: absolute;
    top: var(--track-top);
    height: 2px;
    pointer-events: none;
    z-index: 1;
}

.process-track-solid {
    left: 12.5%;
    width: 25%;
    background: #14c9e8;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.85s ease-out;
}

.process-track-dashed {
    left: 37.5%;
    width: 50%;
    background: rgba(20, 201, 232, 0.7);
    opacity: 0;
}

.process-line.is-animated .process-track-solid {
    transform: scaleX(1);
}

.process-line.is-dashed-active .process-track-dashed {
    opacity: 1;
}

.process-track-flow {
    left: 12.5%;
    width: 75%;
    background: transparent;
    opacity: 0;
    overflow: visible;
}

.process-track-flow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle, #78f2ff 0%, #22d8f3 60%, rgba(34, 216, 243, 0) 78%);
    box-shadow: 0 0 14px rgba(42, 225, 255, 0.85);
}

.process-line.is-flow-active .process-track-flow {
    opacity: 1;
}

.process-line.is-flow-active .process-track-flow::after {
    animation: processFlowDot 2.6s linear infinite;
}

@keyframes processFlowDot {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 12px;
    z-index: 2;
}

.step-circle-wrap {
    position: relative;
    width: 108px;
    height: 126px;
    margin: 0 auto 12px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10bfe4;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    z-index: 2;
}

.step-circle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    border-radius: 999px;
    border: 4px solid #10bfe4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10bfe4;
    font-size: 2.35rem;
    background: #06153a;
}

.step-circle i {
    line-height: 1;
}

.process-step h3 {
    font-size: clamp(1.35rem, 1.2vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.process-step p {
    color: #e6f2ff;
    margin: 0;
    font-size: clamp(0.95rem, 0.85vw, 1.1rem);
    font-weight: 400;
    line-height: 1.4;
}

.audience-showcase {
    background: #f2f4f7;
}

.audience-showcase .section-head h2 {
    color: #132c4a;
    font-size: clamp(2rem, 3vw, 3.05rem);
    margin-bottom: 8px;
}

.audience-showcase .section-head p {
    color: #496486;
    font-size: clamp(0.95rem, 0.9vw, 1.15rem);
}

.audience-card {
    border: 1px solid #d3dce8;
    border-radius: 22px;
    background: #f8fafc;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
    padding: 28px 24px 24px;
    text-align: center;
    height: 100%;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-icon {
    display: inline-flex;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #dfeef5;
    color: #14aecf;
    margin-bottom: 18px;
    font-size: 2rem;
}

.audience-card h3 {
    font-size: clamp(1.2rem, 1.05vw, 1.6rem);
    font-weight: 700;
    color: #112a4a;
    margin-bottom: 8px;
}

.audience-card p {
    color: #4b6383;
    font-size: clamp(0.92rem, 0.8vw, 1.03rem);
    line-height: 1.5;
    margin-bottom: 16px;
}

.audience-card a {
    text-decoration: none;
    font-size: clamp(0.9rem, 0.75vw, 0.98rem);
    font-weight: 600;
    color: #00a9d6;
}

.audience-card a:hover {
    color: #0292b9;
}

.package-card {
    border: 1px solid #d4dce8;
    border-radius: 20px;
    background: #f9fbfd;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    padding: 26px 24px;
    height: 100%;
    position: relative;
}

.package-card h3 {
    font-size: clamp(1.22rem, 1.08vw, 1.55rem);
    font-weight: 700;
    color: #112b4a;
    margin-bottom: 8px;
}

.package-sub {
    color: #5a7390;
    font-size: clamp(0.92rem, 0.85vw, 1.04rem);
    margin-bottom: 10px;
}

.package-card .price {
    color: #13aecf;
    font-size: clamp(2.2rem, 2.1vw, 2.9rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
}

.package-card .price span {
    font-size: clamp(0.88rem, 0.72vw, 0.98rem);
    color: #4f6784;
    font-weight: 500;
}

.package-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 18px;
}

.package-list li {
    color: #1b3658;
    margin-bottom: 9px;
    font-size: clamp(0.9rem, 0.78vw, 1rem);
    display: flex;
    align-items: center;
    gap: 9px;
}

.package-list i {
    color: #15b3d3;
    font-size: 1rem;
}

.package-card.featured {
    border-color: #38bdf8;
    box-shadow: 0 18px 36px rgba(56, 189, 248, 0.22);
}

.package-card .tag {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
    background: #14b5d5;
    color: #fff;
    font-size: 0.88rem;
    border-radius: 999px;
    padding: 5px 14px;
    font-weight: 700;
}

.package-btn-dark {
    background: #091733;
    border-color: #091733;
    color: #fff;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 12px 10px;
}

.package-btn-dark:hover {
    background: #0d244c;
    border-color: #0d244c;
    color: #fff;
}

.package-btn-primary {
    background: #12b6d8;
    border-color: #12b6d8;
    color: #fff;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 12px 10px;
}

.package-btn-primary:hover {
    background: #0ea4c4;
    border-color: #0ea4c4;
    color: #fff;
}

.package-card-featured {
    background: #eaf4f8;
    border: 3px solid #13b6d7;
    box-shadow: 0 8px 24px rgba(19, 182, 215, 0.2);
    transform: translateY(-12px);
}

.packages-showcase {
    background: #f2f4f7;
}

.packages-showcase .section-head h2 {
    color: #122b4a;
    font-size: clamp(2.2rem, 3.1vw, 3.2rem);
}

.packages-showcase .section-head p {
    color: #4e6785;
    font-size: clamp(0.95rem, 0.92vw, 1.16rem);
}

.review-card {
    border: 1px solid #d4dce8;
    border-radius: 20px;
    background: #f8fafc;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    padding: 20px 22px;
    height: 100%;
}

.testimonials-showcase {
    background: #f2f4f7;
}

.testimonials-showcase .section-head h2 {
    color: #132c4a;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.testimonials-showcase .section-head p {
    color: #4c6686;
    font-size: clamp(0.95rem, 0.9vw, 1.15rem);
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #d6e2ee;
}

.review-user h3 {
    font-size: clamp(1.04rem, 0.95vw, 1.3rem);
    font-weight: 700;
    color: #112b4a;
    margin: 0 0 2px;
}

.review-user span {
    color: #4c6886;
    font-size: clamp(0.85rem, 0.74vw, 0.95rem);
}

.quote-mark {
    color: #bceef6;
    font-size: 2.4rem;
    line-height: 1;
}

.review-stars {
    color: #ffbf00;
    letter-spacing: 2px;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.review-card p {
    margin: 0;
    color: #4e6684;
    font-size: clamp(0.9rem, 0.79vw, 1rem);
    line-height: 1.6;
}

.testimonial-metric {
    border: 1px solid #d4dce8;
    border-radius: 16px;
    background: #f8fafc;
    min-height: 120px;
    text-align: center;
    display: grid;
    align-items: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.testimonial-metric strong {
    display: block;
    color: #12afce;
    font-size: clamp(1.9rem, 1.85vw, 2.5rem);
    line-height: 1.1;
}

.testimonial-metric span {
    color: #4f6784;
    font-size: clamp(0.9rem, 0.78vw, 1rem);
}

.faq-wrap {
    max-width: none;
    width: 100%;
}

.faq-showcase {
    background: #f2f4f7;
}

.faq-showcase .section-head h2 {
    color: #132c4a;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.faq-showcase .section-head p {
    color: #4d6786;
    font-size: clamp(0.95rem, 0.9vw, 1.15rem);
}

.faq-showcase .accordion-item {
    border: 1px solid #d3dce8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f8fafc;
    box-shadow: none;
}

.faq-showcase .accordion-button {
    font-weight: 600;
    color: #132c4a;
    background: #f8fafc;
    font-size: clamp(0.98rem, 0.85vw, 1.12rem);
    padding: 20px 24px;
    box-shadow: none;
}

.faq-showcase .accordion-button::after {
    transform: scale(0.85);
    opacity: 0.8;
}

.faq-showcase .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: #132c4a;
}

.faq-showcase .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-showcase .accordion-body {
    color: #4f6784;
    font-size: clamp(0.9rem, 0.78vw, 1rem);
    line-height: 1.55;
    padding: 0 24px 18px;
}

.section-form {
    background: #f7fbff;
}

.card-soft {
    border: 1px solid #dbe7f5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.quote-form .form-label {
    font-weight: 600;
}

.quote-form .form-control,
.quote-form .form-select {
    border-color: #cbd5e1;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
}

.final-cta {
    background:
        radial-gradient(circle at 18% 55%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(110deg, #071633 8%, #0b2451 48%, #19b8d8 100%);
    color: #fff;
    padding-top: 86px;
    padding-bottom: 94px;
}

.final-cta h2 {
    font-family: "Outfit", "Manrope", sans-serif;
    font-size: clamp(2.2rem, 2.8vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.final-cta p {
    color: #e7f5ff;
    max-width: 860px;
    margin: 0 auto 28px;
    font-size: clamp(1.03rem, 1.1vw, 1.48rem);
    line-height: 1.5;
    font-weight: 500;
}

.final-cta-actions .btn {
    border-radius: 12px;
    min-width: 184px;
    min-height: 52px;
    padding: 11px 18px;
    font-size: 1.04rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-main-btn {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #0f172a;
}

.cta-main-btn:hover {
    background: #f3f4f6;
    color: #0f172a;
}

.cta-light-btn {
    background: #f8fafc;
    border: 1px solid #f8fafc;
    color: #0f172a;
}

.cta-light-btn:hover {
    background: #eef2f7;
    color: #0f172a;
}

.cta-metrics-row {
    max-width: 910px;
    margin-inline: auto;
}

.cta-info {
    border: 1px solid rgba(191, 219, 254, 0.34);
    border-radius: 16px;
    background: rgba(55, 65, 81, 0.52);
    padding: 26px 18px;
    font-weight: 800;
    min-height: 164px;
    display: grid;
    align-items: center;
    font-size: clamp(2.1rem, 2vw, 2.8rem);
    line-height: 1.05;
}

.cta-info-accent {
    background: rgba(56, 189, 248, 0.28);
}

.cta-info span {
    display: block;
    font-size: clamp(0.98rem, 0.84vw, 1.1rem);
    font-weight: 600;
    color: #dbeafe;
    margin-top: 10px;
}

.footer {
    background: #06153a;
    color: #dbeafe;
    padding-top: 62px !important;
    padding-bottom: 52px !important;
}

.footer h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 700;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

.footer-brand-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-brand-subtitle {
    font-size: 0.9rem;
    color: #9db5d4;
    font-weight: 400;
}

.footer p,
.footer li,
.footer span {
    color: #bfd0e8;
    font-size: 0.98rem;
}

.footer a {
    color: #dbeafe;
    text-decoration: none;
}

.footer a:hover {
    color: #7dd3fc;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(186, 230, 253, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #cbd5e1;
    background: #fff;
    z-index: 1500;
}

.mobile-cta-bar a {
    text-align: center;
    padding: 12px 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
}

.mobile-cta-bar a:nth-child(2) {
    background: #22c55e;
    color: #fff;
}

@media (max-width: 1199px) {
    .brand-title {
        font-size: 1.85rem;
    }

    .brand-subtitle {
        font-size: 0.86rem;
    }

    .hero-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }

    .hero-section {
        min-height: 760px;
    }
}

@media (max-width: 991px) {
    .topbar {
        font-size: 0.82rem;
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        min-height: 700px;
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 84px;
    }

    .services-showcase .container {
        width: min(100%, calc(100% - 24px));
    }

    main > section > .container,
    .section-muted > .container,
    .section-process > .container,
    .audience-showcase > .container,
    .packages-showcase > .container,
    .testimonials-showcase > .container,
    .faq-showcase > .container,
    .final-cta > .container,
    .footer > .container {
        width: min(100%, calc(100% - 24px));
    }

    .service-card .thumb {
        height: 154px;
    }

    .service-card > div:last-child {
        padding: 1.05rem 1.05rem 1.1rem !important;
    }

    .process-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 36px;
    }

    .process-line::before {
        display: none;
    }

    .process-track {
        display: none;
    }

    #neden-biz.section-muted::before {
        display: none;
    }

    .process-step h3 {
        font-size: 1.35rem;
    }

    .process-step p {
        font-size: 0.98rem;
    }

    .about-hero {
        min-height: 240px;
    }

    .about-story-media img {
        max-height: 560px;
    }

    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-detail-row.reverse .service-detail-media,
    .service-detail-row.reverse .service-detail-content {
        order: initial;
    }

    .service-pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-page .about-hero-content {
        text-align: center;
    }

    .service-hero-head {
        justify-content: center;
    }

    .service-detail-page .about-hero-content p {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 0;
    }

    .brand-title {
        font-size: 1.5rem;
    }

    .brand-subtitle {
        font-size: 0.76rem;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.65rem;
    }

    .hero-sub {
        font-size: 1.12rem;
    }

    .hero-quick-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .quick-box {
        min-height: 76px;
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .about-hero {
        min-height: 210px;
    }

    .about-hero-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 0.94rem;
    }

    .about-story p {
        font-size: 0.95rem;
    }

    .about-story-media img {
        max-height: 440px;
    }

    .service-detail-media img {
        min-height: 200px;
        max-height: 260px;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .service-detail-main .service-detail-media img {
        min-height: 250px;
        max-height: 380px;
    }

    .service-price-card {
        padding: 12px;
    }

    .service-card .thumb {
        height: 142px;
    }

    .service-card h3 {
        font-size: 1.16rem;
    }

    .service-card p,
    .service-card a {
        font-size: 0.9rem;
    }

    .benefit-inline {
        min-height: 122px;
        padding: 18px;
    }

    .benefit.benefit-inline h3 {
        font-size: 1.45rem;
    }

    .benefit.benefit-inline p {
        font-size: 1.05rem;
    }

    .metric-soft {
        min-height: 118px;
    }

    .metric-box.metric-soft strong {
        font-size: 2.35rem;
    }

    .metric-box.metric-soft span {
        font-size: 1rem;
    }

    .audience-showcase .section-head p {
        font-size: 1.05rem;
    }

    .audience-card {
        min-height: 250px;
        border-radius: 16px;
        padding: 20px 16px 18px;
    }

    .audience-icon {
        width: 56px;
        height: 56px;
        font-size: 1.55rem;
        margin-bottom: 12px;
    }

    .audience-card h3 {
        font-size: 1.55rem;
    }

    .audience-card p {
        font-size: 1.02rem;
        margin-bottom: 10px;
    }

    .audience-card a {
        font-size: 1.02rem;
    }

    .package-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .package-card h3 {
        font-size: 1.56rem;
    }

    .package-sub {
        font-size: 1.05rem;
    }

    .package-card .price {
        font-size: 2.6rem;
    }

    .package-card .price span {
        font-size: 1rem;
    }

    .package-list li {
        font-size: 1rem;
        margin-bottom: 7px;
    }

    .package-btn-dark,
    .package-btn-primary {
        font-size: 1.05rem;
        padding: 10px 8px;
    }

    .package-card-featured {
        transform: none;
    }

    .testimonials-showcase .section-head p {
        font-size: 1.05rem;
    }

    .faq-showcase .section-head p {
        font-size: 1.05rem;
    }

    .faq-showcase .accordion-button {
        font-size: 1.08rem;
        padding: 14px 16px;
    }

    .faq-showcase .accordion-body {
        font-size: 1rem;
        padding: 0 16px 14px;
    }

    .final-cta {
        padding-top: 60px;
        padding-bottom: 62px;
    }

    .final-cta p {
        font-size: 1.04rem;
    }

    .final-cta-actions .btn {
        min-width: 160px;
        min-height: 48px;
        font-size: 0.98rem;
    }

    .cta-info {
        min-height: 124px;
        font-size: 2.05rem;
        padding: 18px 12px;
    }

    .cta-info span {
        font-size: 0.95rem;
    }

    .footer h3 {
        font-size: 1.38rem;
    }

    .footer-brand-title {
        font-size: 1.6rem;
    }

    .footer-brand-subtitle {
        font-size: 0.95rem;
    }

    .footer p,
    .footer li,
    .footer span {
        font-size: 1rem;
    }

    .review-user h3 {
        font-size: 1.4rem;
    }

    .review-user span {
        font-size: 1rem;
    }

    .review-stars {
        font-size: 1.15rem;
    }

    .review-card p {
        font-size: 1.02rem;
    }

    .testimonial-metric {
        min-height: 100px;
    }

    .testimonial-metric strong {
        font-size: 2.1rem;
    }

    .testimonial-metric span {
        font-size: 1rem;
    }

    .section-space {
        padding: 46px 0;
    }

    .section-process {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-process .section-head p {
        font-size: 1.15rem;
    }

    .process-line {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .step-circle-wrap {
        width: 96px;
        height: 112px;
    }

    .step-circle {
        width: 84px;
        height: 84px;
        font-size: 2rem;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .process-step h3 {
        font-size: 1.55rem;
    }

    .process-step p {
        font-size: 1.05rem;
    }

    .footer {
        padding-bottom: 76px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section,
    .hero-overlay::after,
    #neden-biz.section-muted::before,
    .about-hero-overlay::after,
    .benefit-inline i,
    #neden-biz.is-visible .metric-soft::after,
    .process-line.is-flow-active .process-track-flow::after {
        animation: none !important;
    }

    .hero-kicker,
    .hero-title,
    .hero-sub,
    .hero-actions,
    .quick-box,
    .service-card,
    .benefit-inline,
    .about-value-card,
    .about-stat-box,
    .service-detail-row,
    .service-price-card,
    .metric-soft {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .service-card .thumb::after,
    .service-card::after {
        display: none !important;
    }
}

