:root {
    --brand-yellow: #FFC412;
    --brand-yellow-dark: #E0A500;
    --brand-yellow-soft: #FFF4C7;

    --brand-black: #000000;
    --brand-gray: #4F4F4F;

    --bg: #F7F7F5;
    --surface: #FFFFFF;
    --surface-soft: #F1F1EE;

    --dark: #0A0A0A;
    --dark-soft: #161616;
    --dark-card: #202020;

    --text: #171717;
    --text-soft: #666666;
    --text-light: #F8F8F6;

    --primary: #1B1B1B;
    --primary-dark: #000000;
    --primary-light: #FFF4C7;

    --accent: #FFC412;

    --border: #E3E3DF;
    --border-dark: rgba(255, 255, 255, .12);

    --container: 1180px;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;

    --shadow: 0 25px 70px rgba(0, 0, 0, .08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
    letter-spacing: -.035em;
}

p {
    margin-top: 0;
}

::selection {
    background: var(--brand-yellow);
    color: #000;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    background: #fff;
    padding: 12px 18px;
}

.skip-link:focus {
    top: 20px;
}

/* Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}

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

.button-primary {
    background: var(--brand-yellow);
    color: #111;
    box-shadow: 0 12px 30px rgba(255,196,18,.2);
}

.button-primary:hover {
    background: var(--brand-yellow-dark);
    color: #000;
}

.button-secondary {
    background: #fff;
    border-color: #dcdcd8;
    color: var(--text);
}

.button-light {
    background: var(--brand-yellow);
    color: #111;
}

.button-header {
    min-height: 44px;
    padding: 0 18px;
    background: #111;
    color: #fff;
    font-size: 13px;
}

.button-header:hover {
    background: var(--brand-yellow);
    color: #111;
}

/* Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--brand-gray);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-yellow);
    box-shadow: 0 0 0 5px rgba(255,196,18,.15);
}

.eyebrow-dark {
    color: var(--brand-yellow);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.94);
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    backdrop-filter: blur(16px);
}

.header-container {
    width: min(1260px, calc(100% - 48px));
    min-height: 84px;
    margin-inline: auto;
    display: flex;
    align-items: center;
}

.site-brand {
    flex: 1;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-symbol {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: var(--brand-yellow);
    color: #111;
    font-family: Georgia, serif;
    font-weight: 700;
}

.brand-name {
    color: #4F4F4F;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.035em;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-header .custom-logo {
    width: auto;
    height: 50px;
    max-width: 220px;
    object-fit: contain;
}

.site-footer .custom-logo {
    width: auto;
    height: 56px;
    max-width: 240px;
    object-fit: contain;
}

.desktop-navigation {
    display: flex;
    justify-content: center;
}

.main-menu,
.main-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-menu > li > a {
    display: block;
    padding: 11px 13px;
    border-radius: 8px;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.main-menu > li > a:hover {
    color: #000;
    background: #fff7da;
}

.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
}

.mobile-menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.mobile-navigation {
    display: none;
}

/* Hero */
.hero,
.service-hero,
.wp-page-hero,
.marketing-page-hero,
.ads-page-hero,
.about-hero,
.services-page-hero,
.blog-hero,
.contact-page,
.article-header,
.legal-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#fff 0%,#f7f7f5 100%);
}

.hero {
    min-height: 820px;
    padding: 180px 0 110px;
}

.service-hero,
.about-hero,
.services-page-hero,
.blog-hero {
    padding: 175px 0 110px;
}

.contact-page {
    padding: 165px 0 110px;
}

.hero::before,
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hero-glow,
.service-hero-glow,
.about-hero-glow,
.services-page-glow,
.blog-hero-glow,
.contact-page-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    background: rgba(255,196,18,.13);
}

.hero-glow-one {
    top: 50px;
    left: -150px;
    width: 450px;
    height: 450px;
}

.hero-glow-two {
    right: -100px;
    bottom: 0;
    width: 420px;
    height: 420px;
    background: rgba(79,79,79,.08);
}

.service-hero-glow,
.about-hero-glow,
.services-page-glow,
.blog-hero-glow,
.contact-page-glow {
    width: 650px;
    height: 650px;
    right: -240px;
    top: -120px;
}

.hero-grid,
.service-hero-grid,
.about-hero-grid,
.services-page-hero-grid,
.blog-hero-grid,
.contact-page-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 76px;
    align-items: center;
}

.contact-page-grid {
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
}

.hero h1,
.service-hero-copy h1,
.about-hero h1,
.services-page-copy h1,
.blog-hero h1,
.contact-page-copy h1 {
    margin-bottom: 26px;
    font-size: clamp(48px,5.7vw,78px);
    font-weight: 800;
}

.hero h1 span,
.service-hero-copy h1 span,
.about-hero h1 span,
.services-page-copy h1 span,
.blog-hero h1 span,
.contact-page-copy h1 span {
    display: block;
    width: fit-content;
    color: #111;
    background-image: linear-gradient(to top, rgba(255,196,18,.48) 0, rgba(255,196,18,.48) 22%, transparent 22%, transparent 100%);
}

.hero-description,
.service-hero-description,
.hero p,
.about-hero p,
.services-page-copy > p,
.blog-hero p,
.contact-page-copy > p {
    max-width: 650px;
    color: var(--text-soft);
    font-size: 18px;
}

.hero-actions,
.service-hero-actions,
.about-hero-actions,
.services-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
    color: #545c70;
    font-size: 13px;
    font-weight: 600;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-yellow);
}

/* Dashboard */
.hero-visual,
.service-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard,
.generic-hero-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 590px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 40px 90px rgba(0,0,0,.12);
}

.dashboard-top {
    height: 54px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d5dae5;
}

.browser-url {
    margin-inline: auto;
    padding: 6px 22px;
    border-radius: 7px;
    background: var(--bg);
    color: #8b92a4;
    font-size: 11px;
}

.dashboard-body {
    min-height: 390px;
    display: grid;
    grid-template-columns: 70px 1fr;
}

.dashboard-sidebar {
    padding: 24px 18px;
    border-right: 1px solid var(--border);
}

.sidebar-logo {
    width: 29px;
    height: 29px;
    margin-bottom: 32px;
    border-radius: 9px;
    background: var(--brand-yellow);
}

.sidebar-item {
    width: 28px;
    height: 8px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: #e7eaf1;
}

.sidebar-item.active {
    background: var(--brand-yellow);
}

.dashboard-main {
    padding: 26px;
}

.dashboard-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dashboard-heading small {
    display: block;
    color: #949bad;
    font-size: 10px;
}

.dashboard-heading strong {
    display: block;
    margin-top: 3px;
    font-family: "Manrope";
    font-size: 19px;
}

.dashboard-period {
    align-self: center;
    padding: 6px 10px;
    border-radius: 7px;
    background: var(--bg);
    color: #7f8799;
    font-size: 10px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.metric-card {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
}

.metric-card span,
.metric-card small {
    display: block;
    color: #8b92a4;
    font-size: 9px;
}

.metric-card strong {
    display: inline-block;
    margin: 7px 3px 4px 0;
    font-family: "Manrope";
    font-size: 24px;
}

.chart-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.chart {
    position: relative;
    height: 145px;
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: repeating-linear-gradient(to bottom,#fff,#fff 35px,#edf0f6 36px);
}

.chart-line {
    position: absolute;
    inset: 20px 10px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.chart-line span {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top,#d99f00,#ffc412);
}

.chart-line span:nth-child(1){height:30%}
.chart-line span:nth-child(2){height:48%}
.chart-line span:nth-child(3){height:40%}
.chart-line span:nth-child(4){height:67%}
.chart-line span:nth-child(5){height:58%}
.chart-line span:nth-child(6){height:83%}

/* Generic visual */
.generic-hero-card {
    min-height: 380px;
    padding: 34px;
    background: #0a0a0a;
    color: #fff;
}

.generic-hero-card > span {
    color: #9b9b95;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.generic-hero-card > strong {
    display: block;
    margin-top: 90px;
    font-family: "Manrope";
    font-size: 42px;
    line-height: 1.05;
}

.generic-bars {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: end;
    gap: 14px;
    height: 100px;
    margin-top: 40px;
}

.generic-bars i {
    display: block;
    border-radius: 7px 7px 0 0;
    background: var(--brand-yellow);
}

.generic-bars i:nth-child(1){height:30%}
.generic-bars i:nth-child(2){height:60%}
.generic-bars i:nth-child(3){height:48%}
.generic-bars i:nth-child(4){height:85%}

/* headings */
.section-heading {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(260px,.55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 58px;
}

.section-heading h2,
.center-heading h2 {
    margin-bottom: 0;
    font-size: clamp(38px,4vw,58px);
    font-weight: 800;
}

.section-heading p {
    color: var(--text-soft);
}

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

/* services home */
.services {
    background: #fff;
}

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

.service-card {
    position: relative;
    min-height: 350px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #e0c35d;
    box-shadow: var(--shadow);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #a7adba;
    font-size: 11px;
    font-weight: 700;
}

.service-icon,
.why-icon,
.services-page-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 40px;
    border-radius: 13px;
    background: var(--brand-yellow-soft);
    color: #171717;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.service-card p {
    color: var(--text-soft);
    font-size: 14px;
}

.text-link {
    position: absolute;
    left: 28px;
    bottom: 27px;
    display: inline-flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

/* philosophy */
.philosophy,
.service-final-cta,
.final-cta,
.about-final-cta,
.services-final-cta {
    background: #090909;
    color: #fff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 110px;
    align-items: center;
}

.philosophy-copy h2 {
    font-size: clamp(42px,4.5vw,64px);
}

.philosophy-copy p {
    color: #aeb5c8;
}

.principles {
    border-top: 1px solid var(--border-dark);
}

.principle {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 22px 8px;
    border-bottom: 1px solid var(--border-dark);
}

.principle span {
    color: #69738e;
    font-size: 12px;
}

.principle strong {
    font-family: "Manrope";
    font-size: 21px;
}

/* Why */
.why-section {
    background: #fff;
}

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

.why-grid article,
.generic-service-grid article,
.about-principles-grid article {
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.why-grid h3,
.generic-service-grid h3,
.about-principles-grid h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.why-grid p,
.generic-service-grid p,
.about-principles-grid p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 13px;
}

/* Generic service */
.generic-service-section,
.about-principles-section,
.main-services-page-section,
.blog-list-section {
    background: var(--bg);
}

.generic-service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.generic-service-grid article > span,
.about-principles-grid article > span {
    display: block;
    margin-bottom: 45px;
    color: #a97900;
    font-size: 10px;
    font-weight: 800;
}

.generic-process-section {
    background: #fff;
}

.generic-process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.generic-process-grid article {
    min-height: 230px;
    padding: 26px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.generic-process-grid article > span {
    display: block;
    margin-bottom: 55px;
    color: #a97900;
    font-size: 10px;
    font-weight: 800;
}

.service-final-cta,
.final-cta,
.about-final-cta,
.services-final-cta {
    padding: 105px 0;
}

.service-final-cta-inner,
.final-cta-inner,
.about-final-grid,
.services-final-grid {
    display: grid;
    grid-template-columns: 1fr .6fr;
    gap: 100px;
    align-items: end;
}

.service-final-cta h2,
.final-cta h2,
.about-final-grid h2,
.services-final-grid h2 {
    margin-bottom: 0;
    font-size: clamp(45px,5vw,68px);
}

.service-final-cta p,
.final-cta p,
.about-final-grid p,
.services-final-grid p {
    color: #c5c5c0;
}

/* Services page */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.services-page-card {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.services-page-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 55px;
}

.services-page-card-top > span {
    color: #9fa6b5;
    font-size: 9px;
    font-weight: 800;
}

.services-page-card h3 {
    font-size: 30px;
}

.services-page-card p {
    color: var(--text-soft);
}

.services-page-link {
    margin-top: auto;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* About */
.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.about-hero-visual {
    position: relative;
    min-height: 450px;
    display: grid;
    place-items: center;
}

.about-visual-card {
    width: 80%;
    min-height: 360px;
    padding: 35px;
    border-radius: 30px;
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 35px 80px rgba(0,0,0,.16);
    transform: rotate(-3deg);
}

.about-visual-label {
    margin-bottom: 65px;
    color: #737f9c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.about-visual-main {
    display: flex;
    flex-direction: column;
}

.about-visual-main span {
    padding: 13px 0;
    border-bottom: 1px solid var(--border-dark);
    font-family: "Manrope";
    font-size: 26px;
    font-weight: 700;
}

/* Contact */
.contact-page-copy {
    position: sticky;
    top: 120px;
}

.contact-benefits {
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

.contact-benefits article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-benefits article > span {
    color: #a97900;
    font-size: 9px;
    font-weight: 800;
}

.contact-benefits strong {
    font-family: "Manrope";
    font-size: 14px;
}

.contact-benefits p {
    margin: 4px 0 0;
    color: var(--text-soft);
    font-size: 11px;
}

.contact-form-card {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.contact-form-heading {
    margin-bottom: 35px;
}

.contact-form-heading small {
    color: #a97900;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.contact-form-heading h2 {
    margin: 7px 0 10px;
    font-size: clamp(30px,3vw,42px);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.form-field label {
    color: #42495b;
    font-size: 12px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #fbfcfe;
    color: var(--text);
    outline: none;
}

.form-field input,
.form-field select {
    height: 50px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #c18c00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,196,18,.14);
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px,1px,1px,1px) !important;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 11px;
}

.contact-alert {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 25px;
    padding: 15px 17px;
    border-radius: 11px;
    font-size: 12px;
}

.contact-alert-success {
    border: 1px solid #e9d58f;
    background: #fff9df;
    color: #654a00;
}

.contact-alert-error {
    border: 1px solid #f0c4c4;
    background: #fff4f4;
    color: #9d3e3e;
}

/* Blog */
.blog-hero-grid {
    grid-template-columns: 1fr .7fr;
}

.blog-hero-side {
    display: flex;
    justify-content: flex-end;
}

.blog-hero-card {
    width: 100%;
    max-width: 360px;
    padding: 35px;
    border-radius: 24px;
    background: #0a0a0a;
    color: #fff;
    transform: rotate(3deg);
}

.blog-hero-label {
    display: block;
    margin-bottom: 65px;
    color: #747f9b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.blog-hero-card strong {
    display: block;
    margin-bottom: 12px;
    font-family: "Manrope";
    font-size: 27px;
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.blog-card-image {
    display: block;
    height: 250px;
    overflow: hidden;
    text-decoration: none;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(145deg,#fff3c5,#ffc412);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
    color: #969dad;
    font-size: 9px;
}

.blog-card h2 {
    font-size: 22px;
}

.blog-card h2 a {
    text-decoration: none;
}

.blog-card p {
    color: var(--text-soft);
    font-size: 13px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

/* Article */
.article-header {
    padding: 165px 0 80px;
}

.article-header-inner {
    max-width: 950px;
}

.article-back {
    display: inline-block;
    margin-bottom: 45px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.article-category {
    display: inline-flex;
    padding: 7px 10px;
    margin-bottom: 21px;
    border-radius: 30px;
    background: var(--brand-yellow-soft);
    color: #5c4300;
    font-size: 9px;
    font-weight: 800;
}

.article-header h1 {
    max-width: 950px;
    margin-bottom: 25px;
    font-size: clamp(46px,6vw,76px);
}

.article-excerpt {
    max-width: 780px;
    color: var(--text-soft);
    font-size: 19px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin-top: 32px;
    color: #8991a2;
    font-size: 10px;
}

.article-featured-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 24px;
}

.article-layout {
    display: grid;
    grid-template-columns: 190px minmax(0,760px);
    justify-content: center;
    gap: 70px;
    padding-top: 90px;
    padding-bottom: 110px;
}

.article-sidebar-inner {
    position: sticky;
    top: 120px;
}

.article-content {
    color: #353c4e;
    font-size: 17px;
    line-height: 1.85;
}

.article-content h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 35px;
}

.article-content h3 {
    margin-top: 42px;
    color: var(--text);
    font-size: 26px;
}

/* Legal */
.legal-hero {
    padding: 170px 0 85px;
}

.legal-hero-inner {
    max-width: 900px;
}

.legal-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(48px,6vw,74px);
}

.legal-hero p {
    max-width: 650px;
    color: var(--text-soft);
    font-size: 17px;
}

.legal-content-section {
    padding: 90px 0 120px;
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: 190px minmax(0,760px);
    justify-content: center;
    gap: 70px;
}

.legal-sidebar > span,
.legal-sidebar > strong {
    display: block;
}

.legal-sidebar > span {
    color: #a97900;
    font-size: 8px;
    font-weight: 800;
}

.legal-sidebar > strong {
    margin-top: 11px;
    font-family: "Manrope";
    font-size: 15px;
}

.legal-content {
    color: #3f4658;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    margin: 55px 0 17px;
    color: var(--text);
    font-size: 28px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: #050505;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 75px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 24px;
    color: #8f97a9;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #dfe3ec;
    font-size: 12px;
    text-transform: uppercase;
}

.footer-column a {
    color: #8f97a9;
    font-size: 13px;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--brand-yellow);
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #727b90;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

/* 404 */
.error-page {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    background: linear-gradient(180deg,#fff 0%,#f7f7f5 100%);
}

.error-page-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -220px;
    top: -170px;
    border-radius: 50%;
    background: rgba(255,196,18,.14);
    filter: blur(100px);
}

.error-page-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.error-code {
    margin-bottom: -22px;
    color: rgba(0,0,0,.045);
    font-family: "Manrope";
    font-size: clamp(120px,23vw,280px);
    font-weight: 800;
    line-height: .75;
}

.error-page h1 {
    max-width: 800px;
    font-size: clamp(45px,6vw,72px);
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(255,196,18,.65);
    outline-offset: 3px;
}

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

    .button-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-navigation {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid var(--border);
        transition: max-height .35s ease;
    }

    .mobile-navigation.is-open {
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }

    .mobile-nav-inner {
        width: min(100% - 40px,720px);
        margin: 0 auto;
        padding: 25px 0 35px;
    }

    .mobile-menu,
    .mobile-menu ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 4px;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        font-weight: 600;
    }

    .mobile-cta {
        width: 100%;
        margin-top: 25px;
    }

    .hero-grid,
    .service-hero-grid,
    .about-hero-grid,
    .services-page-hero-grid,
    .blog-hero-grid,
    .contact-page-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid,
    .generic-service-grid,
    .about-principles-grid,
    .blog-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

    .service-final-cta-inner,
    .final-cta-inner,
    .about-final-grid,
    .services-final-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-page-copy {
        position: static;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: none;
    }
}

@media (max-width: 760px) {
    .container,
    .header-container {
        width: min(100% - 32px,var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .hero,
    .service-hero,
    .about-hero,
    .services-page-hero,
    .blog-hero,
    .contact-page {
        min-height: auto;
        padding: 135px 0 75px;
    }

    .hero h1,
    .service-hero-copy h1,
    .about-hero h1,
    .services-page-copy h1,
    .blog-hero h1,
    .contact-page-copy h1 {
        font-size: clamp(42px,12vw,58px);
    }

    .hero-actions,
    .service-hero-actions,
    .about-hero-actions,
    .services-page-actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .service-hero-actions .button,
    .about-hero-actions .button,
    .services-page-actions .button {
        width: 100%;
    }

    .services-grid,
    .generic-service-grid,
    .about-principles-grid,
    .blog-grid,
    .services-page-grid,
    .generic-process-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

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

    .form-field-full {
        grid-column: auto;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .footer-main {
        grid-template-columns: repeat(2,1fr);
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--border);
    }

    .site-header .custom-logo {
        height: 42px;
        max-width: 175px;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================
   EAGLERADS MEANINGFUL HERO VISUALS V2
   Replaces generic dashboards and placeholder cards.
========================================== */

/* shared browser chrome */
.visual-browser-bar {
    height: 50px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    padding: 0 17px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.92);
}

.visual-browser-dots {
    display: flex;
    gap: 6px;
}

.visual-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8d8d4;
}

.visual-browser-address {
    justify-self: center;
    min-width: 130px;
    padding: 6px 14px;
    border-radius: 8px;
    background: #f4f4f1;
    color: #8b8b84;
    font-size: 10px;
    text-align: center;
}


/* ------------------------------------------
   HOME
------------------------------------------ */

.home-solution-visual {
    position: relative;
    min-height: 570px;
    display: block;
}

.home-web-window {
    position: absolute;
    left: 0;
    top: 30px;
    width: 92%;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 90px rgba(0,0,0,.12);
}

.home-web-page {
    padding: 22px;
}

.home-web-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefeb;
}

.home-web-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Manrope";
    font-size: 12px;
    font-weight: 800;
}

.home-web-brand span {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: var(--brand-yellow);
}

.home-web-nav-links {
    display: flex;
    gap: 9px;
}

.home-web-nav-links i {
    display: block;
    width: 32px;
    height: 6px;
    border-radius: 10px;
    background: #e4e4df;
}

.home-web-content {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 25px;
    padding: 32px 0 27px;
}

.home-web-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-web-copy > small {
    margin-bottom: 14px;
    color: #9a7900;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
}

.home-web-copy > strong {
    max-width: 330px;
    font-family: "Manrope";
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.home-web-copy > p {
    margin: 13px 0 20px;
    color: #77776f;
    font-size: 9px;
}

.home-web-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.home-web-art {
    position: relative;
    min-height: 215px;
    overflow: hidden;
    border-radius: 17px;
    background: #111;
}

.home-web-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

.home-web-art-shape {
    position: absolute;
    border-radius: 22px;
    transform: rotate(35deg);
}

.home-web-art-shape.shape-one {
    width: 150px;
    height: 150px;
    right: -35px;
    top: -35px;
    background: var(--brand-yellow);
}

.home-web-art-shape.shape-two {
    width: 95px;
    height: 95px;
    left: -25px;
    bottom: -25px;
    border: 1px solid rgba(255,255,255,.22);
}

.home-web-art-card {
    position: absolute;
    z-index: 2;
    left: 25px;
    top: 38px;
    min-width: 105px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    color: #fff;
}

.home-web-art-card.card-two {
    left: auto;
    right: 22px;
    top: auto;
    bottom: 25px;
}

.home-web-art-card span,
.home-web-art-card strong,
.home-web-art-card small {
    display: block;
}

.home-web-art-card span {
    color: #aaa;
    font-size: 7px;
}

.home-web-art-card strong {
    margin-top: 8px;
    font-size: 12px;
}

.home-web-art-card small {
    margin-top: 2px;
    color: #bdbdb7;
    font-size: 7px;
}

.home-web-services {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #efefeb;
}

.home-web-services span {
    padding: 14px 8px 2px;
    color: #6e6e68;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
}

.home-phone {
    position: absolute;
    z-index: 4;
    right: -8px;
    bottom: 2px;
    width: 180px;
    height: 355px;
    padding: 8px;
    border: 3px solid #161616;
    border-radius: 30px;
    background: #161616;
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
    transform: rotate(3deg);
}

.home-phone-notch {
    position: absolute;
    z-index: 3;
    top: 11px;
    left: 50%;
    width: 55px;
    height: 14px;
    border-radius: 20px;
    background: #161616;
    transform: translateX(-50%);
}

.home-phone-screen {
    height: 100%;
    padding: 35px 14px 15px;
    border-radius: 22px;
    background: #fff;
}

.home-phone-logo {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    border-radius: 9px;
    background: var(--brand-yellow);
    font-family: "Manrope";
    font-size: 11px;
    font-weight: 900;
}

.home-phone-screen > small {
    color: #9a7900;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .1em;
}

.home-phone-screen > strong {
    display: block;
    margin: 9px 0 18px;
    font-family: "Manrope";
    font-size: 16px;
    line-height: 1.14;
}

.home-phone-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #ebebe7;
    color: #65655f;
    font-size: 8px;
}

.home-phone-card i {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff4c7;
    color: #664b00;
    font-style: normal;
    font-weight: 800;
}

.home-phone-button {
    margin-top: 18px;
    padding: 9px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

.home-flow-card {
    position: absolute;
    z-index: 5;
    left: 38px;
    bottom: -5px;
    min-width: 285px;
    padding: 15px 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 45px rgba(0,0,0,.09);
}

.home-flow-card > small {
    display: block;
    margin-bottom: 9px;
    color: #999991;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.home-flow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-flow span {
    padding: 6px 8px;
    border-radius: 7px;
    background: #f4f4f1;
    font-size: 8px;
    font-weight: 700;
}

.home-flow i {
    color: #a2a29b;
    font-size: 9px;
    font-style: normal;
}

.home-flow .home-flow-result {
    background: var(--brand-yellow);
    color: #111;
}


/* ------------------------------------------
   SERVICES — CONNECTED SYSTEM
------------------------------------------ */

.services-system-visual {
    min-height: 520px;
}

.services-system {
    position: relative;
    width: 100%;
    max-width: 610px;
    height: 500px;
    margin-inline: auto;
}

.services-system-line {
    position: absolute;
    z-index: 0;
    background: #deded9;
}

.services-system-line.line-horizontal {
    left: 16%;
    right: 16%;
    top: 50%;
    height: 1px;
}

.services-system-line.line-vertical {
    top: 16%;
    bottom: 16%;
    left: 50%;
    width: 1px;
}

.services-hub {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 155px;
    height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 10px solid #fff;
    border-radius: 50%;
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 25px 55px rgba(0,0,0,.16);
    transform: translate(-50%,-50%);
}

.services-hub > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 11px;
    background: var(--brand-yellow);
    color: #111;
    font-family: "Manrope";
    font-weight: 900;
}

.services-hub strong {
    font-family: "Manrope";
    font-size: 14px;
}

.services-hub small {
    margin-top: 3px;
    color: #8f8f88;
    font-size: 8px;
}

.services-node {
    position: absolute;
    z-index: 3;
    width: 205px;
    min-height: 112px;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 13px;
    align-items: center;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.services-node-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-yellow-soft);
    color: #111;
    font-weight: 900;
}

.services-node small,
.services-node strong,
.services-node span {
    display: block;
}

.services-node small {
    margin-bottom: 3px;
    color: #a8a8a0;
    font-size: 7px;
}

.services-node strong {
    font-family: "Manrope";
    font-size: 13px;
}

.services-node span {
    margin-top: 4px;
    color: #8a8a83;
    font-size: 7px;
}

.node-web {
    left: 0;
    top: 45px;
}

.node-wordpress {
    right: 0;
    top: 45px;
}

.node-marketing {
    left: 0;
    bottom: 48px;
}

.node-ads {
    right: 0;
    bottom: 48px;
}

.services-system-caption {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #77776f;
    font-size: 9px;
    font-weight: 700;
    transform: translateX(-50%);
    white-space: nowrap;
}

.services-system-caption span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-yellow);
}


/* ------------------------------------------
   DESIGN WEB — REAL SITE + MOBILE
------------------------------------------ */

.design-showcase {
    position: relative;
    min-height: 560px;
    display: block;
}

.design-desktop {
    position: absolute;
    left: 0;
    top: 20px;
    width: 91%;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 35px 85px rgba(0,0,0,.12);
}

.design-demo-page {
    padding: 20px;
}

.design-demo-nav {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #ededE8;
}

.design-demo-logo {
    font-family: "Manrope";
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.design-demo-logo span {
    color: #c39200;
}

.design-demo-links {
    display: flex;
    gap: 8px;
}

.design-demo-links i {
    width: 26px;
    height: 5px;
    border-radius: 8px;
    background: #dddcd6;
}

.design-demo-nav-button {
    padding: 7px 10px;
    border-radius: 7px;
    background: #111;
    color: #fff;
    font-size: 7px;
    font-weight: 800;
}

.design-demo-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 25px;
    padding: 27px 0;
}

.design-demo-copy small {
    color: #a17a00;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.design-demo-copy > strong {
    display: block;
    max-width: 290px;
    margin-top: 10px;
    font-family: "Manrope";
    font-size: 25px;
    line-height: 1.09;
}

.design-demo-copy > p {
    max-width: 260px;
    margin: 12px 0 18px;
    color: #7f7e77;
    font-size: 8px;
}

.design-demo-button {
    display: inline-block;
    padding: 9px 11px;
    border-radius: 8px;
    background: var(--brand-yellow);
    color: #111;
    font-size: 7px;
    font-weight: 800;
}

.design-demo-image {
    position: relative;
    min-height: 205px;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(135deg,#181818 0%,#181818 52%,#ffc412 52%,#ffc412 100%);
}

.design-image-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.design-demo-image > span {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #fff;
    font-family: "Manrope";
    font-size: 44px;
    font-weight: 800;
}

.design-demo-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid #edede8;
}

.design-demo-features div {
    padding: 14px 8px 2px;
    text-align: center;
}

.design-demo-features span,
.design-demo-features strong {
    display: block;
}

.design-demo-features span {
    color: #b3b3ac;
    font-size: 6px;
}

.design-demo-features strong {
    margin-top: 3px;
    font-size: 8px;
}

.design-mobile {
    position: absolute;
    z-index: 5;
    right: -4px;
    bottom: 5px;
    width: 170px;
    height: 345px;
    padding: 7px;
    border: 3px solid #111;
    border-radius: 29px;
    background: #111;
    box-shadow: 0 30px 55px rgba(0,0,0,.2);
    transform: rotate(3deg);
}

.design-mobile-notch {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 10px;
    width: 52px;
    height: 14px;
    border-radius: 20px;
    background: #111;
    transform: translateX(-50%);
}

.design-mobile-content {
    height: 100%;
    padding: 34px 13px 13px;
    border-radius: 21px;
    background: #fff;
}

.design-mobile-brand {
    margin-bottom: 32px;
    font-family: "Manrope";
    font-size: 10px;
    font-weight: 900;
}

.design-mobile-content > small {
    color: #a17a00;
    font-size: 6px;
    font-weight: 800;
}

.design-mobile-content > strong {
    display: block;
    margin: 8px 0 14px;
    font-family: "Manrope";
    font-size: 14px;
    line-height: 1.15;
}

.design-mobile-picture {
    height: 85px;
    margin-bottom: 14px;
    border-radius: 11px;
    background: linear-gradient(135deg,#111 0%,#111 58%,#ffc412 58%);
}

.design-mobile-button {
    padding: 8px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    text-align: center;
}

.design-tech-tags {
    position: absolute;
    z-index: 6;
    left: 35px;
    bottom: 3px;
    display: flex;
    gap: 7px;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.design-tech-tags span {
    padding: 6px 8px;
    border-radius: 7px;
    background: #f4f4f1;
    color: #64645e;
    font-size: 7px;
    font-weight: 700;
}


/* ------------------------------------------
   MARKETING — STRATEGY SYSTEM
------------------------------------------ */

.marketing-strategy-visual {
    position: relative;
    min-height: 555px;
    display: block;
}

.marketing-board {
    position: absolute;
    left: 0;
    top: 20px;
    width: 94%;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 80px rgba(0,0,0,.1);
}

.marketing-board-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecece7;
}

.marketing-board-head small,
.marketing-board-head strong {
    display: block;
}

.marketing-board-head small {
    color: #a4a49d;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.marketing-board-head strong {
    margin-top: 3px;
    font-family: "Manrope";
    font-size: 15px;
}

.marketing-board-head > span {
    padding: 7px 9px;
    border-radius: 30px;
    background: var(--brand-yellow-soft);
    color: #684d00;
    font-size: 7px;
    font-weight: 800;
}

.marketing-objective {
    margin: 22px 0;
    padding: 17px;
    border-radius: 14px;
    background: #111;
    color: #fff;
}

.marketing-objective small,
.marketing-objective strong {
    display: block;
}

.marketing-objective small {
    color: var(--brand-yellow);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.marketing-objective strong {
    max-width: 360px;
    margin-top: 7px;
    font-family: "Manrope";
    font-size: 17px;
    line-height: 1.15;
}

.marketing-path {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}

.marketing-path article {
    min-height: 96px;
    padding: 13px;
    border: 1px solid #e8e8e3;
    border-radius: 12px;
    background: #fafaf8;
}

.marketing-path article > span,
.marketing-path article > strong,
.marketing-path article > small {
    display: block;
}

.marketing-path article > span {
    color: #afafaa;
    font-size: 6px;
}

.marketing-path article > strong {
    margin-top: 18px;
    font-size: 9px;
}

.marketing-path article > small {
    margin-top: 2px;
    color: #93938c;
    font-size: 6px;
}

.marketing-path > i {
    color: #aaa9a3;
    font-size: 9px;
    font-style: normal;
}

.marketing-lower {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 13px;
    margin-top: 14px;
}

.marketing-calendar,
.marketing-insights {
    padding: 15px;
    border: 1px solid #e8e8e3;
    border-radius: 13px;
}

.marketing-mini-title {
    margin-bottom: 12px;
    font-size: 8px;
    font-weight: 800;
}

.marketing-calendar-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5px;
}

.marketing-calendar-grid span {
    height: 22px;
    border-radius: 5px;
    background: #f0f0ec;
}

.marketing-calendar-grid span.active {
    background: var(--brand-yellow);
}

.marketing-insights p {
    margin: 0;
    padding: 6px 0;
    border-bottom: 1px solid #ededE8;
    color: #72726b;
    font-size: 7px;
}

.marketing-side-note {
    position: absolute;
    z-index: 5;
    right: -5px;
    bottom: 0;
    width: 225px;
    padding: 18px;
    border-radius: 17px;
    background: #111;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0,0,0,.18);
}

.marketing-side-note small,
.marketing-side-note strong,
.marketing-side-note span {
    display: block;
}

.marketing-side-note small {
    color: var(--brand-yellow);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.marketing-side-note strong {
    margin-top: 10px;
    font-family: "Manrope";
    font-size: 19px;
    line-height: 1.08;
}

.marketing-side-note span {
    margin-top: 16px;
    color: #9f9f98;
    font-size: 7px;
}


/* ------------------------------------------
   WORDPRESS — CONTROL CENTER
------------------------------------------ */

.wordpress-control-visual {
    position: relative;
    min-height: 550px;
    display: block;
}

.wp-control-panel {
    position: absolute;
    left: 0;
    top: 20px;
    width: 96%;
    min-height: 445px;
    display: grid;
    grid-template-columns: 68px 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 80px rgba(0,0,0,.11);
}

.wp-control-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 24px 0;
    border-right: 1px solid #e9e9e4;
    background: #111;
}

.wp-control-logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 10px;
    background: var(--brand-yellow);
    color: #111;
    font-family: Georgia, serif;
    font-weight: 800;
}

.wp-control-sidebar > span {
    width: 26px;
    height: 6px;
    border-radius: 10px;
    background: #3a3a38;
}

.wp-control-sidebar > span.active {
    background: var(--brand-yellow);
}

.wp-control-main {
    padding: 25px;
}

.wp-control-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}

.wp-control-head small,
.wp-control-head strong {
    display: block;
}

.wp-control-head small {
    color: #9c9c95;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.wp-control-head strong {
    margin-top: 4px;
    font-family: "Manrope";
    font-size: 17px;
}

.wp-control-status {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 30px;
    background: #f4f4f1;
    color: #696962;
    font-size: 7px;
    font-weight: 700;
}

.wp-control-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-yellow);
}

.wp-control-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.wp-control-grid article {
    min-height: 135px;
    padding: 15px;
    border: 1px solid #e8e8e3;
    border-radius: 14px;
    background: #fafaf8;
}

.wp-control-card-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 9px;
    background: var(--brand-yellow-soft);
    color: #4e3a00;
    font-size: 11px;
    font-weight: 900;
}

.wp-control-grid article > span,
.wp-control-grid article > strong,
.wp-control-grid article > small {
    display: block;
}

.wp-control-grid article > span {
    color: #9b9b94;
    font-size: 6px;
    font-weight: 700;
}

.wp-control-grid article > strong {
    margin-top: 3px;
    font-size: 9px;
}

.wp-control-grid article > small {
    margin-top: 3px;
    color: #92928b;
    font-size: 6px;
}

.wp-control-footer {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.wp-control-footer span {
    padding: 7px 9px;
    border-radius: 7px;
    background: #f1f1ed;
    color: #74746d;
    font-size: 7px;
    font-weight: 700;
}

.wp-floating-alert {
    position: absolute;
    z-index: 5;
    right: -4px;
    bottom: 13px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 22px 50px rgba(0,0,0,.1);
}

.wp-floating-alert > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--brand-yellow);
    color: #111;
    font-weight: 900;
}

.wp-floating-alert small,
.wp-floating-alert strong {
    display: block;
}

.wp-floating-alert small {
    color: #9c9c95;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .09em;
}

.wp-floating-alert strong {
    margin-top: 2px;
    font-size: 10px;
}


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

@media (max-width: 1080px) {

    .home-solution-visual,
    .design-showcase,
    .marketing-strategy-visual,
    .wordpress-control-visual {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .services-system-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

}


@media (max-width: 760px) {

    .home-solution-visual {
        min-height: 500px;
    }

    .home-web-window {
        width: 100%;
    }

    .home-web-content {
        grid-template-columns: 1fr;
    }

    .home-web-art {
        display: none;
    }

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

    .home-phone {
        right: 5px;
        width: 145px;
        height: 290px;
    }

    .home-flow-card {
        left: 8px;
        min-width: 255px;
    }

    .services-system {
        height: 585px;
    }

    .services-system-line {
        display: none;
    }

    .services-hub {
        top: 50%;
        width: 125px;
        height: 125px;
    }

    .services-node {
        width: 180px;
        min-height: 95px;
    }

    .node-web,
    .node-marketing {
        left: 0;
    }

    .node-wordpress,
    .node-ads {
        right: 0;
    }

    .node-web,
    .node-wordpress {
        top: 25px;
    }

    .node-marketing,
    .node-ads {
        bottom: 30px;
    }

    .design-showcase {
        min-height: 500px;
    }

    .design-desktop {
        width: 100%;
    }

    .design-demo-hero {
        grid-template-columns: 1fr;
    }

    .design-demo-image {
        display: none;
    }

    .design-mobile {
        width: 142px;
        height: 290px;
        right: 5px;
    }

    .design-tech-tags {
        left: 7px;
        max-width: 230px;
        flex-wrap: wrap;
    }

    .marketing-strategy-visual {
        min-height: 600px;
    }

    .marketing-board {
        width: 100%;
        padding: 18px;
    }

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

    .marketing-path > i {
        display: none;
    }

    .marketing-lower {
        grid-template-columns: 1fr;
    }

    .marketing-side-note {
        right: 5px;
        bottom: -10px;
    }

    .wordpress-control-visual {
        min-height: 535px;
    }

    .wp-control-panel {
        width: 100%;
        grid-template-columns: 50px 1fr;
    }

    .wp-control-main {
        padding: 17px;
    }

    .wp-control-grid {
        grid-template-columns: 1fr;
    }

    .wp-control-grid article {
        min-height: 95px;
    }

    .wp-control-grid article:nth-child(n+4) {
        display: none;
    }

    .wp-control-footer {
        flex-wrap: wrap;
    }

}

/* ==========================================
   EAGLERADS V1.2 — LOGO + ABOUT + BLOG
========================================== */

/* Force theme logo assets */
.eaglerads-logo-link,
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.eaglerads-header-logo {
    display: block;
    width: auto;
    height: 50px;
    max-width: 235px;
    object-fit: contain;
}

.eaglerads-footer-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 255px;
    object-fit: contain;
}


/* ------------------------------------------
   ABOUT — METHOD VISUAL
------------------------------------------ */

.about-method-visual {
    min-height: 535px;
    display: block;
}

.about-method-board {
    position: absolute;
    left: 0;
    top: 20px;
    width: 96%;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 35px 85px rgba(0,0,0,.1);
}

.about-method-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid #ecece7;
}

.about-method-head small,
.about-method-head strong {
    display: block;
}

.about-method-head small {
    color: #9c9c95;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.about-method-head strong {
    max-width: 320px;
    margin-top: 7px;
    font-family: "Manrope";
    font-size: 22px;
    line-height: 1.08;
}

.about-method-head > span {
    padding: 7px 10px;
    border-radius: 30px;
    background: var(--brand-yellow-soft);
    color: #6d5100;
    font-size: 7px;
    font-weight: 800;
}

.about-method-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 7px;
    align-items: center;
    margin-top: 24px;
}

.about-method-flow article {
    min-height: 155px;
    padding: 15px;
    border: 1px solid #e8e8e3;
    border-radius: 14px;
    background: #fafaf8;
}

.about-method-flow article > span,
.about-method-flow article > small,
.about-method-flow article > strong {
    display: block;
}

.about-method-flow article > span {
    color: #aaa9a2;
    font-size: 7px;
}

.about-method-flow article > small {
    margin-top: 24px;
    color: #9d7900;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .08em;
}

.about-method-flow article > strong {
    margin-top: 4px;
    font-size: 10px;
}

.about-method-flow article > p {
    margin: 6px 0 0;
    color: #85857e;
    font-size: 7px;
    line-height: 1.45;
}

.about-method-flow > i {
    color: #aaa9a2;
    font-size: 9px;
    font-style: normal;
}

.about-method-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #ecece7;
}

.about-method-bottom > div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #777770;
    font-size: 7px;
    font-weight: 700;
}

.about-method-bottom span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-yellow);
}

.about-method-note {
    position: absolute;
    z-index: 4;
    right: -5px;
    bottom: 3px;
    width: 210px;
    padding: 18px;
    border-radius: 17px;
    background: #111;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0,0,0,.16);
}

.about-method-note small,
.about-method-note strong {
    display: block;
}

.about-method-note small {
    color: var(--brand-yellow);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.about-method-note strong {
    margin-top: 10px;
    font-family: "Manrope";
    font-size: 19px;
    line-height: 1.08;
}


/* About principles — editorial, not generic cards */
.about-principles-editorial {
    grid-template-columns: repeat(12,1fr);
    gap: 14px;
}

.about-principle-card {
    grid-column: span 4;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px !important;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.about-principle-card.principle-featured {
    grid-column: span 8;
    background:
        linear-gradient(135deg,#fff 0%,#fff 65%,#fff3bf 65%,#ffc412 100%);
}

.about-principle-card.principle-dark {
    background: #111;
    color: #fff;
}

.about-principle-card.principle-accent {
    background: var(--brand-yellow);
    color: #111;
}

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

.about-principle-top > span {
    margin: 0 !important;
    color: #9e9e97 !important;
}

.about-principle-top > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #f3f3ef;
    color: #44443f;
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
}

.principle-dark .about-principle-top > i {
    background: rgba(255,255,255,.1);
    color: var(--brand-yellow);
}

.principle-accent .about-principle-top > i {
    background: rgba(255,255,255,.45);
}

.about-principle-card small {
    display: block;
    margin-bottom: 8px;
    color: #a17c00;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.principle-dark small {
    color: var(--brand-yellow);
}

.principle-accent small {
    color: #684d00;
}

.about-principle-card h3 {
    max-width: 440px;
    margin-bottom: 10px;
    font-size: 22px;
}

.about-principle-card p {
    max-width: 430px;
}

.principle-dark p {
    color: #a7a79f;
}

.principle-accent p {
    color: #594300;
}


/* ------------------------------------------
   BLOG — EDITORIAL HERO
------------------------------------------ */

.blog-editorial-hero {
    position: relative;
    min-height: 475px;
    display: block;
}

.blog-editorial-stack {
    position: absolute;
    left: 30px;
    top: 18px;
    width: 360px;
    height: 380px;
}

.blog-editorial-sheet {
    position: absolute;
    inset: 0;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(0,0,0,.13);
}

.sheet-main {
    z-index: 3;
    padding: 27px;
    background: #111;
    color: #fff;
    transform: rotate(-2deg);
}

.sheet-back-one {
    z-index: 2;
    background: var(--brand-yellow);
    transform: translate(35px,15px) rotate(5deg);
}

.sheet-back-two {
    z-index: 1;
    background: #deded8;
    transform: translate(65px,35px) rotate(9deg);
}

.sheet-back-one span,
.sheet-back-two span {
    position: absolute;
    right: 18px;
    bottom: 20px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
}

.blog-sheet-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #91918a;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .09em;
}

.blog-sheet-top small {
    color: var(--brand-yellow);
}

.sheet-main > strong {
    display: block;
    max-width: 280px;
    margin-top: 95px;
    font-family: "Manrope";
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.blog-sheet-topic {
    position: absolute;
    left: 27px;
    bottom: 27px;
    color: #a7a79f;
    font-size: 8px;
    font-weight: 800;
}

.blog-sheet-mark {
    position: absolute;
    right: 27px;
    bottom: 25px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: #111;
    font-size: 18px;
}

.blog-editorial-index {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 10px;
    width: 205px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.blog-editorial-index > small {
    display: block;
    margin-bottom: 10px;
    color: #a17c00;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.blog-editorial-index > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.blog-editorial-index span {
    color: #696963;
    font-size: 7px;
    font-weight: 700;
}


/* Blog cards — editorial covers */
.blog-card-editorial {
    border-radius: 19px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card-editorial:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,.09);
}

.blog-editorial-cover {
    position: relative;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 23px;
    overflow: hidden;
    background: #111;
    color: #fff;
}

.blog-editorial-cover::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -60px;
    border-radius: 50%;
    background: var(--brand-yellow);
}

.blog-editorial-cover::after {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    left: -35px;
    bottom: -38px;
    border: 1px solid rgba(255,255,255,.18);
    transform: rotate(45deg);
}

.blog-cover-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    color: #9f9f98;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .09em;
}

.blog-cover-head small {
    color: var(--brand-yellow);
}

.blog-cover-category {
    position: relative;
    z-index: 2;
    margin-top: 55px;
    color: #a9a9a1;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-editorial-cover > strong {
    position: relative;
    z-index: 2;
    max-width: 270px;
    margin-top: 8px;
    font-family: "Manrope";
    font-size: 22px;
    line-height: 1.08;
}

.blog-cover-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: auto;
}

.blog-cover-footer span {
    color: #8f8f88;
    font-size: 7px;
    font-weight: 800;
}

.blog-cover-footer i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: #111;
    font-style: normal;
    font-weight: 900;
}


/* ------------------------------------------
   RESPONSIVE V1.2
------------------------------------------ */

@media (max-width: 1080px) {
    .about-method-visual {
        max-width: 720px;
        width: 100%;
        margin-inline: auto;
    }

    .blog-editorial-hero {
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .eaglerads-header-logo {
        height: 41px;
        max-width: 190px;
    }

    .eaglerads-footer-logo {
        height: 50px;
        max-width: 220px;
    }

    .about-method-visual {
        min-height: 620px;
    }

    .about-method-board {
        width: 100%;
        padding: 18px;
    }

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

    .about-method-flow > i {
        display: none;
    }

    .about-method-note {
        right: 5px;
        bottom: 0;
    }

    .about-principles-editorial {
        grid-template-columns: 1fr;
    }

    .about-principle-card,
    .about-principle-card.principle-featured {
        grid-column: auto;
        min-height: 245px;
    }

    .blog-editorial-hero {
        min-height: 470px;
    }

    .blog-editorial-stack {
        left: 0;
        width: calc(100% - 55px);
        max-width: 350px;
        height: 350px;
    }

    .blog-editorial-index {
        right: 5px;
        bottom: 0;
    }
}

/* ==========================================
   EAGLERADS V1.3 — IMAGE-LED SERVICE CARDS
   Bank / fintech inspired card composition
========================================== */

/* HOME */
.services-grid {
    align-items: stretch;
}

.service-card.service-card-image {
    min-height: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    background: #fff;
}

.service-card.service-card-image:hover {
    transform: translateY(-6px);
    border-color: #d8d8d2;
    box-shadow: 0 26px 58px rgba(0,0,0,.09);
}

.service-card-media {
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
    background: #f1f1ec;
    text-decoration: none;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

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

.service-media-number {
    position: absolute;
    right: 15px;
    top: 15px;
    min-width: 36px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 30px;
    background: rgba(255,255,255,.86);
    color: #22221f;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
}

.service-card-content {
    flex: 1;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    padding: 27px 27px 25px;
}

.service-card-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.service-card-content p {
    margin-bottom: 26px;
}

.service-card-content .text-link {
    position: static;
    left: auto;
    bottom: auto;
    margin-top: auto;
}


/* SERVICES PAGE */
.services-page-card.services-page-card-image {
    min-height: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.services-page-card.services-page-card-image:hover {
    transform: translateY(-6px);
    border-color: #d8d8d2;
    box-shadow: 0 26px 58px rgba(0,0,0,.09);
}

.services-page-media {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: #f1f1ec;
    text-decoration: none;
}

.services-page-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.services-page-card-image:hover .services-page-media img {
    transform: scale(1.025);
}

.services-page-card-content {
    flex: 1;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    padding: 29px 31px 28px;
}

.services-page-card-content h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.services-page-card-content p {
    max-width: 470px;
    margin-bottom: 30px;
}

.services-page-card-content .services-page-link {
    margin-top: auto;
}


/* Retire old icon visual only in these cards */
.service-card-image .service-icon,
.services-page-card-image .services-page-icon,
.service-card-image > .service-number,
.services-page-card-image .services-page-card-top {
    display: none !important;
}


@media (max-width: 1080px) {
    .service-card-media {
        height: 230px;
    }

    .services-page-media {
        height: 240px;
    }
}

@media (max-width: 760px) {
    .service-card-media {
        height: 220px;
    }

    .service-card-content {
        min-height: 220px;
    }

    .services-page-media {
        height: 220px;
    }

    .services-page-card-content {
        min-height: 215px;
        padding: 24px;
    }
}

/* ==========================================
   EAGLERADS V1.3.1 — WHY CARDS WITH IMAGES
========================================== */

.why-grid.why-grid-images {
    align-items: stretch;
}

.why-card.why-card-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.why-card.why-card-image:hover {
    transform: translateY(-6px);
    border-color: #d8d8d2;
    box-shadow: 0 24px 54px rgba(0,0,0,.08);
}

.why-card-image .why-icon {
    display: none !important;
}

.why-card-media {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f1f1ec;
}

.why-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.why-card.why-card-image:hover .why-card-media img {
    transform: scale(1.03);
}

.why-card-content {
    flex: 1;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    padding: 24px 28px 26px;
}

.why-card-content h3 {
    margin-bottom: 11px;
    font-size: 20px;
}

.why-card-content p {
    margin-bottom: 0;
}

@media (max-width: 1080px) {
    .why-card-media {
        height: 220px;
    }
}

@media (max-width: 760px) {
    .why-card-media {
        height: 210px;
    }

    .why-card-content {
        min-height: 138px;
        padding: 22px 24px 24px;
    }
}

/* ==========================================
   EAGLERADS V1.4.1 — WHY SECTION REFINEMENT
========================================== */

.why-section .section-heading {
    margin-bottom: 42px;
}

.why-grid.why-grid-images {
    gap: 18px;
}

.why-card.why-card-image {
    min-height: 0;
    padding: 12px;
    overflow: hidden;
    border: 1px solid #e1e1dc;
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
}

.why-card.why-card-image:hover {
    transform: translateY(-4px);
    border-color: #cfcfc8;
    box-shadow: 0 18px 42px rgba(0,0,0,.07);
}

.why-card-media {
    height: 158px;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f3ef;
}

.why-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
}

.why-card.why-card-image:hover .why-card-media img {
    transform: scale(1.018);
}

.why-card-content {
    min-height: 118px;
    padding: 20px 10px 10px;
}

.why-card-content h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.18;
}

.why-card-content p {
    max-width: 310px;
    margin: 0;
    color: #6d6d66;
    font-size: 13px;
    line-height: 1.55;
}

/* Keep image treatment consistent without giant full-bleed blocks */
.why-card:nth-child(1) .why-card-media,
.why-card:nth-child(3) .why-card-media,
.why-card:nth-child(4) .why-card-media,
.why-card:nth-child(6) .why-card-media {
    background: #f4f4ef;
}

.why-card:nth-child(2) .why-card-media,
.why-card:nth-child(5) .why-card-media {
    background: #111;
}

@media (max-width: 1080px) {
    .why-card-media {
        height: 170px;
    }

    .why-card-content {
        min-height: 112px;
    }
}

@media (max-width: 760px) {
    .why-section .section-heading {
        margin-bottom: 30px;
    }

    .why-card.why-card-image {
        padding: 10px;
    }

    .why-card-media {
        height: 180px;
    }

    .why-card-content {
        min-height: 0;
        padding: 18px 8px 10px;
    }

    .why-card-content h3 {
        font-size: 18px;
    }
}

/* ==========================================
   EAGLERADS V1.5.0 — REDESIGN + MOBILE CAROUSELS
========================================== */

/* Global responsive safeguards */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

main,
section,
.container,
.hero-grid > *,
.service-hero-grid > *,
.about-hero-grid > *,
.services-page-hero-grid > *,
.blog-hero-grid > *,
.contact-page-grid > * {
    min-width: 0;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}


/* ------------------------------------------
   WHY EAGLERADS — UNIFIED CARDS
------------------------------------------ */

.why-section .section-heading {
    margin-bottom: 38px;
}

.why-grid.why-grid-images {
    gap: 18px;
}

.why-card.why-card-image {
    min-height: 0;
    padding: 10px;
    overflow: hidden;
    border: 1px solid #dfdfda;
    border-radius: 21px;
    background: #fff;
    box-shadow: none;
}

.why-card.why-card-image:hover {
    transform: translateY(-4px);
    border-color: #cecec8;
    box-shadow: 0 20px 46px rgba(0,0,0,.07);
}

.why-card-media {
    height: 164px;
    overflow: hidden;
    border-radius: 15px;
    background: #f3f3ef;
}

.why-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: none !important;
}

.why-card.why-card-image:hover .why-card-media img {
    transform: scale(1.012) !important;
}

.why-card-content {
    min-height: 118px;
    padding: 20px 12px 11px;
}

.why-card-content h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.18;
}

.why-card-content p {
    max-width: 310px;
    margin: 0;
    color: #6d6d66;
    font-size: 13px;
    line-height: 1.5;
}


/* ------------------------------------------
   MOBILE CAROUSEL SYSTEM
   Home services + Why EagleRAds + Services page
------------------------------------------ */

@media (max-width: 760px) {

    /*
     * Horizontal touch carousels.
     * A portion of the next card remains visible to signal scrolling.
     */
    .services-grid,
    .why-grid.why-grid-images,
    .services-page-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px !important;

        width: auto;
        max-width: none;

        margin-left: -16px;
        margin-right: -16px;

        padding-left: 16px;
        padding-right: 36px;
        padding-bottom: 14px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;

        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar,
    .why-grid.why-grid-images::-webkit-scrollbar,
    .services-page-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid > .service-card,
    .why-grid.why-grid-images > .why-card,
    .services-page-grid > .services-page-card {
        flex: 0 0 min(84vw, 345px);
        width: min(84vw, 345px);
        max-width: min(84vw, 345px);

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    /* Services carousel */
    .service-card.service-card-image {
        min-height: 430px;
    }

    .service-card-media {
        height: 205px;
    }

    .service-card-content {
        min-height: 205px;
        padding: 23px 22px 22px;
    }

    .service-card-content h3 {
        font-size: 20px;
    }

    /* Why carousel */
    .why-card.why-card-image {
        padding: 9px;
        min-height: 355px;
    }

    .why-card-media {
        height: 188px;
    }

    .why-card-content {
        min-height: 145px;
        padding: 20px 12px 12px;
    }

    .why-card-content h3 {
        font-size: 19px;
    }

    .why-card-content p {
        font-size: 13px;
    }

    /* Services page carousel */
    .services-page-card.services-page-card-image {
        min-height: 445px;
    }

    .services-page-media {
        height: 215px;
    }

    .services-page-card-content {
        min-height: 210px;
        padding: 23px;
    }


    /* --------------------------------------
       HOME RESPONSIVE AUDIT
    -------------------------------------- */

    .hero-grid,
    .service-hero-grid,
    .about-hero-grid,
    .services-page-hero-grid,
    .blog-hero-grid,
    .contact-page-grid {
        width: 100%;
    }

    .hero-content,
    .service-hero-copy,
    .about-hero-grid > div,
    .services-page-copy,
    .contact-page-copy {
        max-width: 100%;
    }

    .hero h1,
    .service-hero-copy h1,
    .about-hero h1,
    .services-page-copy h1,
    .blog-hero h1,
    .contact-page-copy h1 {
        overflow-wrap: anywhere;
    }

    .hero-points {
        gap: 12px 16px;
    }

    .home-solution-visual,
    .design-showcase,
    .marketing-strategy-visual,
    .wordpress-control-visual,
    .about-method-visual,
    .blog-editorial-hero {
        max-width: 100%;
    }

    .home-web-window,
    .design-desktop,
    .marketing-board,
    .wp-control-panel,
    .about-method-board {
        max-width: 100%;
    }

    .final-cta,
    .service-final-cta,
    .about-final-cta,
    .services-final-cta {
        overflow: hidden;
    }

    .footer-social {
        flex-wrap: wrap;
    }
}


/* Very small phones */
@media (max-width: 390px) {

    .services-grid > .service-card,
    .why-grid.why-grid-images > .why-card,
    .services-page-grid > .services-page-card {
        flex-basis: 86vw;
        width: 86vw;
        max-width: 86vw;
    }

    .hero h1,
    .service-hero-copy h1,
    .about-hero h1,
    .services-page-copy h1,
    .blog-hero h1,
    .contact-page-copy h1 {
        font-size: clamp(38px, 11.5vw, 50px);
    }

    .home-flow-card {
        min-width: 225px;
        max-width: calc(100% - 20px);
    }

    .home-flow {
        gap: 5px;
    }

    .home-flow span {
        padding: 5px 6px;
        font-size: 7px;
    }
}
