:root {
    --bg: #061824;
    --bg-soft: #0e2a3d;
    --surface: #f4f8fb;
    --deep: #04101b;
    --accent: #ff7a3c;
    --accent-2: #ffd56a;
    --text: #0f2230;
    --text-light: #deebf4;
    --line: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --anchor-offset: 106px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #eaf4fb 0%, #f8fcff 42%, #f2f8fc 100%);
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: var(--anchor-offset);
}

.top-strip {
    background: #04243a;
    color: #b7d4e7;
    font-size: 0.82rem;
}

.top-strip-wrap {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.top-right-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #92acc0;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-flag {
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
}

.lang-btn:hover,
.lang-btn.active {
    color: #ffffff;
}

.lang-btn.active {
    color: var(--accent-2);
}







.top-strip p {
    margin: 0;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgba(3, 18, 31, 0.88);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand img {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.logo-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: conic-gradient(from 40deg, #1fd0ea, #42e18e, #197ca8, #1fd0ea);
    color: #022134;
}

.brand-copy strong {
    display: block;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.03em;
    font-size: 0.95rem;
}

.brand-copy small {
    display: block;
    color: #92acc0;
    font-size: 0.82rem;
}

.admin-link {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d6e7f4;
    text-decoration: none;
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 18px;
}

.main-nav a {
    color: #d7e7f3;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(115deg, #03111d 0%, #0c3047 60%, #092135 100%);
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg.current {
    z-index: 0;
}

.hero-bg.next {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero.is-transitioning .hero-bg.next {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.42;
    background-image:
        linear-gradient(transparent 92%, rgba(255, 255, 255, 0.2) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 100px);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    padding: 94px 0 118px;
}

.hero-grid {
    display: block;
}

.hero-main {
    animation: rise 0.7s ease-out both;
    max-width: 860px;
}

.kicker {
    margin: 0 0 8px;
    display: inline-block;
    font-weight: 700;
    color: #ffd8a0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.83rem;
}

.hero h1 {
    margin: 0 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.lead {
    margin: 0;
    max-width: 64ch;
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    line-height: 1.55;
    color: #d1e3f0;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(110deg, #ff7a3c 0%, #ffb449 100%);
    box-shadow: 0 10px 24px rgba(255, 131, 66, 0.34);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 131, 66, 0.4);
}

.btn-ghost {
    color: #d4eaf6;
    border: 1px solid rgba(212, 234, 246, 0.4);
    background: rgba(6, 26, 41, 0.45);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(9, 41, 64, 0.62);
}

.hero-stats {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 620px;
}

.hero-stats article {
    border: 1px solid rgba(214, 238, 250, 0.24);
    border-radius: 12px;
    background: rgba(5, 25, 40, 0.58);
    padding: 12px 14px;
}

.hero-stats strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #e7f6ff;
}

.hero-stats span {
    color: #8eb8cd;
    font-size: 0.85rem;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(6, 29, 47, 0.62);
    color: #eff8ff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
    background: rgba(10, 45, 72, 0.86);
    transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev {
    left: 14px;
}

.hero-arrow-next {
    right: 14px;
}

.hero:hover .hero-arrow {
    opacity: 1;
    pointer-events: auto;
}

.trust-bar {
    margin-top: 0;
    position: relative;
    z-index: 6;
}

.trust-wrap {
    border: 1px solid #d8e8f3;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 30px rgba(10, 41, 62, 0.08);
    padding: 14px 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trust-wrap span {
    text-align: center;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #5f2e18;
    text-transform: uppercase;
}

.section {
    padding: 74px 0;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.panel {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 16px 35px rgba(8, 37, 55, 0.08);
}

.panel h2,
.panel h3 {
    margin-top: 0;
    font-family: 'Sora', sans-serif;
}

.panel p {
    margin-bottom: 0;
    line-height: 1.65;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.rich-content iframe {
    max-width: 100%;
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
}

.rich-content th,
.rich-content td {
    border: 1px solid #d6e3ee;
    padding: 8px;
}

.panel-accent {
    color: #dff0ff;
    background: linear-gradient(140deg, #042238 0%, #0a3652 68%, #0b263f 100%);
}

.inspection-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.section-pillars {
    padding-top: 0;
}

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

.pillar-card {
    position: relative;
    border-radius: 20px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(161, 198, 221, 0.45);
    background:
        radial-gradient(120% 90% at 0% 0%, rgba(174, 228, 255, 0.26), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
    box-shadow: 0 16px 34px rgba(7, 34, 52, 0.09);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pillar-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ba6d0 0%, #45d9a6 52%, #8de45d 100%);
}

.pillar-card::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(140deg, rgba(14, 151, 191, 0.18), rgba(86, 220, 157, 0.12));
    border: 1px solid rgba(13, 145, 186, 0.24);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 180, 216, 0.7);
    box-shadow: 0 24px 42px rgba(7, 34, 52, 0.15);
}

.pillar-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(12, 155, 195, 0.16), rgba(85, 218, 155, 0.12));
    border: 1px solid rgba(20, 140, 178, 0.28);
    flex: 0 0 auto;
}

.pillar-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #0e88ad;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-mission .pillar-icon {
    background: linear-gradient(140deg, rgba(69, 180, 224, 0.18), rgba(85, 218, 155, 0.12));
}

.pillar-mission .pillar-icon svg {
    stroke: #1989bf;
}

.pillar-vision .pillar-icon {
    background: linear-gradient(140deg, rgba(81, 169, 230, 0.18), rgba(110, 202, 255, 0.12));
}

.pillar-vision .pillar-icon svg {
    stroke: #2d73b1;
}

.pillar-card h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    color: #103247;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.pillar-card p {
    margin: 0;
    color: #3a5a6f;
    line-height: 1.62;
}

.section-services {
    position: relative;
    color: #153448;
    background:
        linear-gradient(135deg, rgba(3, 22, 38, 0.74) 0%, rgba(6, 38, 60, 0.64) 45%, rgba(10, 53, 79, 0.6) 100%),
        url('/argus_marine/assets/img/P7210169.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.section-services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(58% 70% at 12% 18%, rgba(132, 235, 255, 0.2), transparent 72%),
        radial-gradient(45% 55% at 88% 85%, rgba(255, 196, 129, 0.14), transparent 75%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 100px);
    z-index: 0;
}

.section-services .container {
    position: relative;
    z-index: 1;
    width: min(1460px, 96%);
}

.section-services h2 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    color: #eff8ff;
    max-width: calc((340px * 3) + (20px * 2));
    margin-left: auto;
    margin-right: auto;
}

.services-intro {
    margin: 0 0 28px;
    max-width: calc((340px * 3) + (20px * 2));
    color: #cce1f1;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
    justify-content: center;
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 600px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(186, 219, 239, 0.26);
    background: #06213a;
    box-shadow: 0 14px 30px rgba(3, 19, 35, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(3, 19, 35, 0.38);
}

.service-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 15, 25, 0.04) 26%, rgba(2, 16, 27, 0.8) 88%);
}

.service-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    color: #f4fbff;
    background: linear-gradient(180deg, rgba(4, 22, 37, 0.15), rgba(4, 22, 37, 0.55));
    border: 1px solid rgba(173, 214, 240, 0.2);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    padding: 14px 14px 12px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #d8ef45;
    color: #193028;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: lowercase;
}

.service-content h3 {
    margin: 10px 0 4px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    min-height: 2.25em;
}

.service-details {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: max-height 0.32s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.32s ease;
}

.service-details p {
    margin: 0;
    color: #bad0dd;
    font-size: 0.92rem;
    line-height: 1.48;
    max-width: 34ch;
}

.service-details .service-list {
    margin: 0;
    padding-left: 18px;
    color: #c7dceb;
    font-size: 0.88rem;
    line-height: 1.45;
}

.service-details .service-list li {
    margin-bottom: 4px;
}

.service-card:hover .service-details {
    margin-top: 8px;
    opacity: 1;
    max-height: 240px;
    transform: translateY(0);
}

.cta {
    color: #d9eaf7;
    background:
        radial-gradient(50% 85% at 100% 0%, rgba(255, 187, 84, 0.22), transparent 75%),
        linear-gradient(125deg, #03111c 0%, #08233a 55%, #0a314e 100%);
}

.cta-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.cta h2 {
    margin: 0 0 12px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.cta p {
    margin: 0;
    line-height: 1.6;
}

.contact-box {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px;
}

.contact-box p {
    margin: 0 0 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box span {
    text-align: right;
}

.contact-map-wrap {
    margin-top: 16px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(3, 15, 26, 0.2);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.contact-form {
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-grid-two .field-full {
    grid-column: 1 / -1;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: #dcecf8;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #102b3e;
    padding: 10px 12px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: 0;
    border-radius: 10px;
    min-height: 44px;
    color: #fff;
    font-weight: 800;
    font: inherit;
    background: linear-gradient(110deg, #ff7a3c 0%, #ffb449 100%);
    cursor: pointer;
    margin-top: auto;
}

.contact-form button.is-disabled {
    opacity: 0.58;
    cursor: pointer;
    filter: grayscale(0.22);
}

.contact-form small {
    color: #ffd2d2;
    font-size: 0.8rem;
}

.privacy-check {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.privacy-check input {
    width: auto;
    margin-top: 3px;
}

.privacy-error {
    color: #ffd2d2;
    font-size: 0.82rem;
}

.form-alert {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-alert.success {
    background: rgba(60, 206, 143, 0.2);
    color: #c8ffe4;
}

.form-alert.error {
    background: rgba(255, 95, 95, 0.22);
    color: #ffd2d2;
}

.certifications-strip {
    padding-top: 56px;
    padding-bottom: 58px;
    background: linear-gradient(180deg, #f6fbff 0%, #ebf3fa 100%);
}

.cert-head {
    text-align: center;
    margin-bottom: 20px;
}

.cert-head p {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 800;
    font-size: 0.78rem;
    color: #4b7289;
}

.cert-head h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    color: #153549;
    font-size: clamp(1.4rem, 3vw, 1.95rem);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.cert-card {
    min-height: 150px;
    border-radius: 12px;
    border: 1px solid #d8e8f3;
    background: #fff;
    box-shadow: 0 6px 16px rgba(8, 38, 58, 0.06);
    display: grid;
    place-items: center;
    padding: 16px 10px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.cert-card img {
    max-width: 90%;
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: saturate(0.96) contrast(1.03);
    transition: transform 0.26s ease, filter 0.26s ease;
}

/* BASC inner button wrapper */
.cert-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #003087;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease;
}

.cert-card:hover .cert-badge {
    transform: scale(1.08);
}

.cert-card:hover {
    transform: translateY(-6px);
    border-color: #b9d7ea;
    box-shadow: 0 18px 34px rgba(8, 38, 58, 0.13);
}

.cert-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.07) drop-shadow(0 6px 10px rgba(10, 50, 78, 0.16));
}

/* RINA logo has white paths — needs a dark background */
.cert-card-logo-rina {
    background: #0a2a45;
    border-color: #1b4a6a;
}

.cert-card-logo-rina:hover {
    border-color: #2a6d9e;
}

/* PDF Certificate Modal */
.cert-pdf-modal {
    border: none;
    border-radius: 16px;
    padding: 0;
    width: min(92vw, 900px);
    max-height: 90vh;
    background: #0d2236;
    color: #dcebf7;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    margin: auto;
    overflow: hidden;
}

.cert-pdf-modal::backdrop {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

.cert-pdf-modal-inner {
    display: flex;
    flex-direction: column;
    height: 90vh;
    max-height: 90vh;
}

.cert-pdf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cert-pdf-modal-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #dcebf7;
}

.cert-pdf-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #dcebf7;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
}

.cert-pdf-close-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cert-pdf-frame {
    flex: 1;
    width: 100%;
    border: none;
    min-height: 0;
}

/* Modal header actions */
.cert-pdf-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cert-pdf-download-btn {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #dcebf7;
    text-decoration: none;
    transition: background 0.2s;
}

.cert-pdf-download-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* BV Modal Tabs */
.bv-tabs {
    display: flex;
    gap: 8px;
    width: 100%;
}

.bv-tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #a7c5db;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bv-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bv-tab-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.site-footer {
    position: relative;
    margin-top: 0;
    padding: 54px 0 24px;
    color: #afc3d5;
    background: #051f57;
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 14px;
    background: radial-gradient(circle at 10px 15px, #ecf2f8 9px, transparent 10px) repeat-x;
    background-size: 20px 14px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
    gap: 32px;
}

.footer-brand p {
    margin: 14px 0 20px;
    max-width: 38ch;
    line-height: 1.6;
    color: #9db3c8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo img,
.footer-logo span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo span {
    display: grid;
    place-items: center;
    background: #092f78;
    color: #fff;
    font-weight: 800;
}

.footer-logo strong {
    display: block;
    color: #f5fbff;
    font-family: 'Sora', sans-serif;
}

.footer-logo small {
    color: #9fb7ca;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    color: #dbf200;
    border: 1px solid rgba(219, 242, 0, 0.32);
}

.site-footer h4 {
    margin: 0 0 12px;
    color: #dbf200;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 0 0 10px;
}

.site-footer li a {
    color: #d8e7f3;
    text-decoration: none;
}

.site-footer li a:hover {
    color: #dbf200;
}

.contact-list strong {
    display: block;
    color: #f2f9ff;
    margin-bottom: 4px;
}

.contact-list span {
    color: #9fb5c9;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    color: #c0d1de;
}

.go-top {
    width: 74px;
    height: 74px;
    position: fixed;
    right: 8px;
    bottom: 18px;
    z-index: 120;
    border-radius: 50%;
    background: #f0f7ff;
    color: #0a2540;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    text-decoration: none;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.wa-float {
    width: 62px;
    height: 62px;
    position: fixed;
    right: 14px;
    bottom: 104px;
    z-index: 125;
    border-radius: 50%;
    background: linear-gradient(145deg, #29d466 0%, #18b253 100%);
    color: #fff;
    text-decoration: none;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(3, 29, 14, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.wa-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 28px rgba(3, 29, 14, 0.42);
}

.swal2-container.swal2-backdrop-show {
    backdrop-filter: blur(5px);
    background: rgba(2, 12, 22, 0.62) !important;
}

.argus-modal {
    width: min(560px, 92vw) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(155, 201, 228, 0.34) !important;
    box-shadow: 0 24px 52px rgba(2, 10, 18, 0.5) !important;
    padding: 20px 20px 16px !important;
}

.argus-modal-title {
    font-family: 'Sora', sans-serif !important;
    font-size: 1.75rem !important;
    letter-spacing: -0.01em !important;
    color: #f1f8ff !important;
}

.argus-modal-body {
    margin-top: 4px !important;
    color: #c5dced !important;
}

.argus-alert-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
    text-align: left;
}

.argus-alert-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.98rem;
    line-height: 1.45;
}

.argus-alert-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff965f;
}

.argus-modal-btn {
    min-width: 132px !important;
    min-height: 42px !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-family: 'Manrope', sans-serif !important;
    background: linear-gradient(110deg, #ff7a3c 0%, #ffb449 100%) !important;
    box-shadow: 0 10px 20px rgba(255, 128, 61, 0.3) !important;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 920px) {

    .hero-grid,
    .split,
    .cta-wrap,
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-services h2,
    .services-intro {
        max-width: calc((340px * 2) + 20px);
    }

    .hero {
        min-height: 62vh;
    }

    .hero-content {
        padding: 64px 0 58px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.45rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .trust-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .service-card {
        min-height: 480px;
        border-radius: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        display: none;
    }

    .top-strip-wrap {
        flex-direction: column;
        justify-content: center;
        min-height: 54px;
    }

}

@media (max-width: 620px) {
    :root {
        --anchor-offset: 92px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .section-services h2,
    .services-intro {
        max-width: 340px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .go-top {
        width: 62px;
        height: 62px;
        right: 6px;
        bottom: 14px;
        font-size: 0.72rem;
    }

    .wa-float {
        width: 56px;
        height: 56px;
        right: 10px;
        bottom: 84px;
    }

    .wa-float svg {
        width: 28px;
        height: 28px;
    }
}