:root {
    --navy-950: #030a17;
    --navy-900: #07152d;
    --navy-850: #0a1c3a;
    --navy-800: #0d2448;
    --blue-600: #1257d6;
    --blue-500: #2273f2;
    --cyan-400: #30d5f4;
    --gold-600: #bd8422;
    --gold-500: #dda83d;
    --gold-400: #f0c766;
    --gold-300: #ffe5a3;
    --green-500: #20b86b;
    --ink: #101828;
    --muted: #5f6b7d;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --line: #e5eaf2;
    --shadow-sm: 0 12px 35px rgba(7, 21, 45, .08);
    --shadow-md: 0 22px 65px rgba(7, 21, 45, .14);
    --shadow-lg: 0 38px 100px rgba(1, 9, 25, .28);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { color: #07152d; background: var(--gold-300); }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100000;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy-900);
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
    position: relative;
    z-index: 1040;
    color: rgba(255,255,255,.82);
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .78rem;
}
.topbar .container { min-height: 38px; }
.topbar-note, .topbar-links, .topbar-links a { display: flex; align-items: center; gap: 8px; }
.topbar-links { gap: 22px; }
.topbar-links a { color: rgba(255,255,255,.82); text-decoration: none; transition: color .2s ease; }
.topbar-links a:hover { color: var(--gold-400); }
.topbar i { color: var(--gold-400); }

.premium-navbar {
    --bs-navbar-padding-y: .7rem;
    z-index: 1030;
    background: rgba(7, 21, 45, .94);
    border-bottom: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    backdrop-filter: blur(20px) saturate(140%);
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.premium-navbar.is-scrolled {
    --bs-navbar-padding-y: .45rem;
    background: rgba(3, 10, 23, .98);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.navbar-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.navbar-brand:hover { color: #fff; }
.navbar-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.28));
    transition: width .25s ease, height .25s ease;
}
.is-scrolled .navbar-brand img { width: 49px; height: 49px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1.1rem; letter-spacing: .14em; }
.brand-copy small { margin-top: 5px; color: var(--gold-400); font-size: .64rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.premium-navbar .navbar-nav { gap: 3px; }
.premium-navbar .nav-link {
    position: relative;
    padding: .75rem .76rem !important;
    color: rgba(255,255,255,.82) !important;
    font-size: .9rem;
    font-weight: 700;
    transition: color .2s ease;
}
.premium-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .76rem;
    right: .76rem;
    bottom: .4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.premium-navbar .nav-link:hover, .premium-navbar .nav-link.active { color: #fff !important; }
.premium-navbar .nav-link:hover::after, .premium-navbar .nav-link.active::after { transform: scaleX(1); }
.premium-navbar .dropdown-toggle::after { display: none; }
.premium-navbar .dropdown-toggle::before {
    content: "\F282";
    margin-left: 7px;
    font-family: "bootstrap-icons";
    font-size: .68rem;
    vertical-align: 1px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}
.nav-login i { color: var(--gold-400); font-size: 1.15rem; }
.nav-login:hover { color: var(--gold-300); }
.navbar-toggler {
    width: 46px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    box-shadow: none !important;
}
.navbar-toggler span { width: 23px; height: 2px; margin-inline: auto; background: #fff; border-radius: 2px; }
.premium-mega-menu {
    width: min(620px, 92vw);
    margin-top: 14px !important;
    padding: 14px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(13,36,72,.08);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.mega-grid > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    color: var(--ink);
    border-radius: 15px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}
.mega-grid > a:hover { background: #f2f6fc; transform: translateY(-2px); }
.mega-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: linear-gradient(135deg, #fff3c8, #f0c766);
    border-radius: 13px;
    box-shadow: inset 0 0 0 1px rgba(189,132,34,.2);
}
.mega-grid strong, .mega-grid small { display: block; }
.mega-grid strong { font-size: .88rem; }
.mega-grid small { margin-top: 2px; color: var(--muted); font-size: .7rem; }
.mega-all { background: var(--navy-900) !important; color: #fff !important; }
.mega-all small { color: rgba(255,255,255,.65) !important; }

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: .78rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 41px; padding: .6rem 1rem; font-size: .82rem; }
.btn-luxury {
    color: #08152a;
    border: 1px solid rgba(255,255,255,.22);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 12px 26px rgba(221,168,61,.22);
}
.btn-luxury:hover { color: #08152a; box-shadow: 0 16px 36px rgba(221,168,61,.36); }
.btn-navy { color: #fff; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); border-color: var(--navy-900); box-shadow: 0 14px 30px rgba(7,21,45,.2); }
.btn-navy:hover { color: #fff; box-shadow: 0 18px 42px rgba(7,21,45,.3); }
.btn-outline-premium { color: var(--navy-900); background: #fff; border: 1px solid #cbd5e1; }
.btn-outline-premium:hover { color: var(--navy-900); border-color: var(--gold-500); background: #fffaf0; }
.btn-light-premium { color: var(--navy-900); background: #fff; border: 1px solid rgba(255,255,255,.5); box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.btn-light-premium:hover { color: var(--navy-900); }
.btn-whatsapp { color: #fff; background: #1fae5d; border-color: #1fae5d; box-shadow: 0 12px 28px rgba(31,174,93,.24); }
.btn-whatsapp:hover { color: #fff; background: #19964f; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--blue-600);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow i { color: var(--gold-600); }
.eyebrow.light { color: var(--gold-300); }
.eyebrow.light i { color: var(--gold-400); }
.display-title {
    margin: 0;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5vw, 5rem);
    font-weight: 800;
    line-height: .99;
    letter-spacing: -.045em;
}
.section-title {
    margin: 0;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.section-lead { max-width: 680px; margin-top: 16px; color: var(--muted); font-size: 1.03rem; }
.section-heading.center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading.center .section-lead { margin-inline: auto; }
.text-gradient {
    color: transparent;
    background: linear-gradient(115deg, var(--gold-300), var(--gold-500) 45%, #fff0bd);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-pad { padding: 100px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #fff; background: var(--navy-950); }
.section-dark .section-title { color: #fff; }
.section-dark .section-lead { color: rgba(255,255,255,.66); }

.hero-premium {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    contain: paint;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(3,10,23,.97) 0%, rgba(7,21,45,.94) 48%, rgba(7,21,45,.74) 100%),
        url('../images/consultancy-bg3.jpg') center/cover no-repeat;
}
.hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-premium::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -220px;
    top: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,115,242,.35), rgba(34,115,242,0) 68%);
    filter: blur(10px);
}
.hero-orbit, .hero-orbit::before, .hero-orbit::after { position: absolute; border: 1px solid rgba(240,199,102,.18); border-radius: 50%; }
.hero-orbit { width: 460px; height: 460px; right: 6%; top: 15%; animation: rotate 22s linear infinite; }
.hero-orbit::before { content:""; width: 320px; height: 320px; inset: 69px; }
.hero-orbit::after { content:""; width: 12px; height: 12px; top: 28px; left: 94px; border: 0; background: var(--gold-400); box-shadow: 0 0 24px var(--gold-400); }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-content { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 120px; }
.hero-premium .display-title { max-width: 800px; color: #fff; }
.hero-copy { max-width: 660px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; }
.hero-trust-row span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: .86rem; font-weight: 700; }
.hero-trust-row i { color: var(--gold-400); }
.hero-form-shell {
    position: relative;
    z-index: 3;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(240,199,102,.85), rgba(255,255,255,.18), rgba(48,213,244,.35));
    box-shadow: 0 35px 90px rgba(0,0,0,.38);
}
.hero-form {
    padding: 30px;
    color: var(--ink);
    background: rgba(255,255,255,.96);
    border-radius: 27px;
    backdrop-filter: blur(18px);
}
.form-kicker { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.form-kicker span { color: var(--blue-600); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-kicker i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-900); background: #fff3c8; border-radius: 50%; }
.hero-form h2 { margin: 0 0 8px; color: var(--navy-900); font-size: 1.55rem; font-weight: 800; }
.hero-form > p { margin-bottom: 22px; color: var(--muted); font-size: .9rem; }
.form-label { margin-bottom: 7px; color: var(--navy-900); font-size: .78rem; font-weight: 800; }
.form-control, .form-select {
    min-height: 52px;
    color: var(--ink);
    background-color: #f8fafc;
    border: 1px solid #dce3ed;
    border-radius: 14px;
    box-shadow: none !important;
}
textarea.form-control { min-height: 135px; resize: vertical; }
.form-control:focus, .form-select:focus { background: #fff; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(221,168,61,.13) !important; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; color: #728096; font-size: .72rem; }
.form-note i { color: var(--green-500); }

.trust-strip { position: relative; z-index: 5; margin-top: -54px; }
.trust-panel {
    display: grid;
    grid-template-columns: 1.1fr repeat(4, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13,36,72,.08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}
.trust-panel > div { min-height: 108px; display: flex; flex-direction: column; justify-content: center; padding: 22px; border-right: 1px solid var(--line); }
.trust-panel > div:last-child { border-right: 0; }
.trust-panel .trust-intro { color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }
.trust-intro small { color: var(--gold-400); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-intro strong { margin-top: 6px; font-size: 1.05rem; }
.trust-stat strong { color: var(--navy-900); font-size: 1.65rem; line-height: 1; }
.trust-stat span { margin-top: 8px; color: var(--muted); font-size: .75rem; font-weight: 700; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 48px; }
.service-card-premium {
    position: relative;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card-premium::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,115,242,.16), transparent 68%);
    transition: transform .35s ease;
}
.service-card-premium:hover { color: var(--ink); transform: translateY(-9px); border-color: rgba(221,168,61,.5); box-shadow: var(--shadow-md); }
.service-card-premium:hover::after { transform: scale(1.4); }
.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: linear-gradient(135deg, #fff7dd, var(--gold-400));
    border-radius: 17px;
    box-shadow: 0 10px 24px rgba(189,132,34,.16);
    font-size: 1.35rem;
}
.service-card-premium h3 { margin: 24px 0 10px; color: var(--navy-900); font-size: 1.25rem; font-weight: 800; }
.service-card-premium p { margin-bottom: 18px; color: var(--muted); font-size: .89rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.service-tags span { padding: 5px 9px; color: #42516a; background: #f2f5f9; border-radius: 999px; font-size: .68rem; font-weight: 700; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--blue-600); font-size: .8rem; font-weight: 800; }

.image-feature { position: relative; }
.image-frame {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.image-frame img { width: 100%; height: 100%; min-height: 550px; object-fit: cover; }
.image-frame::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(3,10,23,.65), transparent 48%); }
.image-badge {
    position: absolute;
    right: -26px;
    bottom: 36px;
    z-index: 2;
    max-width: 250px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}
.image-badge strong { display: block; color: var(--gold-400); font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.image-badge span { display: block; margin-top: 7px; color: rgba(255,255,255,.72); font-size: .78rem; }
.check-list { display: grid; gap: 15px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #334155; }
.check-list i { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; color: var(--navy-900); background: #fff2c9; border-radius: 50%; margin-top: 1px; }
.check-list strong { color: var(--navy-900); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.process-card { position: relative; padding: 28px 24px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; }
.process-number { color: var(--gold-400); font-family: var(--font-display); font-size: 2.7rem; font-weight: 800; line-height: 1; opacity: .9; }
.process-card h3 { margin: 22px 0 8px; color: #fff; font-size: 1.05rem; font-weight: 800; }
.process-card p { margin: 0; color: rgba(255,255,255,.6); font-size: .84rem; }
.process-card:not(:last-child)::after { content:"\F285"; position:absolute; right:-16px; top:50%; z-index:2; width:32px; height:32px; display:grid; place-items:center; transform:translateY(-50%); color:var(--gold-400); background:var(--navy-950); border:1px solid rgba(255,255,255,.12); border-radius:50%; font-family:"bootstrap-icons"; font-size:.8rem; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.metric-card { padding: 30px 22px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.metric-card strong { display: block; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.metric-card span { display: block; margin-top: 10px; color: var(--muted); font-size: .8rem; font-weight: 700; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 48px; }
.testimonial-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold-500); letter-spacing: 3px; font-size: .82rem; }
.testimonial-card blockquote { margin: 18px 0 24px; color: #344054; font-size: .94rem; }
.client-row { display: flex; align-items: center; gap: 12px; }
.client-avatar { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--navy-900)); border-radius: 50%; font-weight: 800; }
.client-row strong, .client-row span { display: block; }
.client-row strong { color: var(--navy-900); font-size: .85rem; }
.client-row span { color: var(--muted); font-size: .72rem; }

.faq-wrap { max-width: 900px; margin: 46px auto 0; }
.accordion-item { margin-bottom: 12px; overflow: hidden; background: #fff; border: 1px solid var(--line) !important; border-radius: 17px !important; }
.accordion-button { padding: 19px 22px; color: var(--navy-900); background: #fff; font-weight: 800; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--navy-900); background: #fffaf0; }
.accordion-button::after { width: 30px; height: 30px; display: grid; place-items: center; background-image: none; content:"+"; color: var(--navy-900); background-color: #f1f4f8; border-radius: 50%; font-size: 1.2rem; line-height: 30px; text-align: center; }
.accordion-button:not(.collapsed)::after { content:"−"; transform: none; background-image: none; }
.accordion-body { padding: 0 22px 22px; color: var(--muted); font-size: .9rem; }

.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(105deg, rgba(3,10,23,.98), rgba(7,21,45,.88)), url('../images/hero-bg1.jpg') center/cover;
}
.inner-hero::before { content:""; position:absolute; width:520px; height:520px; right:-160px; top:-230px; background:radial-gradient(circle, rgba(34,115,242,.38), transparent 68%); border-radius:50%; }
.inner-hero::after { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:44px 44px; mask-image:linear-gradient(to bottom,black,transparent); }
.inner-hero .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.inner-hero h1 { max-width: 850px; margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.8rem); font-weight: 800; line-height: 1; letter-spacing: -.045em; }
.inner-hero p { max-width: 720px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.breadcrumb-premium { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; color:rgba(255,255,255,.56); font-size:.78rem; font-weight:700; }
.breadcrumb-premium a { color: var(--gold-400); text-decoration:none; }

.value-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; margin-top:42px; }
.service-doc-grid, .service-process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.service-process-grid { margin-top:32px; }
.value-card { padding:26px; background:#fff; border:1px solid var(--line); border-radius:22px; box-shadow:var(--shadow-sm); }
.value-card i { width:48px; height:48px; display:grid; place-items:center; color:var(--navy-900); background:#fff1c4; border-radius:15px; font-size:1.2rem; }
.value-card h3 { margin:18px 0 8px; color:var(--navy-900); font-size:1.05rem; font-weight:800; }
.value-card p { margin:0; color:var(--muted); font-size:.84rem; }

.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:30px; margin-top:44px; }
.contact-panel, .contact-form-card { padding:32px; background:#fff; border:1px solid var(--line); border-radius:26px; box-shadow:var(--shadow-sm); }
.contact-panel { color:#fff; background:linear-gradient(145deg,var(--navy-900),var(--navy-950)); border-color:rgba(255,255,255,.08); }
.contact-panel h2 { color:#fff; font-family:var(--font-display); font-size:2rem; }
.contact-panel > p { color:rgba(255,255,255,.63); }
.contact-list { display:grid; gap:14px; margin:28px 0 0; padding:0; list-style:none; }
.contact-list li { display:flex; gap:13px; padding:15px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:15px; }
.contact-list i { color:var(--gold-400); }
.contact-list strong, .contact-list span, .contact-list a { display:block; }
.contact-list strong { color:#fff; font-size:.76rem; }
.contact-list span, .contact-list a { color:rgba(255,255,255,.65); font-size:.78rem; text-decoration:none; }

.catalog-layout { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:28px; align-items:start; }
.catalog-toolbar { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-bottom:26px; }
.catalog-search { position:relative; flex:1 1 300px; }
.catalog-search i { position:absolute; left:17px; top:50%; transform:translateY(-50%); color:#718096; }
.catalog-search input { width:100%; min-height:52px; padding:0 18px 0 46px; background:#fff; border:1px solid var(--line); border-radius:999px; outline:none; }
.catalog-search input:focus { border-color:var(--gold-500); box-shadow:0 0 0 4px rgba(221,168,61,.12); }
.catalog-tabs { display:flex; flex-wrap:wrap; gap:8px; }
.catalog-tabs button { padding:9px 14px; color:#445069; background:#fff; border:1px solid var(--line); border-radius:999px; font-size:.75rem; font-weight:800; }
.catalog-tabs button.active { color:var(--navy-900); background:#fff0bd; border-color:var(--gold-400); }
.catalog-services { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.catalog-card { display:flex; flex-direction:column; padding:22px; background:#fff; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow-sm); transition:transform .2s ease,border-color .2s ease; }
.catalog-card:hover { transform:translateY(-4px); border-color:rgba(221,168,61,.55); }
.catalog-card-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.catalog-card i { width:44px; height:44px; display:grid; place-items:center; color:var(--navy-900); background:#fff2c9; border-radius:13px; }
.catalog-card .category { color:var(--blue-600); font-size:.68rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.catalog-card h3 { margin:17px 0 8px; color:var(--navy-900); font-size:1rem; font-weight:800; }
.catalog-card p { color:var(--muted); font-size:.78rem; }
.catalog-card-footer { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; padding-top:14px; }
.catalog-price { color:var(--navy-900); font-size:1.1rem; font-weight:800; }
.cart-panel { position:sticky; top:100px; padding:24px; background:#fff; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow-md); }
.cart-panel h2 { color:var(--navy-900); font-size:1.25rem; font-weight:800; }
.cart-empty { padding:24px 12px; color:var(--muted); text-align:center; font-size:.82rem; }
.cart-list { display:grid; gap:9px; margin:18px 0; padding:0; list-style:none; }
.cart-list li { display:flex; justify-content:space-between; gap:10px; padding:11px; background:#f6f8fb; border-radius:12px; font-size:.75rem; }
.cart-remove { color:#d92d20; cursor:pointer; border:0; background:transparent; }
.cart-total { display:flex; justify-content:space-between; padding:15px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); font-weight:800; }

.partner-benefits { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-top:42px; }
.partner-card { padding:24px; text-align:center; background:#fff; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow-sm); }
.partner-card i { color:var(--gold-600); font-size:1.8rem; }
.partner-card h3 { margin:15px 0 7px; color:var(--navy-900); font-size:.96rem; font-weight:800; }
.partner-card p { margin:0; color:var(--muted); font-size:.78rem; }

.footer-cta { position: relative; z-index: 2; margin-bottom: -90px; }
.footer-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 44px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #0a2147, #07152d 62%, #153b73);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}
.footer-cta-card::before { content:""; position:absolute; width:350px; height:350px; right:-110px; top:-180px; background:radial-gradient(circle,rgba(48,213,244,.24),transparent 66%); border-radius:50%; }
.footer-cta-card > * { position: relative; z-index: 1; }
.footer-cta-card h2 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.9rem); font-weight: 800; line-height: 1.08; }
.footer-cta-card p { max-width: 700px; margin: 13px 0 0; color: rgba(255,255,255,.64); font-size: .9rem; }
.footer-cta-actions { flex: 0 0 auto; display:flex; flex-direction:column; gap:10px; }
.site-footer { position: relative; overflow: hidden; padding-top: 125px; color: rgba(255,255,255,.7); background: var(--navy-950); }
.footer-glow { position:absolute; border-radius:50%; filter:blur(10px); }
.footer-glow-one { width:420px; height:420px; left:-260px; bottom:-200px; background:radial-gradient(circle,rgba(34,115,242,.2),transparent 70%); }
.footer-glow-two { width:360px; height:360px; right:-220px; top:80px; background:radial-gradient(circle,rgba(221,168,61,.12),transparent 70%); }
.footer-brand { display:inline-flex; align-items:center; gap:14px; color:#fff; text-decoration:none; }
.footer-brand img { width:68px; height:68px; object-fit:contain; }
.footer-brand strong, .footer-brand small { display:block; }
.footer-brand strong { font-size:1.08rem; }
.footer-brand small { margin-top:5px; color:var(--gold-400); font-size:.66rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.footer-about { max-width:420px; margin:20px 0 0; font-size:.82rem; }
.footer-badges { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.footer-badges span { padding:6px 9px; color:rgba(255,255,255,.72); background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.08); border-radius:999px; font-size:.65rem; font-weight:700; }
.footer-badges i { color:var(--gold-400); }
.social-row { display:flex; gap:9px; margin-top:20px; }
.social-row a { width:39px; height:39px; display:grid; place-items:center; color:#fff; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:12px; text-decoration:none; transition:transform .2s ease,background .2s ease; }
.social-row a:hover { transform:translateY(-3px); background:var(--blue-600); }
.footer-title { margin:0 0 20px; color:#fff; font-size:.84rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.footer-nav, .footer-contact { display:grid; gap:11px; margin:0; padding:0; list-style:none; }
.footer-nav a, .footer-contact a { color:rgba(255,255,255,.65); font-size:.8rem; text-decoration:none; transition:color .2s ease,transform .2s ease; }
.footer-nav a:hover, .footer-contact a:hover { color:var(--gold-400); }
.footer-contact li { display:flex; gap:10px; font-size:.78rem; }
.footer-contact i { margin-top:3px; color:var(--gold-400); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 0; border-top:1px solid rgba(255,255,255,.08); font-size:.72rem; }
.footer-bottom p { margin:0; }
.footer-bottom div { display:flex; gap:10px; }
.footer-bottom a { color:rgba(255,255,255,.62); text-decoration:none; }

.floating-actions { position:fixed; right:20px; bottom:20px; z-index:1040; display:flex; flex-direction:column; gap:10px; }
.floating-actions a { width:54px; height:54px; display:flex; align-items:center; justify-content:center; color:#fff; border-radius:17px; box-shadow:0 14px 34px rgba(0,0,0,.25); text-decoration:none; transition:width .25s ease,transform .2s ease; overflow:hidden; }
.floating-actions a span { max-width:0; margin-left:0; overflow:hidden; font-size:.72rem; font-weight:800; white-space:nowrap; transition:max-width .25s ease,margin-left .25s ease; }
.floating-actions a:hover { width:115px; transform:translateY(-2px); }
.floating-actions a:hover span { max-width:70px; margin-left:8px; }
.floating-call { background:var(--blue-600); }
.floating-whatsapp { background:#20b86b; }
.scroll-top { position:fixed; left:20px; bottom:20px; z-index:1039; width:44px; height:44px; display:grid; place-items:center; color:#fff; background:var(--navy-900); border:1px solid rgba(255,255,255,.18); border-radius:14px; box-shadow:var(--shadow-sm); opacity:0; visibility:hidden; transform:translateY(14px); transition:.25s ease; }
.scroll-top.show { opacity:1; visibility:visible; transform:none; }

.reveal { opacity:1; transform:none; }
.reveal.reveal-ready { opacity:0; transform:translateY(26px); transition:opacity .75s ease,transform .75s ease; }
.reveal.reveal-ready.revealed { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.08s; }
.reveal-delay-2 { transition-delay:.16s; }
.reveal-delay-3 { transition-delay:.24s; }

@media (min-width: 1200px) {
    .premium-navbar .dropdown:hover > .dropdown-menu { display:block; animation:dropdownIn .2s ease both; }
    @keyframes dropdownIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
}

@media (max-width: 1199.98px) {
    .premium-navbar .navbar-collapse { margin-top:12px; padding:16px; background:rgba(3,10,23,.98); border:1px solid rgba(255,255,255,.08); border-radius:20px; box-shadow:var(--shadow-lg); }
    .premium-navbar .navbar-nav { align-items:stretch !important; }
    .premium-navbar .nav-link { padding:.72rem .5rem !important; }
    .premium-navbar .nav-link::after { left:.5rem; right:auto; width:42px; bottom:.3rem; }
    .nav-actions { margin-top:12px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
    .premium-mega-menu { width:100%; box-shadow:none; }
    .hero-premium { min-height:auto; }
    .hero-content { padding-top:90px; padding-bottom:110px; }
    .trust-panel { grid-template-columns:repeat(2,1fr); }
    .trust-panel .trust-intro { grid-column:1/-1; }
    .trust-panel > div { border-bottom:1px solid var(--line); }
    .service-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .process-card::after { display:none !important; }
    .catalog-layout { grid-template-columns:1fr; }
    .cart-panel { position:relative; top:auto; }
    .partner-benefits { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 991.98px) {
    .section-pad { padding:78px 0; }
    .hero-form-shell { margin-top:40px; }
    .hero-orbit { opacity:.45; right:-160px; }
    .image-frame, .image-frame img { min-height:430px; }
    .image-badge { right:20px; }
    .metric-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .testimonial-grid { grid-template-columns:1fr; }
    .contact-grid { grid-template-columns:1fr; }
    .footer-cta-card { align-items:flex-start; flex-direction:column; }
    .footer-cta-actions { flex-direction:row; flex-wrap:wrap; }
}

@media (max-width: 767.98px) {
    body { font-size:15px; }
    .row.g-5 { --bs-gutter-x: 1.5rem; }
    .navbar-brand img { width:50px; height:50px; }
    .brand-copy strong { font-size:1rem; }
    .nav-actions { align-items:stretch; flex-direction:column; }
    .nav-login { justify-content:center; min-height:42px; border:1px solid rgba(255,255,255,.12); border-radius:999px; }
    .mega-grid { grid-template-columns:1fr; }
    .hero-content { padding-top:76px; padding-bottom:100px; }
    .hero-orbit { display:none; }
    .hero-premium .display-title { font-size:clamp(2.7rem,13vw,4.2rem); }
    .hero-actions .btn { width:100%; }
    .hero-trust-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
    .hero-form { padding:24px; }
    .trust-strip { margin-top:-36px; }
    .trust-panel { grid-template-columns:1fr 1fr; border-radius:20px; }
    .trust-panel > div { min-height:95px; padding:17px; }
    .trust-panel .trust-intro { min-height:auto; }
    .trust-stat strong { font-size:1.4rem; }
    .service-grid { grid-template-columns:1fr; }
    .service-card-premium { min-height:auto; }
    .process-grid { grid-template-columns:1fr; }
    .metric-grid { grid-template-columns:1fr 1fr; }
    .value-grid, .service-doc-grid, .service-process-grid { grid-template-columns:1fr; }
    .catalog-services { grid-template-columns:1fr; }
    .partner-benefits { grid-template-columns:1fr 1fr; }
    .footer-cta { margin-bottom:-70px; }
    .footer-cta-card { padding:30px 24px; border-radius:22px; }
    .footer-cta-actions { width:100%; }
    .footer-cta-actions .btn { width:100%; }
    .site-footer { padding-top:100px; }
    .footer-bottom { align-items:flex-start; flex-direction:column; }
    .floating-actions { right:12px; bottom:12px; }
    .floating-actions a { width:50px; height:50px; border-radius:15px; }
    .floating-actions a:hover { width:50px; }
    .floating-actions a:hover span { max-width:0; margin-left:0; }
    .scroll-top { left:12px; bottom:12px; }
}

@media (max-width: 479.98px) {
    .section-pad { padding:65px 0; }
    .brand-copy { display:none; }
    .trust-panel { grid-template-columns:1fr; }
    .trust-panel .trust-intro { grid-column:auto; }
    .hero-trust-row { grid-template-columns:1fr; }
    .metric-grid { grid-template-columns:1fr; }
    .partner-benefits { grid-template-columns:1fr; }
    .contact-panel, .contact-form-card { padding:24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    .reveal { opacity:1; transform:none; }
}
