:root {
    --sd-navy: #07152f;
    --sd-navy-2: #0b1d3d;
    --sd-purple: #7c5cff;
    --sd-purple-light: #9b85ff;
    --sd-text: #172033;
    --sd-muted: #697386;
    --sd-white: #ffffff;
    --sd-light: #f6f8fc;
    --sd-border: #e7eaf1;
    --sd-shadow: 0 18px 55px rgba(7, 21, 47, .10);
    --sd-radius: 20px;
    --sd-heading: "Plus Jakarta Sans", sans-serif;
    --sd-body: "DM Sans", sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--sd-body);
    color: var(--sd-text);
    background: var(--sd-white);
    overflow-x: hidden;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sd-heading);
    font-weight: 700;
    line-height: 1.15;
}

.container {
    position: relative;
    z-index: 2;
}

/* ---------- GLOBAL ---------- */

.section-padding {
    padding: 70px 0;
}


.section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--sd-purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--sd-navy);
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.035em;
}

.section-title span {
    color: var(--sd-purple);
}

.section-description {
    max-width: 620px;
    color: var(--sd-muted);
    font-size: 17px;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto;
}

.section-heading .section-description {
      margin-top: 12px;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading-row > div:last-child {
    max-width: 510px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sd-navy);
    font-weight: 700;
    transition: .25s ease;
}

.text-link:hover {
    color: var(--sd-purple);
    transform: translateX(3px);
}

.btn-brand {
    border: 0;
    background: var(--sd-purple);
    color: #fff;
    padding: 13px 23px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(124, 92, 255, .24);
    transition: .25s ease;
}

.btn-brand:hover,
.btn-brand:focus {
    background: #6848ed;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 1px;
}

.rounded-pill {
    font-weight: 700;
}

/* ---------- NAVBAR ---------- */

.navbar {
    padding: 18px 0;
    background: rgba(7, 21, 47, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: .3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.brand-logo {
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: 155px;
    max-height: 48px;
    object-fit: contain;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, .78);
    padding: 9px 13px !important;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

.navbar .dropdown-menu {
    margin-top: 12px;
    padding: 9px;
    min-width: 230px;
    border: 0;
    border-radius: 14px;
    box-shadow: var(--sd-shadow);
}

.navbar .dropdown-item {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
}

.navbar .dropdown-item:hover {
    background: #f0edff;
    color: var(--sd-purple);
}

.navbar-toggler {
    border: 0;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ---------- HERO ---------- */

.hero-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 125px 0 70px;
    color: #fff;
    overflow: hidden;

    background:
        radial-gradient(circle at 80% 30%, rgba(124, 92, 255, .23), transparent 30%),
        radial-gradient(circle at 15% 70%, rgba(59, 130, 246, .12), transparent 28%),
        linear-gradient(135deg, #06132d 0%, #0b1d3d 52%, #07152f 100%);
}

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

.hero-glow-one {
    width: 420px;
    height: 420px;
    right: -130px;
    top: 80px;
    background: rgba(124, 92, 255, .08);
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: 50px;
    background: rgba(45, 212, 191, .06);
}

.hero-row {
    width: 100%;
    min-height: 540px;
}


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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.badge-dot {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8b74ff;
    box-shadow: 0 0 15px #8b74ff;
}

.hero-content h1 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 5.8vw, 76px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.gradient-text {
    display: block;
    background: linear-gradient(
        90deg,
        #fff 0%,
        #a997ff 55%,
        #7c5cff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 680px;
    margin: 24px 0 28px;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.7;
}

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

.hero-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: #fff;
    font-family: var(--sd-heading);
    font-size: 16px;
    line-height: 1.2;
}

.trust-item span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    line-height: 1.3;
}

.trust-line {
    width: 1px;
    height: 34px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, .16);
}

.hero-dashboard-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    padding-bottom: 20px;
}

.dashboard-card {
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .26);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.dashboard-top,
.dashboard-main,
.progress-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-top {
    gap: 15px;
}

.dashboard-top small,
.dashboard-main span {
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.dashboard-top h3 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: #b7ffc9;
    font-size: 11px;
}

.dashboard-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5de68c;
}

.dashboard-main {
    gap: 15px;
    margin-top: 30px;
}

.dashboard-main strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 19px;
}

.growth-positive {
    flex-shrink: 0;
    padding: 8px 11px;
    border-radius: 8px;
    background: rgba(124, 92, 255, .15);
    color: #b9adff;
    font-size: 12px;
    font-weight: 700;
}

.analytics-chart {
    position: relative;
    height: 160px;
    margin: 15px 0 10px;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    inset: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid span {
    display: block;
    border-top: 1px dashed rgba(255, 255, 255, .08);
}

.analytics-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dashboard-metric {
    padding: 13px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
}

.dashboard-metric span,
.dashboard-metric small {
    display: block;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
}

.dashboard-metric strong {
    display: block;
    margin: 3px 0;
    color: #fff;
    font-size: 20px;
}


.floating-result-card {
    position: absolute;
    right: -25px;
    bottom: -5px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: #fff;
    color: var(--sd-navy);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
}

.floating-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 11px;
    background: #eeeaff;
    color: var(--sd-purple);
}

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

.floating-result-card small {
    color: var(--sd-muted);
    font-size: 10px;
    line-height: 1.3;
}

.floating-result-card strong {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.3;
}


.hero-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .08);
}

.hero-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 15px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    font-weight: 600;
}

.hero-bottom-inner span:first-child {
    color: rgba(255, 255, 255, .30);
    text-transform: uppercase;
    letter-spacing: .12em;
}

   /* ABOUT SECTION */

.about-section {
    background: #fff;
}

.about-visual {
    position: relative;
    padding: 20px 35px 35px 0;
}

.about-image-main {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    border-radius: 24px;
    background: #e9edf5;
    box-shadow: var(--sd-shadow);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 110px;
    border-radius: 20px 0 0 0;
    background: var(--sd-purple);
    z-index: -1;
}

.experience-card {
    position: absolute;
    left: -10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    border-radius: 14px;
    background: var(--sd-navy);
    color: #fff;
    box-shadow: var(--sd-shadow);
}

.experience-card strong {
    font-family: var(--sd-heading);
    font-size: 28px;
    color: #a997ff;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.4;
}

.about-features {
    margin-top: 20px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sd-text);
    font-weight: 600;
    font-size: 14px;
}

.feature-check i {
    color: var(--sd-purple);
}

/* ---------- CARDS ---------- */

.services-section,
.results-section {
    background: var(--sd-light);
}

.service-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    background: #fff;
    overflow: hidden;
    transition: .3s ease;
}

.service-card:hover,
.process-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sd-shadow);
}

.service-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: #dfe3eb;
    font-family: var(--sd-heading);
    font-size: 13px;
    font-weight: 800;
}

.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 15px;
    background: #f0edff;
    color: var(--sd-purple);
    font-size: 23px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--sd-navy);
    font-size: 20px;
}

.service-card p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 14px;
}

.featured-service {
    border-color: rgba(124, 92, 255, .28);
    box-shadow: 0 15px 45px rgba(124, 92, 255, .08);
}

/* ---------- RESULTS  ---------- */

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--sd-border);
    border-radius: var(--sd-radius);
    background: #fff;
    transition: .3s ease;
}

.stat-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 14px;
    background: #f0edff;
    color: var(--sd-purple);
    font-size: 22px;
}

.stat-card strong {
    color: var(--sd-purple);
    font-family: var(--sd-heading);
    font-size: 14px;
}

.stat-card > span {
    margin-top: 8px;
    color: var(--sd-navy);
    font-family: var(--sd-heading);
    font-size: 18px;
    font-weight: 700;
}

.stat-card small {
    color: var(--sd-muted);
}
  /* SEO STRATEGY */
.strategy-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(124, 92, 255, .17), transparent 35%),
        var(--sd-navy);
}

.strategy-section .section-title {
    color: #fff;
}

.strategy-description {
    max-width: 600px;
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, .62);
    font-size: 17px;
}

.strategy-list {
    display: grid;
    gap: 12px;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
}

.strategy-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 11px;
    background: rgba(124, 92, 255, .17);
    color: #a997ff;
}

.strategy-item h3 {
    margin: 0 0 5px !important;
    color: #fff !important;
    font-size: 16px !important;
}

.strategy-item p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
}

 /* SEO DASHBOARD */
.seo-dashboard {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.seo-dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.seo-dashboard-header small {
    color: rgba(255, 255, 255, .4);
    font-size: 10px;
    letter-spacing: .1em;
}

.seo-dashboard-header h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 17px;
}

.seo-period {
    height: fit-content;
    padding: 6px 9px;
    border-radius: 8px;
    background: rgba(124, 92, 255, .15);
    color: #b6aaff;
    font-size: 10px;
    white-space: nowrap;
}

.seo-score {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 35px 0;
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    border: 8px solid rgba(124, 92, 255, .25);
    border-top-color: var(--sd-purple);
    border-right-color: var(--sd-purple);
    border-radius: 50%;
}

.score-circle strong {
    color: #fff;
    font-family: var(--sd-heading);
    font-size: 35px;
}

.score-circle span {
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
}

.score-details {
    display: grid;
    flex: 1;
    gap: 9px;
}

.score-details div {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.score-details strong {
    color: #fff;
}

.seo-progress-list {
    display: grid;
    gap: 18px;
}

.progress-label {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
}

.progress-label strong {
    color: #fff;
    font-weight: 600;
}

.custom-progress {
    height: 5px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
}

.custom-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6749ec, #a28eff);
}

/* ---------- PROCESS ---------- */

.process-section {
    background: #fff;
}

.process-wrapper {
   position: relative; 
   margin-top: 25px;
}

.process-line {
    position: absolute;
    top: 38px;
    right: 10%;
    left: 10%;
    border-top: 1px dashed #d9dce5;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--sd-border);
    border-radius: 18px;
    background: #fff;
    transition: .3s ease;
}

.process-number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 50%;
    background: var(--sd-purple);
    color: #fff;
    font-family: var(--sd-heading);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(124, 92, 255, .22);
}

.process-card h3 {
    color: var(--sd-navy);
    font-size: 17px;
}

.process-card p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 13px;
}

/* ---------- HOSPITALITY ---------- */

.case-study-section {
    background: #fff;
}

/* ---------- CTA ---------- */

.cta-section {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(124, 92, 255, .22), transparent 35%),
        var(--sd-navy);
    color: #fff;
}

.cta-section .container > .d-flex {
    align-items: center;
}

.cta-section h2 {
    max-width: 750px;
    font-size: clamp(34px, 4vw, 56px);
    letter-spacing: -.04em;
}

.cta-section p {
    max-width: 680px;
    font-size: 17px;
}

.cta-section .section-label {
    color: #a997ff;
}

.cta-section .d-flex.flex-column.flex-sm-row {
    gap: 12px !important;
}

    /* FOOTER */
.footer {
    padding: 80px 0 25px;
    background: #050f22;
    color: #fff;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 155px;
    max-height: 48px;
    object-fit: contain;
}

.footer-description {
    max-width: 370px;
    color: rgba(255, 255, 255, .48);
    font-size: 14px;
}

/* --- Social Links Footer Fix --- */
.social-links {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 22px !important;
}

.social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.social-links a:hover {
    border-color: var(--sd-purple) !important;
    background: var(--sd-purple) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(124, 92, 255, 0.35) !important;
}

.footer h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
}

.footer > .container > .row a:not(.footer-logo) {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    transition: .2s ease;
}

.footer > .container > .row a:not(.footer-logo):hover {
    color: #fff;
}

.footer p {
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
}

.footer hr {
    margin: 55px 0 22px;
    border-color: rgba(255, 255, 255, .09);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

/*-----RESPONSIVE-------*/

@media (max-width: 1199.98px) {
    .section-padding {
         padding: 65px 0;
    }

       .hero-section {
        min-height: 720px;
        padding: 115px 0 65px;
    }

    .hero-row {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 5.5vw, 64px);
    }

    .hero-description {
        max-width: 600px;
        font-size: 16px;
    }

    .hero-dashboard-wrapper {
        max-width: 410px;
    }

    .dashboard-card {
        padding: 21px;
    }

    .floating-result-card {
        right: -10px;
    }

    .hero-trust {
        margin-top: 32px;
    }

    .navbar .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 75px;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-logo {
        width: 140px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        border-radius: 16px;
        background: rgb(60 75 102 / 98%)
    }

    .navbar .nav-link {
        padding: 11px 5px !important;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
        background: rgba(255, 255, 255, .05);
        box-shadow: none;
    }

    .navbar .dropdown-item {
        color: rgba(255, 255, 255, .75);
    }

    .navbar .dropdown-item:hover {
        color: #fff;
        background: rgba(124, 92, 255, .15);
    }

    .navbar .btn {
        width: 100%;
        margin-top: 8px;
    }

    .hero-section {
        min-height: auto;
        display: block;
        padding: 110px 0 0;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(44px, 7vw, 60px);
    }

    .hero-description {
        max-width: 650px;
        margin: 20px auto 26px;
        font-size: 16px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        margin-top: 32px;
    }

    .hero-dashboard-wrapper {
        max-width: 560px;
        margin: 55px auto 50px;
        padding: 0 10px 20px;
    }

    .dashboard-card {
        padding: 23px;
    }

    .analytics-chart {
        height: 175px;
    }

    .floating-result-card {
        right: 0;
        bottom: 0;
    }

    .hero-bottom {
        position: relative;
    }

    .hero-bottom-inner {
        min-height: 62px;
        padding: 16px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 22px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .section-heading-row > div:last-child {
        max-width: 100%;
    }

    .about-visual {
        max-width: 700px;
        margin: 0 auto;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 55px 0;
    }

    .section-title {
        font-size: 35px;
    }

    .section-description {
        font-size: 15px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-content {
        padding: 0 5px;
    }

    .hero-badge {
        display: inline-flex;
        max-width: 100%;
        padding: 8px 11px;
        font-size: 9px;
        letter-spacing: .055em;
        line-height: 1.4;
    }

    .hero-content h1 {
        font-size: clamp(39px, 10vw, 52px);
        line-height: 1.04;
        letter-spacing: -.045em;
    }

    .hero-description {
        margin-top: 18px;
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .hero-trust {
        gap: 12px;
        margin-top: 30px;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item span {
        font-size: 9px;
    }

    .trust-line {
        height: 28px;
    }

    .hero-dashboard-wrapper {
        margin-top: 45px;
        margin-bottom: 45px;
        padding: 0 5px 20px;
    }

    .dashboard-card {
        padding: 18px;
        border-radius: 19px;
    }

    .dashboard-top h3 {
        font-size: 15px;
    }

    .dashboard-top small,
    .dashboard-main span {
        font-size: 9px;
    }

    .dashboard-main {
        margin-top: 24px;
    }

    .dashboard-main strong {
        font-size: 17px;
    }

    .growth-positive {
        padding: 7px 9px;
        font-size: 10px;
    }

    .analytics-chart {
        height: 135px;
        margin-top: 12px;
    }

    .dashboard-metric {
        padding: 11px;
    }

    .dashboard-metric strong {
        font-size: 18px;
    }

    .dashboard-metric span,
    .dashboard-metric small {
        font-size: 9px;
    }

    .floating-result-card {
        right: 0;
        bottom: 0;
        padding: 11px 13px;
        gap: 9px;
    }

    .floating-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 9px;
        font-size: 14px;
    }

    .floating-result-card small {
        font-size: 8px;
    }

    .floating-result-card strong {
        font-size: 12px;
    }

    .hero-bottom-inner {
        padding: 15px 0;
        gap: 8px 14px;
        font-size: 9px;
        line-height: 1.4;
    }

    .hero-bottom-inner span:first-child {
        width: 100%;
        text-align: center;
    }
    .about-visual {
        padding-right: 12px;
        padding-bottom: 20px;
    }

    .about-image-main,
    .about-image-main img {
        min-height: 330px;
    }

    .experience-card {
        left: 5px;
        bottom: 0;
    }

    .service-card,
    .process-card,
    .stat-card {
        padding: 24px;
    }

    .seo-dashboard {
        padding: 20px;
    }

    .seo-score {
        gap: 18px;
    }

    .score-circle {
        width: 95px;
        height: 95px;
        flex-basis: 95px;
    }

    .score-circle strong {
        font-size: 28px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .footer {
        padding-top: 65px;
    }

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

@media (max-width: 575.98px) {
    .section-padding {
        padding: 48px 0;
    }
    .container {
        --bs-gutter-x: 1.5rem;
    }

    .section-title {
        font-size: 31px;
    }

   .hero-section {
        padding-top: 92px;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 14px;
    }

    .hero-content h1 {
        font-size: 41px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-line {
        margin: 0 2px;
    }

    .trust-item strong {
        font-size: 13px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .hero-dashboard-wrapper {
        margin-top: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .dashboard-card {
        padding: 16px;
        border-radius: 17px;
    }

    .dashboard-top {
        gap: 8px;
    }

    .dashboard-top h3 {
        font-size: 14px;
    }

    .dashboard-status {
        font-size: 9px;
    }

    .dashboard-main {
        gap: 8px;
    }

    .dashboard-main strong {
        font-size: 16px;
    }

    .growth-positive {
        font-size: 9px;
    }

    .analytics-chart {
        height: 115px;
    }

    .floating-result-card {
        right: 0;
        transform: scale(.88);
        transform-origin: right bottom;
    }

    .hero-bottom-inner {
        gap: 7px 12px;
    }

    .seo-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-score {
        align-items: flex-start;
        flex-direction: column;
    }

    .score-circle {
        width: 100px;
        height: 100px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    
}


@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-trust {
        gap: 6px;
    }

    .trust-item strong {
        font-size: 12px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .trust-line {
        height: 25px;
    }

    .dashboard-card {
        padding: 14px;
    }

    .dashboard-top h3 {
        font-size: 13px;
    }

    .dashboard-main strong {
        font-size: 14px;
    }

    .analytics-chart {
        height: 100px;
    }

    .dashboard-metric {
        padding: 9px;
    }

    .dashboard-metric strong {
        font-size: 16px;
    }
}


@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}