@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
    --ink: #102a2a;
    --muted: #5f706d;
    --green: #136f63;
    --green-dark: #0b4c45;
    --lime: #a8cf45;
    --cream: #f7f7f2;
    --white: #ffffff;
    --line: #dfe7e3;
    --shadow: 0 20px 55px rgba(16, 42, 42, 0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background:
        radial-gradient(circle at 8% 28%, rgba(46,177,229,.055), transparent 18rem),
        radial-gradient(circle at 96% 72%, rgba(168,207,69,.08), transparent 22rem),
        var(--cream);
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); }
a:hover { color: var(--green-dark); }
a:focus-visible, button:focus-visible {
    outline: 3px solid rgba(168,207,69,.7);
    outline-offset: 3px;
}

.text-gray-700, .text-secondary { color: var(--muted) !important; }

.container { max-width: 1160px; }

.navbar {
    min-height: 96px;
    padding: .9rem 0;
    background:
        radial-gradient(circle at 80% -40%, rgba(46,177,229,.2), transparent 28%),
        radial-gradient(circle at 15% 160%, rgba(168,207,69,.15), transparent 30%),
        linear-gradient(112deg, #073b38 0%, #0b514b 52%, #0a4542 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 32px rgba(7,59,56,.2);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .18;
    background-image: radial-gradient(rgba(255,255,255,.8) .7px, transparent .7px);
    background-size: 20px 20px;
    mask-image: linear-gradient(90deg, transparent 20%, black 60%, transparent 100%);
}

.navbar > .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    width: 235px;
    height: 62px;
    padding: .4rem .75rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 14px 14px 14px 4px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 9px 25px rgba(0,0,0,.16), inset 0 0 0 1px rgba(19,111,99,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.navbar-brand img { display: block; width: 100%; height: auto; }
.navbar-brand:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.21); }

.navbar-collapse { flex-grow: 0; }
.navbar-nav { align-items: center; gap: .55rem; }
.nav-link {
    color: rgba(240,250,247,.84) !important;
    font-weight: 600;
    padding: .6rem .85rem !important;
    border-radius: 9px;
    letter-spacing: .01em;
}
.nav-link:hover { color: white !important; background: rgba(255,255,255,.1); }
.nav-link.active {
    color: white !important;
    background: rgba(255,255,255,.13);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.navbar-toggler {
    padding: .55rem;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.95);
    box-shadow: none !important;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .8rem 1rem;
    border: 1px solid #bcdad2;
    border-radius: 10px;
    background: #eff8f4;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}
.contact-link::before { content: "→"; color: var(--green); font-size: 1.25rem; }
.contact-link:hover { transform: translateY(-2px); background: #e4f3ed; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background:
        linear-gradient(rgba(255,255,255,.38) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.38) 1px, transparent 1px),
        radial-gradient(circle at 86% 25%, rgba(168,207,69,.26), transparent 27%),
        radial-gradient(circle at 70% 95%, rgba(46,177,229,.16), transparent 30%),
        linear-gradient(135deg, #fbfcf6 0%, #e9f6ef 100%);
    background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -160px;
    bottom: -280px;
    border: 1px solid rgba(19,111,99,.16);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(19,111,99,.04), 0 0 0 150px rgba(19,111,99,.025);
}

.hero::before {
    content: "";
    position: absolute;
    top: 70px;
    right: 6%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2eb1e5;
    box-shadow: 58px 42px 0 8px rgba(168,207,69,.8), 108px -15px 0 3px rgba(19,111,99,.42);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.25rem;
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); }

.hero h1 {
    max-width: 800px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.65rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.07;
}
.hero .lead { max-width: 680px; color: var(--muted); font-size: 1.18rem; }

.btn {
    padding: .85rem 1.35rem;
    border-radius: 10px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { border-color: var(--green); background: var(--green); box-shadow: 0 10px 24px rgba(19,111,99,.2); }
.btn-primary:hover, .btn-primary:focus { border-color: var(--green-dark); background: var(--green-dark); }
.btn-outline-dark { border-color: #b7c7c2; color: var(--ink); }

.hero-panel {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 24px;
    color: white;
    background:
        radial-gradient(circle at 92% 8%, rgba(168,207,69,.28), transparent 30%),
        radial-gradient(circle at 8% 100%, rgba(46,177,229,.22), transparent 35%),
        linear-gradient(145deg, #11685e, #083d39);
    box-shadow: 0 30px 70px rgba(11,76,69,.25);
}
.hero-panel h2 { font-size: 1.35rem; }
.hero-panel::after {
    content: "01";
    position: absolute;
    right: 1.4rem;
    bottom: .2rem;
    color: rgba(255,255,255,.06);
    font-family: "Manrope", sans-serif;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
}
.hero-panel ul { padding: 0; list-style: none; }
.hero-panel li { display: flex; gap: .8rem; padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.hero-panel li::before { content: "✓"; color: var(--lime); font-weight: 800; }

body > section.py-5 {
    position: relative;
    padding: 72px 0 !important;
}
body > section.py-5 > .container { position: relative; }
body > section.py-5 > .container::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1rem;
    right: 1rem;
    width: 110px;
    height: 110px;
    border: 18px solid rgba(168,207,69,.11);
    border-radius: 50%;
    box-shadow: -54px 55px 0 -12px rgba(46,177,229,.1);
}
body > section.py-5::before {
    content: "Expert guidance · United Kingdom";
    display: block;
    max-width: 1160px;
    margin: 0 auto .8rem;
    padding: 0 12px;
    color: var(--green);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 2rem;
    max-width: 800px;
    color: var(--ink);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
}

.content-section { padding: 90px 0; }
.content-section h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 800; }
.section-intro { max-width: 720px; color: var(--muted); font-size: 1.12rem; }

.bg-white.rounded, .bg-white.rounded.shadow-sm {
    max-width: 920px;
    border: 1px solid var(--line);
    border-top: 5px solid var(--green);
    border-radius: 20px !important;
    box-shadow: var(--shadow) !important;
}
.bg-white.rounded h2 { margin-top: 2.5rem !important; color: var(--ink); font-size: 1.45rem; font-weight: 800; }
.bg-white.rounded h2:first-of-type { margin-top: 2rem !important; }
.bg-white.rounded li { margin-bottom: .45rem; }

.card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(16,42,42,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.row .col-md-6:nth-child(1) .card { border-top: 4px solid #1aa094; }
.row .col-md-6:nth-child(2) .card { border-top: 4px solid #2eb1e5; }
.row .col-md-6:nth-child(3) .card { border-top: 4px solid var(--lime); }
.row .col-md-6:nth-child(4) .card { border-top: 4px solid #174ca1; }
.row .col-md-6 .card::before {
    display: block;
    margin-bottom: .9rem;
    color: rgba(19,111,99,.27);
    font-family: "Manrope", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.row .col-md-6:nth-child(1) .card::before { content: "01"; }
.row .col-md-6:nth-child(2) .card::before { content: "02"; }
.row .col-md-6:nth-child(3) .card::before { content: "03"; }
.row .col-md-6:nth-child(4) .card::before { content: "04"; }
.card:hover { transform: translateY(-5px); border-color: #bdd8d0; box-shadow: var(--shadow); }
.card h3 { color: var(--ink); font-size: 1.3rem; font-weight: 800; }
.card p { color: var(--muted); }

.trust-strip { padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-item { color: #3d5c58; font-size: .9rem; font-weight: 700; }
.trust-item span { color: var(--green); margin-right: .45rem; }

.cta-block { padding: 3rem; border-radius: 24px; color: white; background: linear-gradient(135deg, var(--green-dark), #0b5d54); box-shadow: var(--shadow); }
.cta-block h2 { color: white; }
.cta-block p { color: #cfe2dd; }
.cta-block .btn { background: white; color: var(--green-dark); }

.footer {
    margin-top: 80px !important;
    padding: 55px 0 35px;
    color: #b8cbc6;
    background: #092f2d;
    border: 0 !important;
}
.footer::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: -55px auto 45px;
    background: linear-gradient(90deg, #2eb1e5, var(--lime));
}
.footer p:first-child { color: white; font-family: "Manrope", sans-serif; font-size: 1.15rem; font-weight: 800; }
.footer p:nth-child(2) { max-width: 660px; margin-right: auto; margin-left: auto; }
.footer a { color: #dbe9e5; font-size: .92rem; font-weight: 600; }
.footer a:hover { color: var(--lime); }

@media (max-width: 991.98px) {
    .navbar-collapse { padding: 1rem 0; }
    .navbar-nav { align-items: stretch; }
    .hero { padding: 76px 0; }
    .hero-panel { margin-top: 2rem; }
}

@media (min-width: 992px) {
    .navbar-collapse {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-nav { margin: 0 !important; }

    .nav-link {
        position: relative;
        padding: .65rem 1rem !important;
    }

    .nav-link.active::after {
        content: "";
        position: absolute;
        right: 1rem;
        bottom: .25rem;
        left: 1rem;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #55cef2, #b7e34c);
        box-shadow: 0 0 8px rgba(183,227,76,.35);
    }
}

@media (max-width: 575.98px) {
    body { font-size: .97rem; }
    .navbar { min-height: 78px; }
    .navbar-brand { width: 190px; height: 50px; padding: .3rem .6rem; border-radius: 11px 11px 11px 3px; }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2.55rem; }
    .hero .d-flex .btn { width: 100%; text-align: center; }
    .hero-panel, .cta-block { padding: 1.5rem; border-radius: 18px; }
    body > section.py-5 { padding: 52px 0 !important; }
    .bg-white.rounded { padding: 1.5rem !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
