/*
 * Lacute - SMMsun Landing Refresh
 * Scope: public/guest theme only. Dashboard styles are intentionally untouched.
 */

:root {
    --sun-blue: #12a9eb;
    --sun-blue-2: #00b9f2;
    --sun-blue-dark: #058ccc;
    --sun-ink: #0d1824;
    --sun-text: #5d6975;
    --sun-soft: #eaf7ff;
    --sun-line: #e5edf3;
    --sun-navy: #061a2a;
    --sun-white: #ffffff;
}

html { scroll-behavior: smooth; }

body.smmsun-public {
    background: #fff;
    color: var(--sun-ink);
    font-family: "Poppins", "Nunito Sans", "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

body.smmsun-public .header { display: none !important; }
body.smmsun-public .smmsun-mobile-nav { display: none; }

.smmsun-header {
    position: relative;
    z-index: 1000;
    height: 68px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid #edf2f6;
    box-shadow: 0 4px 22px rgba(10, 46, 72, .035);
}

.smmsun-header .container,
.smmsun-header .smmsun-nav { height: 100%; }

.smmsun-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.smmsun-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sun-ink);
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
    white-space: nowrap;
}

.smmsun-brand img {
    display: block;
    max-width: 146px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.smmsun-brand-mark {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--sun-blue), #35c7f8);
    color: #fff;
    box-shadow: 0 7px 18px rgba(18, 169, 235, .25);
}

.smmsun-menu {
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.smmsun-menu a,
.smmsun-login-link {
    position: relative;
    color: #2a3845;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: color .2s ease;
    white-space: nowrap;
}

.smmsun-menu a:hover,
.smmsun-menu a.active,
.smmsun-login-link:hover { color: var(--sun-blue-dark); }

.smmsun-menu a.active:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9px;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--sun-blue);
}

.smmsun-nav-actions { display: flex; align-items: center; gap: 12px; }

.smmsun-login-link {
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
}

.smmsun-signup-btn {
    min-width: 82px;
    height: 34px;
    padding: 0 16px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sun-blue), #079ede);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(18, 169, 235, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.smmsun-signup-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(18, 169, 235, .3); }

.smmsun-landing { background: #fff; }
.smmsun-landing em { color: var(--sun-blue); font-style: normal; }

.smmsun-hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 46px 0 42px;
    background:
        radial-gradient(circle at 12% 26%, rgba(57, 196, 246, .14), transparent 29%),
        radial-gradient(circle at 86% 15%, rgba(255, 190, 120, .22), transparent 32%),
        linear-gradient(105deg, #eefaff 0%, #f7fbff 52%, #fff5e9 100%);
}

.smmsun-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to right, #000, transparent 60%);
}

.smmsun-hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.smmsun-hero-glow-one { width: 180px; height: 180px; left: -80px; top: 54px; background: rgba(20, 177, 238, .14); }
.smmsun-hero-glow-two { width: 220px; height: 220px; right: -120px; bottom: -90px; background: rgba(255, 188, 121, .25); }

.smmsun-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #35424d;
    margin-bottom: 6px;
}

.smmsun-hero h1 {
    margin: 0;
    max-width: 600px;
    color: #101820;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.smmsun-hero h1 span { color: var(--sun-blue); }
.smmsun-hero-copy {
    max-width: 570px;
    margin: 12px 0 18px;
    color: #65717c;
    font-size: 12.5px;
    line-height: 1.7;
}

.smmsun-login-form { max-width: 470px; }
.smmsun-alert { padding: 8px 12px; margin-bottom: 8px; font-size: 12px; border-radius: 7px; }

.smmsun-login-field {
    position: relative;
    height: 43px;
    margin-bottom: 9px;
    background: #fff;
    border: 1px solid #d9e8f1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 18px rgba(18, 91, 129, .05);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.smmsun-login-field:focus-within { border-color: var(--sun-blue); box-shadow: 0 0 0 3px rgba(18, 169, 235, .09); }
.smmsun-login-field > i { width: 39px; text-align: center; color: #8fa5b3; font-size: 13px; }
.smmsun-login-field input {
    flex: 1 1 auto;
    height: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #263441;
    font-size: 12px;
    padding: 0 10px 0 0;
}
.smmsun-login-field input::placeholder { color: #a1afb9; }
.smmsun-forgot-inline { padding: 0 12px; color: #81909a; font-size: 9.5px; text-decoration: none !important; white-space: nowrap; }
.smmsun-forgot-inline:hover { color: var(--sun-blue); }
.smmsun-recaptcha { margin: 8px 0; transform-origin: left top; }

.smmsun-login-bottom { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.smmsun-remember { display: inline-flex; align-items: center; gap: 6px; margin: 0 auto 0 0; color: #68757f; font-size: 10px; cursor: pointer; }
.smmsun-remember input { accent-color: var(--sun-blue); }

.smmsun-primary-btn {
    min-height: 39px;
    padding: 0 19px;
    border: 0;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--sun-blue), #009bd9);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 9px 20px rgba(18, 169, 235, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.smmsun-primary-btn:hover { transform: translateY(-1px); box-shadow: 0 11px 24px rgba(18, 169, 235, .3); }
.smmsun-primary-btn-wide { min-height: 42px; padding: 0 22px; }
.smmsun-register-note { max-width: 470px; margin-top: 10px; text-align: right; color: #8b98a2; font-size: 9.5px; }
.smmsun-register-note a { color: var(--sun-blue-dark); font-weight: 700; }

.smmsun-hero-visual { position: relative; min-height: 320px; max-width: 520px; margin-left: auto; }
.smmsun-hero-circle {
    position: absolute;
    width: 306px;
    height: 306px;
    border-radius: 50%;
    right: 64px;
    top: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,225,196,.45));
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 20px 50px rgba(91, 105, 116, .09);
}

.smmsun-hero-person {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 8px;
    width: 365px;
    height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 20px 18px rgba(37, 74, 96, .13));
}

.smmsun-float-card {
    position: absolute;
    z-index: 4;
    min-width: 150px;
    height: 50px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(218,232,241,.95);
    border-radius: 10px;
    box-shadow: 0 13px 27px rgba(26, 77, 109, .11);
    backdrop-filter: blur(8px);
}
.smmsun-float-card-one { left: 10px; top: 28px; }
.smmsun-float-card-two { right: -3px; top: 93px; }
.smmsun-float-card-three { left: 13px; bottom: 65px; }
.smmsun-float-card > div { display: flex; flex-direction: column; line-height: 1.25; }
.smmsun-float-card strong { font-size: 8.5px; color: #2c3d48; }
.smmsun-float-card small { font-size: 7px; color: #99a6af; }
.smmsun-float-card b { margin-left: auto; color: #15a9e9; font-size: 9px; }
.smmsun-social { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: #fff; }
.smmsun-ig { background: linear-gradient(140deg,#6f43dc,#ff3c80,#ff9f43); }
.smmsun-yt { background: #ff3030; }
.smmsun-tiktok { background: #0b1722; }

.smmsun-social-strip {
    position: absolute;
    z-index: 5;
    right: 88px;
    bottom: 0;
    height: 37px;
    padding: 5px 9px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 7px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 11px 30px rgba(28, 70, 94, .1);
}
.smmsun-social-strip span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 5px; background: #14a8e9; color: white; font-size: 12px; }
.smmsun-social-strip span:nth-child(2) { background: linear-gradient(140deg,#6f43dc,#ff3c80,#ff9f43); }
.smmsun-social-strip span:nth-child(3) { background: #1d9bf0; }
.smmsun-social-strip span:nth-child(4) { background: #ff3030; }
.smmsun-social-strip span:nth-child(5) { background: #279eda; }
.smmsun-social-strip span:nth-child(6) { background: #101820; }

.smmsun-stats { background: #fff; padding: 23px 0 27px; border-bottom: 1px solid #f0f3f6; }
.smmsun-stat { min-height: 60px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.smmsun-stat > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#e6f8ff,#fff); border: 1px solid #cbecf9; color: var(--sun-blue); font-size: 15px; box-shadow: 0 7px 18px rgba(23,157,212,.08); }
.smmsun-stat > div { display: flex; flex-direction: column; }
.smmsun-stat strong { color: #22313c; font-size: 12.5px; line-height: 1.2; }
.smmsun-stat small { margin-top: 2px; color: #8a98a3; font-size: 7.5px; }

.smmsun-section { padding: 72px 0; }
.smmsun-section-heading { max-width: 780px; margin: 0 auto 34px; }
.smmsun-section-heading > span,
.smmsun-transform-copy > span,
.smmsun-about-copy > span,
.smmsun-testimonial-copy > span { color: var(--sun-blue); font-size: 11px; font-weight: 700; }
.smmsun-section-heading h2,
.smmsun-transform-copy h2,
.smmsun-about-copy h2,
.smmsun-testimonial-copy h2 {
    margin: 3px 0 8px;
    color: #111b24;
    font-size: 27px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -1px;
}
.smmsun-section-heading p { max-width: 730px; margin: 0 auto; color: #7d8992; font-size: 10px; line-height: 1.7; }

.smmsun-services { padding-top: 54px; }
.smmsun-platform-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 0 auto 10px;
}
.smmsun-platform-tabs a {
    min-height: 39px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e5ebf0;
    border-radius: 4px;
    color: #52616b;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 3px 12px rgba(25,66,94,.03);
    transition: border-color .2s ease, transform .2s ease;
}
.smmsun-platform-tabs a:hover { border-color: #9bdcf5; transform: translateY(-1px); }
.smmsun-platform-tabs a i { color: var(--sun-blue); font-size: 13px; }
.smmsun-platform-tabs a:nth-child(2) i { color: #e43d8f; }
.smmsun-platform-tabs a:nth-child(3) i { color: #ff3030; }
.smmsun-platform-tabs a:nth-child(4) i { color: #111b24; }
.smmsun-platform-tabs a:nth-child(5) i { color: #0a66c2; }
.smmsun-platform-tabs a:nth-child(6) i { color: #249bd7; }
.smmsun-platform-tabs a:nth-child(8) i { color: #9146ff; }
.smmsun-platform-tabs a:nth-child(9) i { color: #1ed760; }
.smmsun-platform-tabs a:nth-child(10) i { color: #ff5500; }

.smmsun-feature-service {
    margin-top: 9px;
    min-height: 145px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    border: 1px solid #e0e7ec;
    border-radius: 7px;
    box-shadow: 0 5px 18px rgba(24,61,88,.045);
}
.smmsun-feature-service-copy { max-width: 680px; }
.smmsun-mini-label { color: var(--sun-blue); font-size: 9px; font-weight: 700; }
.smmsun-feature-service h3 { margin: 4px 0 8px; color: #159fdc; font-size: 15px; font-weight: 800; }
.smmsun-feature-service p { margin: 0; color: #77858f; font-size: 9px; line-height: 1.75; }
.smmsun-text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: var(--sun-blue-dark); font-size: 9px; font-weight: 700; text-decoration: none !important; }
.smmsun-feature-logo { min-width: 190px; display: flex; align-items: center; justify-content: center; gap: 10px; color: #168de2; font-size: 25px; }
.smmsun-feature-logo strong { font-size: 24px; letter-spacing: -1.5px; }

.smmsun-transform { padding: 67px 0; background: linear-gradient(100deg,#e7f6ff 0%,#edf9ff 55%,#e9f7ff 100%); overflow: hidden; }
.smmsun-transform-copy { max-width: 530px; }
.smmsun-transform-copy h2 { font-size: 29px; max-width: 520px; }
.smmsun-transform-copy p,
.smmsun-about-copy p { color: #72808a; font-size: 10px; line-height: 1.75; margin: 11px 0 18px; }

.smmsun-growth-board { position: relative; min-height: 235px; }
.smmsun-growth-board:before {
    content: "";
    position: absolute;
    width: 320px;
    height: 170px;
    right: 52px;
    top: 20px;
    border: 1px dashed rgba(44,171,226,.32);
    border-radius: 50%;
    transform: rotate(-8deg);
}
.smmsun-growth-card {
    position: absolute;
    width: 190px;
    height: 67px;
    padding: 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid #d9ecf6;
    border-radius: 13px;
    box-shadow: 0 13px 28px rgba(30,94,127,.09);
}
.smmsun-growth-card span { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: white; background: #13a8ea; font-size: 16px; }
.smmsun-growth-card div { display: flex; flex-direction: column; color: #364651; font-size: 9px; font-weight: 700; }
.smmsun-growth-card small { color: #a2adb4; font-size: 7px; font-weight: 500; }
.smmsun-growth-card b { margin-left: auto; color: #16a8e8; font-size: 10px; }
.smmsun-growth-card.g1 { left: 40px; top: 2px; transform: rotate(-2deg); }
.smmsun-growth-card.g2 { right: 5px; top: 48px; transform: rotate(3deg); }
.smmsun-growth-card.g3 { left: 22px; bottom: 21px; transform: rotate(2deg); }
.smmsun-growth-card.g4 { right: 32px; bottom: 1px; transform: rotate(-2deg); }
.smmsun-growth-card.g1 span { background: linear-gradient(140deg,#6f43dc,#ff3c80,#ff9f43); }
.smmsun-growth-card.g2 span { background: #1877f2; }
.smmsun-growth-card.g3 span { background: #ff3030; }
.smmsun-growth-card.g4 span { background: #111b24; }

.smmsun-how { padding-bottom: 80px; }
.smmsun-steps-row { position: relative; }
.smmsun-steps-row:before { content: ""; position: absolute; left: 12%; right: 12%; top: 28px; border-top: 1px dashed #d7e4ec; }
.smmsun-step { position: relative; z-index: 1; padding: 0 13px; }
.smmsun-step-number { width: 45px; height: 45px; margin-bottom: 16px; border-radius: 12px; display: grid; place-items: center; background: #101820; color: #fff; font-size: 12px; font-weight: 800; box-shadow: 0 8px 19px rgba(15,30,43,.12); }
.smmsun-step-number.blue { background: linear-gradient(145deg,#14b8f1,#0f9ddd); }
.smmsun-step h3 { margin: 0 0 7px; color: #202c36; font-size: 11px; font-weight: 800; }
.smmsun-step p { margin: 0; color: #88949c; font-size: 8.5px; line-height: 1.7; }

.smmsun-about { padding: 64px 0 58px; background: linear-gradient(100deg,#fff 0%,#fff9f6 48%,#fff4e9 100%); overflow: hidden; }
.smmsun-about-copy h2 { max-width: 470px; font-size: 31px; }
.smmsun-about-copy p { max-width: 540px; }
.smmsun-about-visual { min-height: 305px; position: relative; }
.smmsun-about-shape { position: absolute; width: 330px; height: 250px; border-radius: 48% 52% 50% 40%; right: 45px; top: 25px; background: linear-gradient(145deg,#e9f8ff,#ffe8d7); transform: rotate(-4deg); }
.smmsun-about-visual img { position: absolute; z-index: 2; right: 40px; bottom: -12px; width: 380px; max-height: 315px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(63,82,94,.11)); }
.smmsun-about-badge { position: absolute; z-index: 4; left: 50px; top: 72px; min-width: 170px; height: 56px; display: flex; align-items: center; gap: 9px; padding: 8px 12px; background: rgba(255,255,255,.95); border: 1px solid #e6eef3; border-radius: 11px; box-shadow: 0 12px 25px rgba(38,78,103,.08); }
.smmsun-about-badge > i { color: #19aeeb; font-size: 25px; }
.smmsun-about-badge > div { display: flex; flex-direction: column; }
.smmsun-about-badge strong { font-size: 9px; color: #2d3a43; }
.smmsun-about-badge small { font-size: 7px; color: #9aa6ae; }

.smmsun-reasons .row > div { margin-bottom: 18px; }
.smmsun-reason { min-height: 148px; padding: 22px 20px; background: #fff; border: 1px solid #edf1f4; border-radius: 8px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.smmsun-reason:hover { transform: translateY(-3px); border-color: #c9eafb; box-shadow: 0 14px 28px rgba(30,83,113,.07); }
.smmsun-reason > span { width: 37px; height: 37px; margin-bottom: 13px; display: grid; place-items: center; border-radius: 50%; background: #e6f8ff; color: var(--sun-blue); font-size: 14px; }
.smmsun-reason h3 { margin: 0 0 7px; color: #22313b; font-size: 11px; font-weight: 800; }
.smmsun-reason p { margin: 0; color: #88949c; font-size: 8.5px; line-height: 1.7; }

.smmsun-testimonial { padding: 52px 0 45px; background: linear-gradient(96deg,#e7f6ff 0%,#eff9ff 100%); overflow: hidden; }
.smmsun-testimonial-person { position: relative; height: 285px; }
.smmsun-testimonial-person:before { content: ""; position: absolute; left: 20px; bottom: -75px; width: 310px; height: 310px; border-radius: 50%; background: rgba(255,255,255,.6); }
.smmsun-testimonial-person img { position: absolute; z-index: 2; max-width: 370px; height: 290px; object-fit: contain; left: -10px; bottom: -42px; filter: drop-shadow(0 18px 25px rgba(29,88,120,.1)); }
.smmsun-testimonial-copy { max-width: 610px; position: relative; }
.smmsun-testimonial-copy h2 { font-size: 22px; max-width: 470px; }
.smmsun-quote-mark { position: absolute; right: 30px; top: 12px; font-size: 78px; line-height: 1; color: #14a8e8; opacity: .9; font-family: Georgia, serif; }
.smmsun-testimonial blockquote { max-width: 560px; margin: 20px 0 14px; padding-left: 33px; position: relative; color: #53636e; font-size: 10px; line-height: 1.8; font-weight: 500; }
.smmsun-testimonial blockquote:before { content: "“"; position: absolute; left: 0; top: -13px; color: #11a9ea; font-size: 46px; font-family: Georgia, serif; }
.smmsun-testimonial-meta { display: flex; flex-direction: column; padding-left: 33px; }
.smmsun-testimonial-meta strong { font-size: 9px; color: #263641; }
.smmsun-testimonial-meta small { font-size: 7px; color: #93a0a9; }
.smmsun-testimonial-meta span { margin-top: 3px; color: #ffb226; font-size: 8px; letter-spacing: 1px; }

.smmsun-audience { padding-bottom: 78px; }
.smmsun-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 136px; gap: 11px; }
.smmsun-bento-card { position: relative; overflow: hidden; padding: 20px 22px; border-radius: 9px; display: flex; justify-content: space-between; gap: 16px; }
.smmsun-bento-card.wide { grid-column: span 2; }
.smmsun-bento-card.tall { grid-row: span 2; }
.smmsun-bento-card h3 { margin: 0 0 7px; font-size: 10px; font-weight: 800; }
.smmsun-bento-card p { max-width: 440px; margin: 0; font-size: 8px; line-height: 1.7; opacity: .92; }
.smmsun-bento-card > i { position: absolute; right: 20px; bottom: 13px; font-size: 43px; opacity: .35; }
.smmsun-bento-card.cyan { color: #fff; background: linear-gradient(135deg,#14b8ef,#0f9fdd); }
.smmsun-bento-card.purple { color: #fff; background: linear-gradient(150deg,#3d0b63,#5d0d8b); }
.smmsun-bento-card.soft { color: #31424d; background: linear-gradient(135deg,#ecfbff,#dff5f8); }
.smmsun-bento-card.cream { color: #493c2c; background: linear-gradient(135deg,#fff4e5,#ffe5c5); }
.smmsun-bento-card.lilac { color: #453257; background: linear-gradient(135deg,#f1d7ff,#cfa7ff); }
.smmsun-bento-card.blue { color: #fff; background: linear-gradient(135deg,#0baded,#039bdc); }

.smmsun-faq { padding-top: 54px; }
.smmsun-faq .smmsun-section-heading { margin-bottom: 24px; }
.smmsun-faq-grid details { border-top: 1px solid #e8edf1; }
.smmsun-faq-grid details:last-child { border-bottom: 1px solid #e8edf1; }
.smmsun-faq-grid summary { list-style: none; cursor: pointer; position: relative; padding: 14px 27px 14px 2px; color: #36444e; font-size: 9px; font-weight: 600; }
.smmsun-faq-grid summary::-webkit-details-marker { display: none; }
.smmsun-faq-grid summary:after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: #8f9aa2; font-size: 15px; font-weight: 400; }
.smmsun-faq-grid details[open] summary:after { content: "−"; color: var(--sun-blue); }
.smmsun-faq-grid details p { margin: -2px 25px 13px 2px; color: #84919a; font-size: 8px; line-height: 1.7; }

.smmsun-footer { padding: 42px 0 15px; background: #061929; color: #fff; }
.smmsun-footer-grid { display: grid; grid-template-columns: 1.7fr .8fr .8fr .8fr; gap: 42px; }
.smmsun-brand-footer { color: #fff !important; }
.smmsun-brand-footer img { max-height: 36px; filter: brightness(0) invert(1); }
.smmsun-footer-brand p { max-width: 300px; margin: 13px 0 14px; color: #8ea1b1; font-size: 8px; line-height: 1.8; }
.smmsun-footer-socials { display: flex; gap: 5px; }
.smmsun-footer-socials span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #0a2032; font-size: 9px; }
.smmsun-footer h4 { margin: 4px 0 12px; color: #fff; font-size: 9px; font-weight: 800; }
.smmsun-footer-grid > div:not(.smmsun-footer-brand) { display: flex; flex-direction: column; }
.smmsun-footer-grid a:not(.smmsun-brand) { margin-bottom: 7px; color: #8ea1b1; font-size: 8px; text-decoration: none !important; transition: color .2s ease; }
.smmsun-footer-grid a:hover { color: #fff !important; }
.smmsun-footer-bottom { margin-top: 28px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 15px; color: #74899a; font-size: 7.5px; }

/* Public inner pages keep the new navigation without forcing landing styles. */
body.smmsun-public > .home-head:first-of-type { margin-top: 0; }

@media (max-width: 1199.98px) {
    .smmsun-menu { gap: 13px; }
    .smmsun-menu a { font-size: 10.5px; }
    .smmsun-hero h1 { font-size: 35px; }
    .smmsun-float-card-one { left: -18px; }
    .smmsun-growth-card.g1 { left: 0; }
    .smmsun-growth-card.g3 { left: 0; }
}

@media (max-width: 991.98px) {
    body.smmsun-public { padding-bottom: 72px; }
    body.smmsun-public .smmsun-mobile-nav { display: block; }
    .smmsun-header { height: 62px; }
    .smmsun-nav { justify-content: space-between; }
    .smmsun-brand img { max-width: 135px; max-height: 34px; }
    .smmsun-hero { min-height: 0; padding: 46px 0 43px; text-align: center; }
    .smmsun-hero h1 { max-width: 680px; margin: 0 auto; font-size: 36px; }
    .smmsun-hero-copy { margin-left: auto; margin-right: auto; }
    .smmsun-login-form { margin: 0 auto; text-align: left; }
    .smmsun-register-note { margin-left: auto; margin-right: auto; }
    .smmsun-section { padding: 58px 0; }
    .smmsun-platform-tabs { grid-template-columns: repeat(3, 1fr); }
    .smmsun-transform-copy { max-width: none; text-align: center; margin-bottom: 28px; }
    .smmsun-transform-copy h2 { margin-left: auto; margin-right: auto; }
    .smmsun-growth-board { max-width: 580px; margin: 0 auto; }
    .smmsun-steps-row:before { display: none; }
    .smmsun-step { margin-bottom: 30px; text-align: center; }
    .smmsun-step-number { margin-left: auto; margin-right: auto; }
    .smmsun-about-visual { max-width: 570px; margin: 0 auto 30px; }
    .smmsun-about-copy { text-align: center; }
    .smmsun-about-copy h2,
    .smmsun-about-copy p { margin-left: auto; margin-right: auto; }
    .smmsun-bento { grid-template-columns: repeat(2, 1fr); }
    .smmsun-bento-card.wide { grid-column: span 1; }
    .smmsun-bento-card.tall { grid-row: span 1; }
    .smmsun-footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
    .smmsun-footer-grid > div:last-child { display: none; }
}

@media (max-width: 767.98px) {
    .smmsun-header .container { padding-left: 16px; padding-right: 16px; }
    .smmsun-signup-btn { min-width: 76px; height: 32px; padding: 0 12px; font-size: 11px; }
    .smmsun-hero { padding: 36px 0 34px; }
    .smmsun-eyebrow { font-size: 10px; }
    .smmsun-hero h1 { font-size: 31px; line-height: 1.1; letter-spacing: -1.2px; }
    .smmsun-hero-copy { font-size: 11px; }
    .smmsun-login-field { height: 44px; }
    .smmsun-login-bottom { flex-wrap: wrap; }
    .smmsun-login-bottom .smmsun-primary-btn { width: 100%; }
    .smmsun-register-note { text-align: center; }
    .smmsun-stat { justify-content: flex-start; padding-left: 8px; }
    .smmsun-stat > span { width: 38px; height: 38px; }
    .smmsun-stat strong { font-size: 11px; }
    .smmsun-stat small { font-size: 6.8px; }
    .smmsun-section-heading h2,
    .smmsun-transform-copy h2,
    .smmsun-about-copy h2 { font-size: 24px; }
    .smmsun-platform-tabs { grid-template-columns: repeat(2, 1fr); gap: 7px; }
    .smmsun-feature-service { padding: 22px 18px; flex-direction: column; text-align: center; }
    .smmsun-feature-logo { min-width: 0; }
    .smmsun-growth-board { min-height: 320px; }
    .smmsun-growth-card { width: 170px; }
    .smmsun-growth-card.g1 { left: 3%; top: 0; }
    .smmsun-growth-card.g2 { right: 2%; top: 86px; }
    .smmsun-growth-card.g3 { left: 4%; bottom: 77px; }
    .smmsun-growth-card.g4 { right: 4%; bottom: 0; }
    .smmsun-about { padding: 48px 0; }
    .smmsun-about-visual { min-height: 245px; }
    .smmsun-about-visual img { width: 305px; right: 10px; max-height: 250px; }
    .smmsun-about-shape { width: 270px; height: 205px; right: 22px; }
    .smmsun-about-badge { left: 7px; top: 63px; }
    .smmsun-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .smmsun-bento-card { min-height: 130px; }
    .smmsun-faq-grid .col-lg-6 + .col-lg-6 details:first-child { border-top: 0; }
    .smmsun-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
    .smmsun-footer-brand { grid-column: 1 / -1; }
    .smmsun-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 479.98px) {
    .smmsun-brand { font-size: 17px; }
    .smmsun-brand img { max-width: 112px; }
    .smmsun-hero h1 { font-size: 28px; }
    .smmsun-platform-tabs { grid-template-columns: 1fr 1fr; }
    .smmsun-growth-card { width: 154px; height: 62px; padding: 8px; }
    .smmsun-growth-card span { width: 30px; height: 30px; }
    .smmsun-about-badge { transform: scale(.88); transform-origin: left center; }
    .smmsun-footer-grid { grid-template-columns: 1fr 1fr; }
}
