:root {
    --navy: #020d20;
    --navy-light: #071c3d;
    --royal-blue: #056ad8;
    --bright-blue: #00a7ff;
    --gold: #e2b23d;
    --light-gold: #ffe39a;
    --white: #ffffff;
    --off-white: #f7faff;
    --surface: #eef5ff;
    --text: #10213d;
    --muted: #66758b;
    --border: #dde6f1;
    --success: #20b865;
    --shadow: 0 28px 75px rgba(3, 31, 72, 0.14);
    --shadow-soft: 0 14px 35px rgba(3, 31, 72, 0.09);
    --radius-large: 28px;
    --radius-medium: 18px;
    --radius-small: 12px;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: "Manrope", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

/* COMMON COMPONENTS */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 100px;
    color: var(--royal-blue);
    background: rgba(5, 106, 216, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(226, 178, 61, 0.14);
}

.button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 28px;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.primary-button {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--royal-blue),
        var(--bright-blue)
    );
    box-shadow: 0 16px 34px rgba(5, 106, 216, 0.24);
}

.primary-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 120, 255, 0.35);
}
    box-shadow: 0 20px 42px rgba(5, 106, 216, 0.3);
}

.secondary-button {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
}

.secondary-button:hover {
    border-color: rgba(5, 106, 216, 0.35);
    background: #f8fbff;
}

.gold-button {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    box-shadow: 0 16px 34px rgba(226, 178, 61, 0.22);
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 13, 32, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 14px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.09em;
}

.brand-text span {
    margin-top: 3px;
    color: var(--bright-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s;
}

.navigation a:hover {
    color: var(--white);
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.25s;
}

.navigation a:hover::after {
    width: 100%;
}

.header-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 12px;
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(226, 178, 61, 0.2);
    transition: 0.25s;
    flex-shrink: 0;
}

.header-button:hover {
    transform: translateY(-3px);
}

.menu-button {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 145px 0 95px;
    background:
        radial-gradient(
            circle at 14% 18%,
            rgba(0, 167, 255, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(226, 178, 61, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf5ff 55%,
            #fffaf0 100%
        );
    overflow: hidden;
}

.hero-light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.hero-light-blue {
    width: 430px;
    height: 430px;
    top: -180px;
    left: -120px;
    background: rgba(0, 167, 255, 0.08);
}

.hero-light-gold {
    width: 380px;
    height: 380px;
    right: -140px;
    bottom: -150px;
    background: rgba(226, 178, 61, 0.11);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 70px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo-box {
    width: 245px;
    margin-bottom: 22px;
    padding: 10px;
    border-radius: 22px;
    background: var(--navy);
    box-shadow: 0 20px 50px rgba(2, 13, 32, 0.24);
}

.hero-full-logo {
    width: 100%;
    border-radius: 16px;
}

.hero h1 {
    max-width: 730px;
    margin-top: 24px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.07;
    letter-spacing: -0.035em;
}

.hero h1 strong {
    display: block;
    color: var(--royal-blue);
}

.hero-description {
    max-width: 690px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 33px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
    color: #49586c;
    font-size: 12px;
    font-weight: 800;
}

.hero-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-benefits i {
    color: var(--gold);
}

/* CONSULTATION FORM */

.consultation-card {
    position: relative;
    z-index: 2;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.consultation-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.portal-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.consultation-top h2 {
    margin-top: 6px;
    color: var(--navy);
    font-size: 27px;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 100px;
    color: #168d4a;
    background: #ebfff4;
    font-size: 10px;
    font-weight: 900;
}

.online-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(32, 184, 101, 0.13);
}

.consultation-intro {
    margin: 14px 0 24px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.input-group {
    margin-bottom: 14px;
}

.input-group label {
    display: block;
    margin-bottom: 7px;
    color: #344054;
    font-size: 11px;
    font-weight: 900;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #98a2b3;
    font-size: 13px;
    pointer-events: none;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fbfcfe;
    color: var(--text);
    outline: none;
    transition: 0.2s;
}

.input-group input,
.input-group select {
    min-height: 50px;
    padding: 0 14px 0 42px;
}

.input-group textarea {
    min-height: 96px;
    padding: 14px;
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: rgba(5, 106, 216, 0.55);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(5, 106, 216, 0.08);
}

.submit-button {
    width: 100%;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: none;
    border-radius: 13px;
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(226, 178, 61, 0.2);
    transition: 0.25s;
}

.submit-button:hover {
    transform: translateY(-3px);
}

.form-status {
    min-height: 18px;
    margin-top: 10px;
    text-align: center;
    color: var(--royal-blue);
    font-size: 12px;
    font-weight: 800;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 7px;
    color: #98a2b3;
    font-size: 10px;
}

/* INDUSTRY STRIP */

.industry-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.industry-strip-grid {
    min-height: 105px;
    display: grid;
    grid-template-columns: 1.6fr repeat(5, 1fr);
    align-items: center;
    gap: 14px;
}

.industry-strip-title {
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
}

.industry-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #5f6d82;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.industry-strip-item i {
    color: var(--gold);
}

/* SECTION HEADINGS */

.section-heading {
    max-width: 770px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading h2,
.benefits-content h2,
.contact-content h2 {
    margin-top: 18px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.section-heading h2 span,
.benefits-content h2 span,
.contact-content h2 span {
    color: var(--royal-blue);
}

.section-heading p,
.benefits-content > p,
.contact-content > p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

/* SOLUTIONS */

.solutions-section {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.solution-card {
    position: relative;
    min-height: 295px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 18px 45px rgba(15, 42, 88, 0.06);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(5, 106, 216, 0.25);
    box-shadow: 0 30px 70px rgba(10, 35, 80, 0.14);
}

transform:
translateY(-12px);

box-shadow:

0 35px 80px
rgba(0,0,0,.12);

} {
    position: relative;
    min-height: 295px;
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    overflow: hidden;
    transition: 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(5, 106, 216, 0.25);
    box-shadow: var(--shadow);
}

.featured-card {
    color: var(--white);
    background: linear-gradient(
        145deg,
        var(--navy),
        #123a73
    );
    border: none;
}

.solution-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.solution-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(5, 106, 216, 0.09);
    color: var(--royal-blue);
    font-size: 21px;
}

.featured-card .solution-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

.solution-card-top > span {
    color: #a3aec0;
    font-size: 12px;
    font-weight: 900;
}

.featured-card .solution-card-top > span {
    color: rgba(255, 255, 255, 0.42);
}

.solution-card h3 {
    margin-top: 26px;
    color: var(--navy);
    font-size: 20px;
}

.featured-card h3 {
    color: var(--white);
}

.solution-card p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.72);
}

.solution-card ul {
    margin: 20px 0 0 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.9;
}

/* BENEFITS */

.benefits-section {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 85px;
    align-items: center;
}

.dashboard-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.dashboard-card {
    width: min(100%, 530px);
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.dashboard-header > div:first-child > span {
    color: var(--muted);
    font-size: 12px;
}

.dashboard-header h3 {
    margin-top: 5px;
    color: var(--navy);
    font-size: 22px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    color: #178f4d;
    background: #ecfff4;
    font-size: 11px;
    font-weight: 900;
}

.dashboard-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 25px;
}

.dashboard-stat {
    padding: 20px;
    border-radius: 16px;
    background: var(--off-white);
}

.dashboard-stat span,
.dashboard-stat small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.dashboard-stat strong {
    display: block;
    margin: 8px 0;
    color: var(--royal-blue);
    font-size: 31px;
}

.activity-list {
    margin-top: 25px;
}

.activity-item {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.activity-item i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--royal-blue);
    background: rgba(5, 106, 216, 0.09);
}

.activity-item span {
    font-size: 12px;
    font-weight: 800;
}

.activity-item small {
    color: #98a2b3;
    font-size: 10px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.floating-card i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--royal-blue);
    background: rgba(5, 106, 216, 0.09);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--navy);
    font-size: 12px;
}

.floating-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.floating-card-one {
    top: 45px;
    left: -5px;
}

.floating-card-two {
    right: -5px;
    bottom: 55px;
}

.benefit-list {
    margin-top: 35px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 21px 0;
    border-bottom: 1px solid var(--border);
}

.benefit-icon,
.process-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--royal-blue);
    background: rgba(5, 106, 216, 0.09);
    font-size: 20px;
}

.benefit-item h3 {
    color: var(--navy);
    font-size: 16px;
}

.benefit-item p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--royal-blue);
    font-weight: 900;
    text-decoration: none;
}

/* PROCESS */

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--off-white);
    transition: 0.25s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.process-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #acb6c6;
    font-size: 12px;
    font-weight: 900;
}

.process-card h3 {
    margin-top: 24px;
    color: var(--navy);
    font-size: 18px;
}

.process-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* CTA */

.cta-section {
    padding: 0 0 110px;
    background: var(--white);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 55px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(226, 178, 61, 0.2),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            #0b3675
        );
    overflow: hidden;
}

.light-eyebrow {
    color: var(--light-gold);
    background: rgba(255, 255, 255, 0.08);
}

.cta-box h2 {
    max-width: 780px;
    margin-top: 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.15;
}

.cta-box p {
    max-width: 680px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* CONTACT */

.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 80px;
    align-items: center;
}

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 35px;
}

.contact-details a,
.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
    text-decoration: none;
}

.contact-details a > div,
.contact-detail > div {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--royal-blue);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(24, 62, 115, 0.07);
}

.contact-details small,
.contact-details span {
    display: block;
}

.contact-details small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
}

.contact-details span {
    font-size: 14px;
    font-weight: 900;
}

.founder-card {
    padding: 42px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.founder-logo {
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: var(--navy);
}

.founder-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.founder-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.founder-card h3 {
    margin-top: 10px;
    color: var(--navy);
    font-size: 25px;
}

.founder-card p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.linkedin-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 0 22px;
    border-radius: 13px;
    color: var(--white);
    background: #0a66c2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.25s;
}

.linkedin-button:hover {
    transform: translateY(-3px);
}

/* FOOTER */

footer {
    padding: 70px 0 25px;
    color: var(--white);
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 55px;
}

.footer-logo {
    width: 210px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.footer-brand p {
    max-width: 420px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.43);
    font-size: 11px;
}

/* FLOATING WHATSAPP */

.whatsapp-floating-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    z-index: 900;
    border-radius: 50%;
    color: var(--white);
    background: #20ba5a;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(32, 186, 90, 0.3);
    transition: 0.25s;
}

.whatsapp-floating-button:hover {
    transform: translateY(-4px) scale(1.04);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
    .navigation {
        display: none;
    }

    .menu-button {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 11px;
        color: var(--white);
        background: transparent;
        cursor: pointer;
    }

    .navigation.navigation-open {
        position: absolute;
        top: 92px;
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: var(--navy);
        box-shadow: var(--shadow);
    }

    .navigation.navigation-open a {
        padding: 14px;
    }

    .hero-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-logo-box {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-benefits {
        justify-content: center;
    }

    .industry-strip-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 25px 0;
    }

    .industry-strip-title {
        grid-column: 1 / -1;
        text-align: center;
    }

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

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1200px);
    }

    .section {
        padding: 80px 0;
    }

    .header-button {
        display: none;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .header-logo {
        width: 52px;
        height: 52px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-logo-box {
        width: 195px;
    }

    .consultation-card {
        padding: 23px;
        border-radius: 23px;
    }

    .form-row,
    .solutions-grid,
    .process-grid,
    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .industry-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-visual {
        min-height: 470px;
    }

    .floating-card {
        display: none;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 36px 25px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 470px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }

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

    .consultation-top {
        flex-direction: column;
    }

    .whatsapp-floating-button {
        right: 18px;
        bottom: 18px;
        width: 54px;
        height: 54px;
    }
}
/* JAVASCRIPT EFFECTS */

.header-scrolled {
    background: rgba(2, 13, 32, 0.98);
    box-shadow: 0 12px 35px rgba(2, 13, 32, 0.2);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

.status-success {
    color: #168d4a;
}

.status-error {
    color: #d92d20;
}

.status-processing {
    color: var(--royal-blue);
}

.reveal-element {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
/* BUSINESS OUTCOMES */

.outcomes-section {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    padding-bottom: 38px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(221, 230, 241, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 55px rgba(3, 31, 72, 0.11);
    backdrop-filter: blur(16px);
}

.outcome-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border-radius: 15px;
    transition: 0.25s ease;
}

.outcome-item:hover {
    background: #f7faff;
    transform: translateY(-3px);
}

.outcome-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--royal-blue);
    background: rgba(5, 106, 216, 0.09);
    font-size: 17px;
}

.outcome-item strong,
.outcome-item span {
    display: block;
}

.outcome-item strong {
    color: var(--navy);
    font-size: 13px;
}

.outcome-item span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 950px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .outcomes-section {
        margin-top: -15px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        padding: 14px;
    }
}
/* WHY ROYAL CURA AI */

.why-royal{
padding:110px 0;
background:#f8fbff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:60px;
}

.why-card{
background:#fff;
padding:36px;
border-radius:22px;
border:1px solid #e9eef6;
transition:.35s;
box-shadow:0 16px 40px rgba(10,35,80,.05);
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 28px 60px rgba(10,35,80,.12);
border-color:#0b63d8;
}

.why-card i{
font-size:32px;
color:#0b63d8;
margin-bottom:20px;
}

.why-card h3{
font-size:22px;
margin-bottom:14px;
color:#08172f;
}

.why-card p{
color:#64748b;
line-height:1.8;
font-size:16px;
}

@media(max-width:992px){
.why-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:640px){
.why-grid{
grid-template-columns:1fr;
}
}
/* AUTOMATION WORKFLOW */

.workflow-section {
    position: relative;
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(5, 106, 216, 0.08),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
    overflow: hidden;
}

.workflow-heading h2 strong {
    display: block;
    color: var(--royal-blue);
}

.workflow-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.workflow-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(5, 106, 216, 0.22),
        rgba(226, 178, 61, 0.3),
        transparent
    );
    z-index: 0;
}

.workflow-card {
    position: relative;
    z-index: 1;
    min-height: 275px;
    padding: 32px;
    border: 1px solid #e3eaf3;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(10, 35, 80, 0.07);
    transition: 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-9px);
    border-color: rgba(5, 106, 216, 0.35);
    box-shadow: 0 30px 65px rgba(10, 35, 80, 0.14);
}

.workflow-number {
    position: absolute;
    top: 27px;
    right: 27px;
    color: #a5b0c1;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.workflow-icon {
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--royal-blue),
        var(--bright-blue)
    );
    box-shadow: 0 13px 28px rgba(5, 106, 216, 0.22);
    font-size: 21px;
}

.workflow-card:nth-child(even) .workflow-icon {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    box-shadow: 0 13px 28px rgba(226, 178, 61, 0.22);
}

.workflow-card h3 {
    margin-top: 25px;
    color: var(--navy);
    font-size: 19px;
}

.workflow-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.workflow-result {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 35px;
    padding: 20px;
    border: 1px solid #e1e8f1;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(10, 35, 80, 0.06);
}

.workflow-result div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #49586c;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.workflow-result i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #168d4a;
    background: #ecfff4;
    font-size: 10px;
}

@media (max-width: 950px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-grid::before {
        display: none;
    }

    .workflow-result {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .workflow-section {
        padding: 80px 0;
    }

    .workflow-grid,
    .workflow-result {
        grid-template-columns: 1fr;
    }
}
.heading-highlight {
    display: block;
    margin-top: 8px;
    color: var(--royal-blue);
    font-size: 1.12em;
    line-height: 1.08;
}
/* EXTRA SPACE ABOVE OUR SOLUTIONS */

.solutions-section {
    padding-top: 150px;
    padding-bottom: 115px;
}
/* IMPLEMENTATION PROCESS */

.implementation-section {
    position: relative;
    padding: 125px 0;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(226, 178, 61, 0.09),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
    overflow: hidden;
}

.implementation-heading {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.implementation-label {
    display: inline-flex;
    padding: 10px 17px;
    border-radius: 100px;
    color: var(--royal-blue);
    background: #eef5ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.implementation-heading h2 {
    margin-top: 22px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 4.6vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.implementation-heading h2 strong {
    display: block;
    margin-top: 8px;
    color: var(--royal-blue);
}

.implementation-heading p {
    max-width: 720px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.implementation-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.implementation-timeline::before {
    content: "";
    position: absolute;
    top: 59px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(5, 106, 216, 0.15),
        rgba(5, 106, 216, 0.4),
        rgba(226, 178, 61, 0.45),
        rgba(5, 106, 216, 0.15)
    );
}

.implementation-step {
    position: relative;
    z-index: 2;
    min-height: 360px;
    padding: 29px;
    border: 1px solid #e1e8f2;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(10, 35, 80, 0.07);
    transition: 0.3s ease;
}

.implementation-step:hover {
    transform: translateY(-9px);
    border-color: rgba(5, 106, 216, 0.32);
    box-shadow: 0 30px 65px rgba(10, 35, 80, 0.14);
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-number {
    color: #9ba8ba;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.step-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--royal-blue),
        var(--bright-blue)
    );
    box-shadow: 0 13px 28px rgba(5, 106, 216, 0.2);
    font-size: 22px;
}

.implementation-step:nth-child(even) .step-icon {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    box-shadow: 0 13px 28px rgba(226, 178, 61, 0.21);
}

.implementation-step h3 {
    margin-top: 28px;
    color: var(--navy);
    font-size: 21px;
}

.implementation-step p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.step-result {
    display: inline-flex;
    margin-top: 24px;
    padding: 8px 12px;
    border-radius: 100px;
    color: var(--royal-blue);
    background: #eef5ff;
    font-size: 11px;
    font-weight: 900;
}

.implementation-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding: 22px;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 15px 38px rgba(10, 35, 80, 0.05);
}

.implementation-footer div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #48576b;
    font-size: 13px;
    font-weight: 800;
}

.implementation-footer i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #168d4a;
    background: #ecfff4;
    font-size: 10px;
}

@media (max-width: 1000px) {
    .implementation-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .implementation-timeline::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .implementation-section {
        padding: 85px 0;
    }

    .implementation-timeline {
        grid-template-columns: 1fr;
    }

    .implementation-step {
        min-height: auto;
    }
}
/* =========================================
   OPERATIONAL RESULTS
========================================= */

.results-section {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(5, 106, 216, 0.08),
            transparent 26%
        ),
        #071a38;
}

.results-heading {
    max-width: 820px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    padding: 10px 17px;
    border-radius: 100px;
    color: var(--royal-blue);
    background: #eef5ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.results-heading h2 {
    margin-top: 22px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.results-heading h2 strong {
    display: block;
    margin-top: 8px;
    color: var(--light-gold);
}

.results-heading p {
    max-width: 720px;
    margin: 23px auto 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.8;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-card {
    position: relative;
    min-height: 285px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    transition: 0.3s ease;
    overflow: hidden;
}

.result-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--bright-blue),
        var(--gold)
    );
    border-radius: 0 0 10px 10px;
}

.result-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(226, 178, 61, 0.3);
}

.result-value {
    display: flex;
    align-items: baseline;
    color: #ffffff;
}

.result-counter {
    font-family: "Playfair Display", serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
}

.result-value small {
    margin-left: 6px;
    color: var(--light-gold);
    font-size: 19px;
    font-weight: 800;
}

.result-card h3 {
    margin-top: 27px;
    color: #ffffff;
    font-size: 18px;
}

.result-card p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   COMPARISON
========================================= */

.comparison-section {
    padding: 125px 0;
    background: #ffffff;
}

.comparison-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.comparison-content h2 {
    margin-top: 20px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(39px, 4vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.comparison-content h2 strong {
    display: block;
    margin-top: 8px;
    color: var(--royal-blue);
}

.comparison-content p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    color: var(--royal-blue);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.comparison-table {
    border: 1px solid #dfe7f1;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 25px 65px rgba(10, 35, 80, 0.1);
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-header {
    color: #ffffff;
    background: var(--navy);
}

.comparison-header div {
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 900;
}

.comparison-header div:last-child {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
}

.comparison-row {
    border-bottom: 1px solid #e8edf4;
}

.comparison-row:last-child {
    border-bottom: 0;
}

.comparison-row > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 67px;
    padding: 16px 22px;
    font-size: 13px;
    line-height: 1.5;
}

.comparison-old {
    color: #788599;
    background: #fbfcfe;
}

.comparison-new {
    color: var(--text);
    background: #ffffff;
    font-weight: 800;
}

.comparison-old i,
.comparison-new i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 10px;
}

.comparison-old i {
    color: #d92d20;
    background: #fff0ef;
}

.comparison-new i {
    color: #168d4a;
    background: #ecfff4;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta-section {
    padding: 20px 0 115px;
    background: #ffffff;
}

.final-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: 65px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(226, 178, 61, 0.26),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #020d20,
            #0b3675
        );
    box-shadow: 0 30px 75px rgba(2, 13, 32, 0.2);
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(0, 167, 255, 0.12);
    filter: blur(4px);
}

.final-cta-content,
.final-cta-actions {
    position: relative;
    z-index: 2;
}

.final-cta-label {
    color: var(--light-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.final-cta-content h2 {
    max-width: 760px;
    margin-top: 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
}

.final-cta-content h2 strong {
    color: var(--light-gold);
}

.final-cta-content p {
    max-width: 690px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
}

.final-cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

.final-cta-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
}

.final-cta-trust i {
    color: var(--gold);
}

.final-cta-actions {
    min-width: 245px;
    display: grid;
    gap: 12px;
}

.final-primary-button,
.final-secondary-button {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.25s ease;
}

.final-primary-button {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
}

.final-secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.final-primary-button:hover,
.final-secondary-button:hover {
    transform: translateY(-3px);
}


/* RESPONSIVE */

@media (max-width: 1000px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-layout,
    .final-cta-box {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        min-width: 0;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .results-section,
    .comparison-section {
        padding: 85px 0;
    }

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

    .comparison-layout {
        gap: 45px;
    }

    .comparison-header div,
    .comparison-row > div {
        padding-left: 13px;
        padding-right: 13px;
        font-size: 11px;
    }

    .final-cta-section {
        padding-bottom: 85px;
    }

    .final-cta-box {
        padding: 38px 24px;
    }

    .final-cta-actions {
        grid-template-columns: 1fr;
    }

    .final-cta-trust {
        flex-direction: column;
    }
}



/* FINAL STABILITY OVERRIDES */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.results-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(5, 106, 216, 0.08), transparent 26%),
        #071a38;
}

.comparison-section {
    padding: 125px 0;
    background: #ffffff;
}

.contact-section {
    padding: 120px 0;
    background: var(--off-white);
}

.reveal-element {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   FINAL RC-006 HEADING POLISH
   Precise selectors only; do not add competing heading rules.
===================================================== */

.solutions-section {
    padding-top: 150px;
}

.solutions-section .section-heading,
.why-royal .section-heading,
.workflow-section .section-heading {
    max-width: 1080px;
}

.solutions-section .section-heading > span,
.why-royal .section-heading > span,
.workflow-section .section-heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    margin-bottom: 34px;
    border: 1px solid rgba(5, 106, 216, 0.22);
    border-radius: 999px;
    color: var(--royal-blue);
    background: #edf5ff;
    box-shadow: 0 10px 28px rgba(5, 106, 216, 0.08);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.solutions-section .section-heading h2,
.why-royal .section-heading h2,
.workflow-section .section-heading h2 {
    max-width: 1080px;
    margin: 0 auto;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 4.8vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.heading-blue-text {
    display: block;
    color: var(--royal-blue);
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.workflow-blue-line {
    white-space: nowrap;
}

.solutions-section .section-heading p,
.why-royal .section-heading p,
.workflow-section .section-heading p {
    max-width: 850px;
    margin: 28px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .workflow-blue-line {
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .solutions-section {
        padding-top: 95px;
    }

    .solutions-section .section-heading h2,
    .why-royal .section-heading h2,
    .workflow-section .section-heading h2 {
        font-size: 40px;
        line-height: 1.08;
    }
}
/* =====================================================
   FINAL CARD STYLING ONLY
   Solutions + Why Royal Cura AI
===================================================== */

/* Shared card base */

.solution-card,
.why-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(5, 106, 216, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(10, 35, 80, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Decorative top line */

.solution-card::before,
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--royal-blue),
        var(--bright-blue)
    );
}


/* Alternate gold cards */

.solution-card:nth-child(even)::before,
.why-card:nth-child(even)::before {
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--light-gold)
    );
}


/* Soft decorative corner glow */

.solution-card::after,
.why-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(5, 106, 216, 0.06);
    pointer-events: none;
}

.solution-card:nth-child(even)::after,
.why-card:nth-child(even)::after {
    background: rgba(226, 178, 61, 0.09);
}


/* Hover */

.solution-card:hover,
.why-card:hover {
    transform: translateY(-9px);
    border-color: rgba(5, 106, 216, 0.28);
    box-shadow: 0 30px 65px rgba(10, 35, 80, 0.14);
}


/* Keep content above decorative shapes */

.solution-card h3,
.solution-card p,
.solution-icon,
.why-card h3,
.why-card p,
.why-card > i {
    position: relative;
    z-index: 2;
}


/* Solution icons */

.solution-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--royal-blue),
        var(--bright-blue)
    );
    box-shadow: 0 13px 28px rgba(5, 106, 216, 0.22);
    font-size: 21px;
}


/* Gold alternate solution icons */

.solution-card:nth-child(even) .solution-icon {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    box-shadow: 0 13px 28px rgba(226, 178, 61, 0.23);
}


/* Why Royal Cura AI icons */

.why-card > i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--royal-blue),
        var(--bright-blue)
    );
    box-shadow: 0 13px 28px rgba(5, 106, 216, 0.22);
    font-size: 21px;
}


/* Gold alternate Why icons */

.why-card:nth-child(even) > i {
    color: var(--navy);
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--light-gold)
    );
    box-shadow: 0 13px 28px rgba(226, 178, 61, 0.23);
}


/* Mobile safety */

@media (max-width: 720px) {
    .solution-card,
    .why-card {
        min-height: auto;
    }
}