* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    background: #fff;
    color: #151923;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    height: 76px;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand img {
    width: 155px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.brand { flex-shrink: 0; }

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.main-nav a {
    color: #111722;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 5px;
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #243bff, #d93fd5, #ff8a00);
    transition: 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #6b45ff;
    background: transparent;
    border: 1.5px solid rgba(107, 69, 255, 0.45);
    padding: 9px 20px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.22s ease;
    cursor: pointer;
}

.login-btn:hover {
    background: #6b45ff;
    color: #fff;
    border-color: #6b45ff;
    box-shadow: 0 4px 14px rgba(107, 69, 255, 0.28);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 24px;
    color: #151923;
}

/* Cart icon in main header */
.nav-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: #f3f1ff;
    border-radius: 50%;
    color: #6b45ff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
}
.nav-cart-btn:hover { background: #e8e3ff; }

.nav-cart-count {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    background: linear-gradient(135deg, #3e2b8f, #a993ff);
    color: #fff;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* Anchor scroll offset */
#about,
#faq,
#dealer-form,
#knowledge,
#shop,
#materials,
#contact {
    scroll-margin-top: 130px;
}

/* HERO */
.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 174, 0, 0.11), transparent 25%),
        radial-gradient(circle at 45% 40%, rgba(91, 83, 255, 0.08), transparent 28%),
        linear-gradient(115deg, #ffffff 0%, #fbfbff 58%, #ffffff 100%);
}

.hero-inner {
    min-height: 640px;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    gap: 20px;
    padding: 54px 0 46px;
    position: relative;
    z-index: 2;
}

.hero-brand {
    margin-bottom: 44px;
}

.hero-brand img {
    width: 245px;
    margin-bottom: 8px;
}

.hero-brand p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #3d4350;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 4.7vw, 64px);
    line-height: 1.12;
    font-weight: 800;
    color: #101620;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, #244bff, #b93ee6, #ff5050, #ffac00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    line-height: 1.55;
    color: #515866;
    max-width: 540px;
    letter-spacing: 0.3px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 610px;
    margin-top: 34px;
}

.point {
    text-align: center;
    padding: 0 14px;
    border-right: 1px solid #dddddd;
}

.point:last-child {
    border-right: 0;
}

.point i {
    font-size: 30px;
    color: #646b76;
    margin-bottom: 10px;
}

.point p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: #555d69;
    letter-spacing: 0.4px;
}

.hero-actions {
    display: flex;
    gap: 22px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.btn-gradient,
.btn-outline {
    min-width: 205px;
    height: 54px;
    border-radius: 7px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.btn-gradient {
    color: #fff;
    background: linear-gradient(100deg, #243bff, #bb36df, #ff7820);
    box-shadow: 0 16px 30px rgba(102, 72, 230, 0.22);
}

.btn-gradient span {
    margin-left: 10px;
}

.btn-outline {
    color: #303743;
    background: rgba(255,255,255,0.78);
    border: 1px solid #9c88d7;
}

.btn-gradient:hover,
.btn-outline:hover {
    transform: translateY(-4px);
}

.rating-row {
    margin-top: 44px;
}

.rating-row > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333a45;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.rating-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d6dce3, #8b96a3);
    border: 2px solid #fff;
    margin-left: -5px;
}

.avatars span:first-child {
    margin-left: 0;
}

.stars {
    color: #f2b600;
    font-size: 21px;
    letter-spacing: 7px;
    white-space: nowrap;
}

.rating-content strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    color: #232a35;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.filament-wheel {
    position: absolute;
    width: min(620px, 96%);
    right: 0;
    top: 34px;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 26px 34px rgba(0,0,0,0.18));
    z-index: 4;
    animation: wheelFloat 5.5s ease-in-out infinite;
}

@keyframes wheelFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

.wheel-glow {
    position: absolute;
    width: 570px;
    height: 570px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.7) 55%, transparent 70%);
    right: 22px;
    top: 22px;
    z-index: 1;
}

.hero-platform {
    position: absolute;
    width: 430px;
    height: 72px;
    border-radius: 50%;
    right: 92px;
    bottom: 48px;
    background: radial-gradient(ellipse at center, #ffffff 0%, #e6e6e6 60%, #cfcfcf 100%);
    box-shadow: 0 22px 36px rgba(0,0,0,0.12);
    z-index: 2;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.orbit-one {
    width: 720px;
    height: 230px;
    border: 1px solid rgba(80, 70, 255, 0.22);
    right: 19%;
    top: 190px;
    transform: rotate(-7deg);
    animation: orbitMove 9s ease-in-out infinite alternate;
}

.orbit-two {
    width: 720px;
    height: 230px;
    border: 1px solid rgba(255, 176, 0, 0.25);
    right: -7%;
    top: 145px;
    transform: rotate(9deg);
    animation: orbitMoveTwo 10s ease-in-out infinite alternate;
}

@keyframes orbitMove {
    from { transform: rotate(-7deg) translateY(0); }
    to { transform: rotate(-3deg) translateY(16px); }
}

@keyframes orbitMoveTwo {
    from { transform: rotate(9deg) translateY(0); }
    to { transform: rotate(5deg) translateY(18px); }
}

/* COMMON SECTIONS */
.about-section,
.home-fresh-section,
.innovators-section,
.showcase-section,
.faq-section {
    padding: 64px 0;
}

/* FEATURES SECTION — updated */
.features-section {
    padding: 72px 0 80px;
    background: #fff;
}

.home-fresh-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.home-fresh-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #111722;
    margin-top: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.home-fresh-viewall {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: #111722;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.home-fresh-viewall:hover { opacity: 0.8; }

.section-title {
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 8px;
    font-weight: 800;
    margin-bottom: 38px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    margin-bottom: 42px;
}

.stat-box { text-align: center; }

.stat-box i {
    font-size: 42px;
    color: #6c7280;
    margin-bottom: 18px;
}

.stat-box h3 {
    font-size: 34px;
    letter-spacing: 8px;
    line-height: 1;
    font-weight: 800;
}

.stat-box p {
    margin-top: 12px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
}

.stat-divider {
    height: 78px;
    background: #d0d0d0;
}

.about-main-text {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 4px;
    font-weight: 800;
}

.thin-line {
    width: 92%;
    height: 1px;
    background: #c4c4c4;
    margin: 28px auto;
}

.about-desc {
    max-width: 960px;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 3px;
    font-weight: 700;
}

.small-heading {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gradient-heading {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 5px;
    font-weight: 800;
    background: linear-gradient(90deg, #f28b20, #e83ca8, #4f6bc9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FEATURES SECTION HEADING — updated */
.features-section .gradient-heading {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0a0a0f;
    text-transform: none;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    white-space: nowrap;
    max-width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

/* FEATURE CARDS — updated */
.feature-card {
    background: #fff;
    border: 1px solid #e2e4ea;
    border-radius: 20px;
    padding: 32px 26px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.09);
    border-color: #bfc3ce;
}

.feature-card i {
    font-size: 17px;
    color: #1f2937;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ebebf2;
    border-radius: 12px;
}

.feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    min-height: unset;
}

.feature-card h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    text-transform: none;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 700;
    color: #111722;
}

/* MAKERS SECTION */
.makers-section { padding: 64px 0; }

.makers-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.makers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #111722;
    margin-bottom: 36px;
    letter-spacing: -1px;
}

.makers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.makers-card {
    border-radius: 20px;
    height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.makers-card:hover { transform: translateY(-6px); }

.makers-blue  { background: linear-gradient(145deg, #6c63ff 0%, #4f46e5 60%, #7c3aed 100%); }
.makers-beige { background: linear-gradient(145deg, #d6c9b4 0%, #c4b49a 100%); }
.makers-dark  { background: linear-gradient(145deg, #2a2a2a 0%, #111 100%); }

.makers-bottom {
    padding: 28px 28px 32px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.makers-beige .makers-bottom {
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 100%);
}

.makers-project {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
}

.makers-beige .makers-project { color: rgba(0,0,0,0.55); }

.makers-bottom h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.makers-beige .makers-bottom h3 { color: #1a1a1a; }

.makers-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.makers-beige .makers-bottom p { color: rgba(0,0,0,0.5); }

@media (max-width: 768px) {
    .makers-grid { grid-template-columns: 1fr; }
    .makers-card { height: 320px; }
    .makers-title { font-size: 28px; }
}

.innovator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 30px;
}

.innovator-card {
    height: 300px;
    border-radius: 20px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.innovator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 50px rgba(0,0,0,0.25);
}

a.innovator-card { text-decoration: none; cursor: pointer; }

.innovator-card.blue {
    background: linear-gradient(160deg, #4e8de0 0%, #2d5fa8 50%, #0f1535 100%);
}

.innovator-card.grey {
    background: linear-gradient(160deg, #8a8a9a 0%, #4a4a5a 50%, #18181e 100%);
}

.innovator-card.black {
    background: linear-gradient(160deg, #3e2b8f 0%, #241a5c 50%, #0e0b1a 100%);
}

.inno-content {
    padding: 26px;
    width: 100%;
}

.inno-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    margin-bottom: 14px;
    backdrop-filter: blur(6px);
}

.inno-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 4px 12px; border-radius: 999px;
    margin-bottom: 10px;
    backdrop-filter: blur(6px);
}

.inno-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px; font-weight: 800;
    color: #fff; margin-bottom: 8px;
    line-height: 1.25;
}

.inno-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; color: rgba(255,255,255,0.75);
    line-height: 1.6; margin-bottom: 14px;
}

.inno-material {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.9);
    display: flex; align-items: center; gap: 6px;
}

.inno-material i { font-size: 8px; }

.showcase-section {
    background: linear-gradient(120deg, #f8f9ff, #ffffff);
    overflow: hidden;
}

.showcase-inner {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 35px;
}

.showcase-text p:last-child {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    color: #505866;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 540px;
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-wheel {
    width: min(430px, 88%);
    border-radius: 50%;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
    animation: moveAround 7s ease-in-out infinite;
    display: block;
}

@keyframes moveAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(14px, -12px) rotate(2deg); }
    50% { transform: translate(0, -22px) rotate(0deg); }
    75% { transform: translate(-14px, -10px) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: #111;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 998;
}

.announcement-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

.announcement-track span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    padding-right: 60px;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* FAQ */
.faq-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 14px;
}

.faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #111;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    margin-bottom: 36px;
    line-height: 1.2;
}

.faq-list {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question span {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    position: static;
    transition: background 0.2s, color 0.2s;
    color: #374151;
}

.faq-item.open .faq-question span {
    background: linear-gradient(135deg, #3e2b8f, #a993ff);
    color: #fff;
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    text-align: left;
    letter-spacing: 0;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 6px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid #d2d2d2;
    background: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding: 42px 0 34px;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0;
    font-size: 11px;
    line-height: 1.5;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 5px;
    margin-bottom: 14px;
}

.footer-col a,
.footer-col p {
    display: block;
    text-decoration: none;
    color: #222;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-bottom {
    height: 44px;
    background: #707070;
}

/* ANIMATIONS */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: 0.85s ease;
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(44px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }

.reveal-scale {
    transform: scaleX(0);
    transform-origin: center;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-scale.active {
    opacity: 1;
    transform: scaleX(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 45px 0 60px;
    }

    .hero-content { text-align: center; }
    .hero-brand img { margin-left: auto; margin-right: auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-points { margin-left: auto; margin-right: auto; }
    .hero-actions, .rating-content { justify-content: center; }
    .hero-visual { min-height: 470px; }

    .filament-wheel {
        left: 50%; right: auto;
        transform: translateX(-50%);
        width: min(520px, 88%);
        top: 20px;
    }

    .wheel-glow {
        left: 50%; right: auto;
        transform: translateX(-50%);
        width: 500px; height: 500px;
        top: 10px;
    }

    .hero-platform {
        left: 50%; right: auto;
        transform: translateX(-50%);
        bottom: 34px; width: 360px;
    }

    .showcase-inner { grid-template-columns: 1fr; text-align: center; }
    .showcase-text p:last-child { margin-left: auto; margin-right: auto; }
}

@media (max-width: 850px) {
    .site-header { height: auto; }

    .header-inner {
        height: auto;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .brand { flex: 1; }
    .brand img { width: 135px; }
    .menu-toggle { display: block; }
    .main-nav, .login-btn { display: none; }

    .main-nav.open {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 16px 0 8px;
    }

    .login-btn.open {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        margin: 0 auto 10px;
    }

    .hero-inner { padding-top: 34px; }
    .hero-brand { margin-bottom: 30px; }
    .hero-brand img { width: 205px; }
    .hero-content h1 { font-size: 40px; }
    .hero-subtitle { font-size: 17px; }

    .hero-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .point { border-right: 0; }
    .hero-visual { min-height: 380px; }
    .filament-wheel { width: min(390px, 92%); }
    .wheel-glow { width: 380px; height: 380px; }
    .hero-platform { display: none; }

    .stats-row,
    .feature-grid,
    .innovator-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .stat-divider { display: none; }
    .about-main-text { font-size: 14px; letter-spacing: 3px; }
    .about-desc { font-size: 11px; letter-spacing: 2px; }
}

@media (max-width: 520px) {
    .container { width: min(100% - 24px, 1180px); }
    .hero-content h1 { font-size: 34px; }
    .hero-subtitle { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .btn-gradient, .btn-outline { width: 100%; min-width: unset; }
    .stars { font-size: 18px; letter-spacing: 4px; }
    .hero-visual { min-height: 315px; }
    .filament-wheel { width: 310px; }
    .wheel-glow { width: 310px; height: 310px; }
    .section-title { font-size: 18px; letter-spacing: 5px; }
    .gradient-heading { font-size: 17px; letter-spacing: 3px; }
    .faq-question { font-size: 11px; letter-spacing: 2px; }
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.rotating-wheel {
    width: min(560px, 90%);
    height: auto;
    position: relative;
    z-index: 3;
    animation: realWheelRotate 18s linear infinite;
    transform-origin: center center;
    filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.18));
}

@keyframes realWheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel-bg {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #f3f3f3 55%, transparent 72%);
    z-index: 1;
}

.wheel-shadow {
    position: absolute;
    width: 420px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.13);
    filter: blur(18px);
    bottom: 45px;
    z-index: 0;
}

/* ================= CONTACT PAGE ================= */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background:
        radial-gradient(circle at 75% 20%, rgba(247, 177, 38, 0.13), transparent 35%),
        radial-gradient(circle at 15% 30%, rgba(80, 70, 255, 0.10), transparent 35%),
        #fbfbfd;
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 800;
    color: #111722;
    letter-spacing: -2px;
    margin: 22px 0;
}

.contact-hero-content h1 span {
    background: linear-gradient(90deg, #2f42ff, #d945d7, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-text {
    max-width: 620px;
    color: #5d6470;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.contact-quick-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.contact-quick-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e7e7ef;
    border-radius: 18px;
    padding: 15px 18px;
    box-shadow: 0 15px 40px rgba(20, 24, 40, 0.06);
    font-family: 'Montserrat', sans-serif;
    color: #242936;
}

.contact-quick-card i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #3437ff, #ff6b24);
    color: #fff;
}

.contact-hero-card {
    position: relative;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 220, 230, 0.9);
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 35px 90px rgba(28, 32, 48, 0.12);
    overflow: hidden;
}

.contact-card-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(47,66,255,0.22), rgba(255,138,0,0.18));
    filter: blur(30px);
    border-radius: 50%;
    right: -90px;
    top: -90px;
}

.contact-hero-card h3 {
    position: relative;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 24px;
    color: #141924;
    margin-bottom: 8px;
}

.contact-hero-card > p {
    position: relative;
    color: #6a707d;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 28px;
    letter-spacing: 5px;
}

.contact-info-list {
    position: relative;
    display: grid;
    gap: 16px;
}

.contact-info-list a,
.contact-info-list > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 20px;
    text-decoration: none;
    color: #1d2330;
    transition: 0.35s ease;
}

.contact-info-list a:hover,
.contact-info-list > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(30, 36, 60, 0.09);
}

.contact-info-list i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #f3f4f8;
    color: #6536d9;
    font-size: 18px;
}

.contact-info-list small {
    display: block;
    font-family: 'Outfit', sans-serif;
    color: #8a909c;
    font-size: 12px;
    margin-bottom: 4px;
}

.contact-info-list strong {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

.contact-section {
    padding: 90px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

.contact-form-box,
.side-panel,
.support-card {
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(20, 25, 40, 0.07);
}

.contact-form-box { padding: 42px; }
.contact-form { margin-top: 30px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: #303746;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dedee8;
    background: #fafafa;
    border-radius: 18px;
    padding: 16px 18px;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #1f2633;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: #7d5cff;
    box-shadow: 0 0 0 4px rgba(125, 92, 255, 0.10);
}

.contact-submit { border: none; cursor: pointer; margin-top: 8px; }
.contact-side-box { display: grid; gap: 24px; }

.side-panel { padding: 34px; }

.side-panel h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    margin-bottom: 24px;
}

.side-panel ul { list-style: none; padding: 0; margin: 0; }

.side-panel li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #555d6a;
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    margin-bottom: 18px;
}

.side-panel li i {
    color: #fff;
    background: linear-gradient(135deg, #3437ff, #ff6b24);
    width: 24px; height: 24px; min-width: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    margin-top: 3px;
}

.support-card {
    padding: 34px;
    background: linear-gradient(135deg, rgba(47,66,255,0.95), rgba(224,61,173,0.92), rgba(255,112,31,0.92));
    color: #fff;
    overflow: hidden;
    position: relative;
}

.support-card i { font-size: 38px; margin-bottom: 18px; }

.support-card h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-card p { font-family: 'Outfit', sans-serif; line-height: 1.7; opacity: 0.95; }

.contact-map-section { padding: 0 0 90px; background: #fff; }

.map-card {
    min-height: 360px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(15,20,30,0.72), rgba(15,20,30,0.45)),
        radial-gradient(circle at 25% 40%, rgba(80,70,255,0.5), transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(255,138,0,0.45), transparent 35%),
        #171b24;
    box-shadow: 0 35px 90px rgba(20, 25, 40, 0.18);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

.map-overlay {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 58px;
    color: #fff;
}

.map-overlay h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.05;
    margin: 18px 0;
}

.map-overlay p { font-family: 'Outfit', sans-serif; line-height: 1.8; color: rgba(255,255,255,0.85); }

@media (max-width: 992px) {
    .contact-hero-inner, .contact-grid { grid-template-columns: 1fr; }
    .contact-hero { padding-top: 90px; }
    .contact-hero-card { max-width: 650px; }
}

@media (max-width: 768px) {
    .contact-hero-content h1 { letter-spacing: -1px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-box, .contact-hero-card, .side-panel, .support-card { padding: 26px; border-radius: 24px; }
    .contact-quick-row { flex-direction: column; }
    .map-overlay { padding: 34px; }
}

@media (max-width: 480px) {
    .contact-hero { padding: 70px 0 50px; }
    .contact-section { padding: 60px 0; }
    .contact-hero-text { font-size: 15px; }
    .contact-info-list a, .contact-info-list > div { padding: 14px; }
}

/* ================= KNOWLEDGE PAGE ================= */
.knowledge-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 138, 0, 0.12), transparent 34%),
        radial-gradient(circle at 12% 30%, rgba(75, 72, 255, 0.11), transparent 34%),
        #fbfbfd;
}

.knowledge-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.knowledge-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 0.98;
    font-weight: 800;
    color: #111722;
    letter-spacing: -2px;
    margin: 22px 0;
}

.knowledge-hero-content h1 span {
    background: linear-gradient(90deg, #2f42ff, #d945d7, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.knowledge-hero-text {
    max-width: 660px;
    color: #5d6470;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.knowledge-search-box {
    margin-top: 34px;
    max-width: 620px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e4e5ee;
    border-radius: 22px;
    padding: 16px 20px;
    box-shadow: 0 18px 50px rgba(20, 25, 40, 0.07);
}

.knowledge-search-box i { color: #6b45ff; font-size: 18px; }

.knowledge-search-box input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1f2633;
    background: transparent;
}

.knowledge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.knowledge-tags span {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7e7ef;
    color: #303746;
}

.knowledge-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 40px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(220, 220, 230, 0.9);
    box-shadow: 0 35px 90px rgba(28, 32, 48, 0.12);
    backdrop-filter: blur(16px);
}

.knowledge-card-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(47,66,255,0.22), rgba(255,138,0,0.18));
    filter: blur(30px);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.knowledge-hero-card > i {
    position: relative;
    width: 64px; height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, #3437ff, #ff6b24);
    margin-bottom: 24px;
}

.knowledge-hero-card h3 {
    position: relative;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 24px;
    margin-bottom: 14px;
    color: #141924;
}

.knowledge-hero-card p {
    position: relative;
    color: #656c78;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

.quick-rule-list {
    position: relative;
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.quick-rule-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ececf3;
    font-family: 'Montserrat', sans-serif;
}

.quick-rule-list strong { color: #111722; }
.quick-rule-list span { color: #6b45ff; font-weight: 700; }

.knowledge-categories-section,
.material-guide-section,
.knowledge-faq-section {
    padding: 90px 0;
    background: #fff;
}

.knowledge-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.knowledge-category-card {
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e8e8ef;
    box-shadow: 0 25px 70px rgba(20, 25, 40, 0.06);
    transition: 0.35s ease;
}

.knowledge-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(20, 25, 40, 0.10);
}

.knowledge-category-card i {
    width: 54px; height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(135deg, #3437ff, #ff6b24);
    margin-bottom: 22px;
}

.knowledge-category-card h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 14px;
    color: #151b27;
}

.knowledge-category-card p {
    font-family: 'Montserrat', sans-serif;
    color: #656c78;
    line-height: 1.7;
    font-size: 14px;
}

.print-settings-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 138, 0, 0.08), transparent 32%),
        radial-gradient(circle at 10% 70%, rgba(75, 72, 255, 0.08), transparent 32%),
        #fbfbfd;
}

.settings-header { max-width: 780px; }

.settings-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
    background: #fff;
    border: 1px solid #e8e8ef;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(20, 25, 40, 0.07);
}

.settings-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
}

.settings-table th {
    background: #111722;
    color: #fff;
    text-align: left;
    padding: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.settings-table td {
    padding: 20px;
    border-bottom: 1px solid #ececf3;
    color: #555d6a;
    font-size: 14px;
}

.settings-table tr:last-child td { border-bottom: none; }
.settings-table strong { color: #111722; }

.settings-note {
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #6a707d;
    line-height: 1.7;
}

.material-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 42px;
}

.material-guide-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #e8e8ef;
    box-shadow: 0 25px 70px rgba(20, 25, 40, 0.07);
}

.material-guide-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 7px;
    background: linear-gradient(90deg, #2f42ff, #d945d7, #ff8a00);
}

.material-guide-card span {
    font-family: 'Outfit', sans-serif;
    color: #d7d9e2;
    font-size: 48px;
    font-weight: 800;
}

.material-guide-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    color: #111722;
    margin: 8px 0 14px;
}

.material-guide-card p,
.material-guide-card li {
    font-family: 'Montserrat', sans-serif;
    color: #656c78;
    line-height: 1.7;
}

.material-guide-card ul { margin: 20px 0 0; padding-left: 18px; }

.troubleshooting-section {
    padding: 90px 0;
    background:
        linear-gradient(135deg, rgba(17, 23, 34, 0.96), rgba(30, 34, 48, 0.94)),
        #111722;
    color: #fff;
}

.troubleshooting-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: center;
}

.troubleshooting-section .gradient-heading { max-width: 680px; }

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.problem-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 24px;
}

.problem-item h4 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.problem-item p { font-family: 'Outfit', sans-serif; color: rgba(255,255,255,0.75); line-height: 1.7; }

.troubleshooting-card {
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(47,66,255,0.95), rgba(224,61,173,0.92), rgba(255,112,31,0.92));
    box-shadow: 0 35px 90px rgba(0,0,0,0.25);
}

.troubleshooting-card i { font-size: 44px; margin-bottom: 22px; }

.troubleshooting-card h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.troubleshooting-card p { font-family: 'Outfit', sans-serif; line-height: 1.8; }

.knowledge-cta-section { padding: 0 0 90px; background: #fff; }

.knowledge-cta-card {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 46px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 138, 0, 0.18), transparent 30%),
        radial-gradient(circle at 10% 70%, rgba(75, 72, 255, 0.18), transparent 32%),
        #fbfbfd;
    border: 1px solid #e8e8ef;
    box-shadow: 0 25px 70px rgba(20, 25, 40, 0.08);
}

.knowledge-cta-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
    color: #111722;
    margin: 14px 0;
}

.knowledge-cta-card p { font-family: 'Outfit', sans-serif; color: #656c78; line-height: 1.7; max-width: 680px; }
.knowledge-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1100px) {
    .knowledge-category-grid { grid-template-columns: repeat(2, 1fr); }
    .material-guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .knowledge-hero-inner, .troubleshooting-inner { grid-template-columns: 1fr; }
    .knowledge-cta-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .knowledge-hero { padding: 90px 0 60px; }
    .knowledge-category-grid, .problem-list { grid-template-columns: 1fr; }
    .knowledge-hero-card { padding: 28px; border-radius: 26px; }
    .quick-rule-list div { flex-direction: column; gap: 6px; }
    .knowledge-cta-card { padding: 30px; border-radius: 26px; }
}

@media (max-width: 480px) {
    .knowledge-hero-content h1 { letter-spacing: -1px; }
    .knowledge-hero-text { font-size: 15px; }
    .knowledge-search-box { padding: 14px 16px; border-radius: 18px; }
}

p { letter-spacing: 1px; }

.footer-bottom {
    background: #6b6b6b;
    padding: 16px 0;
    margin-top: 30px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-bottom-inner p { margin: 0; }
.footer-bottom-inner strong { font-family: 'Outfit', sans-serif; letter-spacing: 2px; }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a { color: #ffffff; text-decoration: none; transition: 0.3s ease; }
.footer-bottom-links a:hover { color: #f97316; }
.footer-bottom-links span { opacity: 0.5; }

@media (max-width: 768px) {
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* USER ACCOUNT DROPDOWN */
.user-menu { position: relative; }

.user-menu-btn {
    border: 1.5px solid rgba(107, 69, 255, 0.45);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    background: transparent;
    color: #6b45ff;
    padding: 9px 20px;
    border-radius: 999px;
    transition: all 0.22s ease;
}

.user-menu-btn:hover {
    background: #6b45ff;
    color: #fff;
    border-color: #6b45ff;
    box-shadow: 0 4px 14px rgba(107, 69, 255, 0.28);
}

.user-menu-btn span {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(16,21,28,.13);
    min-width: 190px;
    z-index: 1001;
    overflow: hidden;
}

.user-menu:hover .user-dropdown,
.user-menu.open .user-dropdown { display: block; }

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #151923;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: background 0.18s;
}

.user-dropdown a i { font-size: 13px; width: 16px; text-align: center; color: #6b45ff; }
.user-dropdown a:hover { background: #f5f3ff; }
.user-dropdown-logout { border-top: 1px solid #eff0f3; color: #e03a3a !important; }
.user-dropdown-logout i { color: #e03a3a !important; }
.user-dropdown-logout:hover { background: #fff5f5 !important; }

@media (max-width: 850px) {
    .user-menu { display: none; }
    .user-menu.open {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .user-menu-btn { width: 180px; justify-content: center; margin: 0 auto 10px; }
    .user-dropdown {
        position: static;
        display: block;
        box-shadow: none;
        border: 1px solid #e7e7e7;
        border-radius: 12px;
        width: 180px;
        margin: 0 auto 10px;
    }
}

@media (max-width: 480px) {
    .brand img { height: 44px; }
    .hero-content h1 { font-size: 30px; }
    .hero-subtitle { font-size: 14px; }
    .feature-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .feature-card { padding: 24px 16px 20px; }
    .faq-question { font-size: 14px; padding: 18px 16px; }
    .account-card { padding: 18px 14px; }
    .acct-form-grid { grid-template-columns: 1fr; }
    .address-grid { grid-template-columns: 1fr; }
    .footer-inner { gap: 24px; }
    .section-title { font-size: 16px; letter-spacing: 4px; }
}

@media (max-width: 360px) {
    .feature-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .btn-gradient, .btn-outline { width: 100%; min-width: unset; }
}
