/* ============================================================
   Marketing360 Elementor Widgets — Base Styles
   ============================================================ */

/* ---------- Fonts ---------- */
.m360-widget * {
    box-sizing: border-box;
}

/* ---------- Gradient Utilities ---------- */
.m360-text-gradient {
    background: var(--m360-hero-gradient, linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m360-bg-gradient {
    background: var(--m360-hero-gradient, linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%));
}

/* ---------- Navbar ---------- */
.m360-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(220,15%,90%);
    padding: 0;
}
.m360-navbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.m360-navbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.m360-navbar__logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.m360-navbar__brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: hsl(220,30%,15%);
}
.m360-navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.m360-navbar__links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: hsl(220,10%,50%);
    text-decoration: none;
    transition: color 0.2s;
}
.m360-navbar__links a:hover {
    color: hsl(220,30%,15%);
}
.m360-navbar__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    background: linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%);
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.m360-navbar__cta:hover { opacity: 0.9; }

/* ---------- Hero Section ---------- */
.m360-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: hsl(0,0%,99%);
    overflow: hidden;
    padding: 100px 24px 60px;
}
.m360-hero__blob-1 {
    position: absolute;
    top: 80px; right: 80px;
    width: 384px; height: 384px;
    border-radius: 50%;
    background: hsla(24,90%,55%,0.05);
    filter: blur(60px);
    pointer-events: none;
}
.m360-hero__blob-2 {
    position: absolute;
    bottom: 80px; left: 40px;
    width: 288px; height: 288px;
    border-radius: 50%;
    background: hsla(335,80%,55%,0.05);
    filter: blur(60px);
    pointer-events: none;
}
.m360-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}
.m360-hero__content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}
.m360-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsla(24,90%,55%,0.1);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: hsl(24,90%,55%);
}
.m360-hero__badge-icon {
    width: 16px; height: 16px;
    stroke: hsl(24,90%,55%);
    fill: none;
    flex-shrink: 0;
}
.m360-hero__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    color: hsl(220,30%,15%);
    margin: 0 0 24px;
}
.m360-hero__subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: hsl(220,10%,50%);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.m360-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}
.m360-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 30px -8px hsla(24,90%,55%,0.3);
    transition: opacity 0.2s;
}
.m360-hero__btn-primary:hover { opacity: 0.9; color: #fff; }
.m360-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: hsl(220,30%,15%);
    border: 1px solid hsl(220,15%,90%);
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.m360-hero__btn-secondary:hover { background: hsl(220,15%,95%); color: hsl(220,30%,15%); }

/* Hero Stats */
.m360-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 768px;
    margin: 0 auto;
}
.m360-stat-card {
    background: #fff;
    border: 1px solid hsl(220,15%,90%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.m360-stat-card__value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    background: linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.m360-stat-card__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: hsl(220,10%,50%);
    margin-top: 4px;
    display: block;
}

/* ---------- Platform Presence ---------- */
.m360-platforms {
    padding: 96px 24px;
    background: hsl(0,0%,99%);
}
.m360-platforms__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.m360-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.m360-section-header__eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: hsl(24,90%,55%);
    display: block;
    margin-bottom: 12px;
}
.m360-section-header__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    color: hsl(220,30%,15%);
    margin: 0;
    line-height: 1.15;
}
.m360-platforms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.m360-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid hsl(220,15%,90%);
    border-radius: 16px;
    padding: 32px 24px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s;
}
.m360-platform-card:hover {
    box-shadow: 0 8px 30px -6px hsla(220,20%,30%,0.12);
    transform: translateY(-4px);
}
.m360-platform-card__icon-wrap {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.m360-platform-card__icon-wrap svg {
    width: 28px; height: 28px;
    fill: none;
}
.m360-platform-card__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: hsl(220,30%,15%);
    margin: 0 0 6px;
}
.m360-platform-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: hsl(220,10%,50%);
    margin: 0;
}

/* ---------- Featured Work ---------- */
.m360-featured {
    padding: 96px 24px;
    background: hsl(220,15%,96%);
}
.m360-featured__inner {
    max-width: 900px;
    margin: 0 auto;
}
.m360-featured__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.m360-work-card {
    background: #fff;
    border: 1px solid hsl(220,15%,90%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 16px -4px hsla(220,20%,30%,0.06);
    transition: box-shadow 0.25s;
}
.m360-work-card:hover {
    box-shadow: 0 8px 30px -6px hsla(220,20%,30%,0.12);
}
.m360-work-card__icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.m360-work-card__icon-wrap svg {
    width: 24px; height: 24px;
    fill: none;
}
.m360-work-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: hsl(220,30%,15%);
    margin: 0 0 8px;
}
.m360-work-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: hsl(220,10%,50%);
    line-height: 1.6;
    margin: 0 0 20px;
}
.m360-work-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.m360-work-card__tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    background: hsl(220,15%,95%);
    color: hsl(220,10%,50%);
    padding: 5px 12px;
    border-radius: 100px;
}
.m360-work-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: hsl(24,90%,55%);
    text-decoration: none;
    transition: gap 0.2s;
}
.m360-work-card__link:hover { gap: 10px; color: hsl(24,90%,55%); }
.m360-work-card__link svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
}

/* ---------- Footer ---------- */
.m360-footer {
    background: hsl(220,50%,18%);
    color: hsl(220,10%,96%);
    padding: 64px 24px;
}
.m360-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.m360-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.m360-footer__brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: hsl(220,10%,96%);
}
.m360-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}
.m360-footer__brand-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, hsl(24,90%,55%) 0%, hsl(335,80%,55%) 50%, hsl(260,70%,55%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.m360-footer__tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: hsla(220,10%,96%,0.6);
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}
.m360-footer__col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: hsl(220,10%,96%);
    margin: 0 0 16px;
}
.m360-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.m360-footer__links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: hsla(220,10%,96%,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.m360-footer__links a:hover { color: hsl(220,10%,96%); }
.m360-footer__bottom {
    border-top: 1px solid hsla(220,10%,96%,0.1);
    padding-top: 32px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: hsla(220,10%,96%,0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .m360-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .m360-platforms__grid { grid-template-columns: repeat(2, 1fr); }
    .m360-featured__grid { grid-template-columns: 1fr; }
    .m360-footer__grid { grid-template-columns: 1fr 1fr; }
    .m360-footer__grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 600px) {
    .m360-navbar__links,
    .m360-navbar__cta { display: none; }
    .m360-platforms__grid { grid-template-columns: 1fr; }
    .m360-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .m360-footer__grid { grid-template-columns: 1fr; }
    .m360-footer__grid > div:first-child { grid-column: span 1; }
}

