* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 34rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f4f7fb 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 82px 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, var(--secondary), #ffd37a),
        var(--secondary);
    box-shadow: 0 16px 35px rgba(245, 158, 11, 0.24);
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: auto -8px 6px -8px;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        rgba(15, 23, 42, 0.95) 0 8px,
        rgba(255, 255, 255, 0.22) 8px 16px
    );
}

.brand strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #334155;
    font-size: 0.94rem;
}

.main-nav a {
    position: relative;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 17px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--primary);
    border-radius: 14px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 99px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 98px;
    padding-bottom: 96px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 52px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 12px;
    color: var(--primary);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.dark-eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.14);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: clamp(2.65rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.hero-text {
    max-width: 670px;
    margin-bottom: 28px;
    color: #475569;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.btn-secondary {
    color: var(--primary);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 640px;
    margin-top: 34px;
}

.hero-stats div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.12rem;
}

.hero-stats span {
    color: #64748b;
    font-size: 0.86rem;
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: 0 36px 90px rgba(15, 23, 42, 0.22);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 26px;
    z-index: 1;
    pointer-events: none;
}

.readiness-card,
.hero-check-card {
    position: absolute;
    z-index: 2;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.readiness-card {
    left: -24px;
    bottom: 44px;
    width: 230px;
    padding: 18px;
}

.readiness-card span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.readiness-card strong {
    display: block;
    color: var(--primary);
    font-size: 2.35rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.readiness-card p {
    margin: 8px 0 0;
    color: #475569;
    font-size: 0.88rem;
}

.hero-check-card {
    right: -20px;
    top: 46px;
    width: 240px;
    padding: 18px;
}

.hero-check-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
}

.hero-check-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-check-card li {
    position: relative;
    padding-left: 25px;
    color: #475569;
    font-size: 0.92rem;
}

.hero-check-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--accent);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
}

.trust-strip {
    padding: 18px 0;
    background: var(--primary);
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
    font-weight: 900;
    font-size: 0.92rem;
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.about-copy h2,
.showcase-copy h2,
.faq-intro h2,
.contact-copy h2 {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 16px;
}

.section-heading p,
.about-copy p,
.showcase-copy p,
.faq-intro p,
.contact-copy p {
    color: #5f6878;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.process-card,
.testimonial-card,
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 94px;
    height: 94px;
    background: rgba(245, 158, 11, 0.16);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.11);
}

.featured-card {
    border-color: rgba(245, 158, 11, 0.36);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 900;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 9px;
    font-size: 1.2rem;
}

.service-card p {
    color: #5f6878;
    margin-bottom: 18px;
}

.service-card a {
    color: var(--primary);
    font-weight: 900;
}

.about-section {
    background:
        radial-gradient(circle at left center, rgba(245, 158, 11, 0.11), transparent 32rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0.86));
}

.about-grid,
.showcase-grid,
.faq-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.image-note {
    position: absolute;
    right: -22px;
    bottom: 32px;
    width: 260px;
    padding: 18px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.15);
}

.image-note strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.image-note span {
    color: #64748b;
    font-size: 0.9rem;
}

.trust-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.trust-list div {
    padding: 18px;
    background: #ffffff;
    border-left: 5px solid var(--secondary);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.trust-list strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.trust-list span {
    color: #5f6878;
}

.process-section {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 30rem),
        var(--primary);
    color: #ffffff;
}

.process-section .section-heading h2,
.process-section .section-heading p {
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    padding: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.step-number {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.9rem;
    letter-spacing: -0.06em;
}

.process-card h3 {
    margin-bottom: 9px;
    line-height: 1.15;
}

.process-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.showcase-section {
    background: #ffffff;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.feature-tags span {
    padding: 10px 15px;
    color: var(--primary);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    font-weight: 900;
}

.programme-panel {
    position: relative;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}

.programme-panel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
}

.programme-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.programme-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: #f3f6fa;
    border-radius: 16px;
}

.programme-list strong {
    color: var(--primary);
}

.programme-list span {
    color: #64748b;
    font-weight: 900;
}

.testimonials-section {
    background: #f4f7fb;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 26px;
}

.testimonial-card p {
    color: #475569;
}

.testimonial-card strong {
    display: block;
    color: var(--primary);
}

.testimonial-card span {
    color: #64748b;
    font-size: 0.9rem;
}

.faq-section {
    background: #f8fafc;
}

.faq-grid {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    color: var(--primary);
    background: #ffffff;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-weight: 900;
}

.faq-item button::after {
    content: "+";
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 50%;
    flex: 0 0 auto;
}

.faq-item.active button::after {
    content: "−";
    color: var(--primary);
    background: rgba(245, 158, 11, 0.16);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: #5f6878;
}

.contact-section {
    background: #ffffff;
}

.contact-grid {
    align-items: stretch;
    padding: 34px;
    background:
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.22), transparent 18rem),
        var(--primary);
    border-radius: 36px;
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.18);
}

.contact-copy {
    color: #ffffff;
    align-self: center;
}

.contact-copy h2,
.contact-copy p {
    color: #ffffff;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-details a {
    display: block;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
}

.contact-details span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

.contact-details strong {
    display: block;
    color: #ffffff;
}

.quote-form {
    padding: 26px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.form-row {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
}

.two-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

label {
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.13);
    border-radius: 14px;
    padding: 12px 13px;
    color: #172033;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(245, 158, 11, 0.78);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

textarea {
    resize: vertical;
}

.btn-form {
    width: 100%;
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.btn-form:hover {
    background: #020617;
}

.form-success {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    font-weight: 800;
}

.form-success.visible {
    display: block;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.32);
    font-size: 1.35rem;
    font-weight: 900;
}

.site-footer {
    padding: 30px 0;
    color: #ffffff;
    background: var(--primary);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-footer strong {
    display: block;
    margin-bottom: 5px;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    body {
        padding-top: 72px;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 22px;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    }

    .nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 13px 12px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 6px;
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-media img {
        height: 430px;
    }

    .readiness-card {
        left: 18px;
    }

    .hero-check-card {
        right: 18px;
    }

    .services-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image img {
        height: 420px;
    }

    .image-note {
        right: 18px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer span {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section-pad {
        padding: 60px 0;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand strong {
        font-size: 0.92rem;
    }

    .brand small {
        font-size: 0.72rem;
    }

    h1 {
        font-size: clamp(2.3rem, 15vw, 4rem);
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats,
    .services-grid,
    .testimonial-grid,
    .process-grid,
    .trust-grid,
    .two-cols {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        height: 360px;
        border-radius: 26px;
    }

    .readiness-card,
    .hero-check-card {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .about-image img,
    .programme-panel img {
        height: 320px;
    }

    .image-note {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .contact-grid {
        padding: 20px;
        border-radius: 26px;
    }

    .quote-form {
        padding: 20px;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}