* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #0f172a;
    background: #ffffff;
}

a {
    text-decoration: none;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.site-title-text {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.menu-item > a:hover {
    color: #2563eb;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 10px;
    list-style: none;
    margin: 0;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.sub-menu li a:hover {
    background: #f8fafc;
    color: #2563eb;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-notification-btn {
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.header-notification-btn:hover {
    border-color: #cbd5e1;
    color: #2563eb;
}

.header-notification-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-header-tools {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 40px;
    padding: 0 18px;
    border-radius: 7px;
    background: linear-gradient(135deg, #1f6bff 0%, #2d78ff 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(45, 109, 243, 0.18);
}

.header-primary-btn:hover {
    transform: translateY(-1px);
    opacity: 0.94;
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .header-inner {
        min-height: 76px;
    }
}
.site-footer {
    background: #f8f8f8;
    border-top: 1px solid #e5e7eb;
    margin-top: 60px;
}

.footer-newsletter {
    padding: 48px 0 22px;
}

.footer-newsletter-inner h3 {
    margin: 0 0 18px;
    font-size: 32px;
    color: #111827;
    font-weight: 700;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 760px;
}

.footer-newsletter-form input {
    flex: 1;
    height: 52px;
    line-height: 52px;
    border: 1px solid #d1d5db;
    border-right: 0;
    border-radius: 12px 0 0 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
}

.footer-newsletter-form button {
    min-width: 132px;
    height: 52px;
    border: 0;
    border-radius: 0 12px 12px 0;
    background: #111111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.footer-main {
    padding: 30px 0 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 34px;
    border-bottom: 1px solid #e5e7eb;
}

.footer-info-block h4 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #111827;
}

.footer-info-block p {
    margin: 0 0 12px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.footer-info-block a {
    color: #4b5563;
}

.footer-office-item {
    margin-bottom: 24px;
}

.footer-office-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #111827;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    color: #111827;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: #2563eb;
    color: #2563eb;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 34px 0;
    border-bottom: 1px solid #e5e7eb;
}

.footer-links-column {
    padding: 0 22px;
    border-right: 1px solid #e5e7eb;
}

.footer-links-column:first-child {
    padding-left: 0;
}

.footer-links-column:last-child {
    border-right: 0;
    padding-right: 0;
}

.footer-links-column h5 {
    margin: 0 0 18px;
    font-size: 16px;
    color: #111827;
}

.footer-links-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: #6b7280;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links-column ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    padding: 22px 0 28px;
}

.footer-bottom p {
    margin: 0;
    color: #374151;
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 22px;
    z-index: 150;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffffff 0%, #eefaf2 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid #d1fae5;
}

.floating-whatsapp-left {
    left: 18px;
}

.floating-whatsapp-right {
    right: 18px;
}

.floating-whatsapp-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.floating-whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-whatsapp-text strong {
    font-size: 14px;
    color: #111827;
}

.floating-whatsapp-text small {
    font-size: 12px;
    color: #6b7280;
}

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: #1f2937;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    z-index: 160;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }

    .footer-links-column:nth-child(2) {
        border-right: 0;
        padding-right: 0;
    }

    .footer-links-column:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .footer-newsletter {
        padding: 34px 0 18px;
    }

    .footer-newsletter-inner h3 {
        font-size: 24px;
        margin: 0 0 16px;
    }

    .footer-newsletter-form {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 100%;
    }

.footer-newsletter-form input {
    width: 100%;
    height: 48px;
    line-height: 48px;
    border: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 14px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
}


    .footer-newsletter-form button {
        width: 100%;
        min-width: 0;
        height: 54px;
        border-radius: 14px;
        margin-top: 0;
        font-size: 14px;
    }

    .footer-top-grid,
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-column {
        padding: 0;
        border-right: 0;
    }

    .floating-whatsapp {
        left: 12px !important;
        right: 12px !important;
        bottom: 14px;
        justify-content: flex-start;
    }

    .scroll-top-btn {
        right: 14px;
        bottom: 92px;
    }
}
.home-placeholder {
    padding: 90px 0;
}

.home-placeholder h1 {
    margin: 0 0 12px;
    font-size: 42px;
    color: #111827;
}

.home-placeholder p {
    margin: 0;
    font-size: 18px;
    color: #6b7280;
}
body.mobile-menu-open {
    overflow: hidden;
}

.site-topbar {
    background: #0b254b;
    color: #fff;
}

.site-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-topbar-left,
.site-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 14px;
    min-height: 38px;
    opacity: 0.96;
}

.site-topbar-link:hover {
    opacity: 1;
}

.site-topbar-phone {
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #ececec;
}

.header-inner {
    min-height: 79px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.site-title-text {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 18px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
}

.menu-item > a:hover {
    color: #2563eb;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
}

.sub-menu li a:hover {
    background: #f8fafc;
    color: #2563eb;
}

.header-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 184px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e63f1 0%, #2d6df3 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(45, 109, 243, 0.18);
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    cursor: pointer;
}



.mobile-menu.is-active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 210;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: min(344px, 100%);
    height: 100vh;
    background: #ffffff;
    z-index: 220;
    transition: left 0.28s ease;
    padding: 18px 16px 24px;
    overflow-y: auto;
    box-shadow: 18px 0 34px rgba(15, 23, 42, 0.08);
}

.mobile-menu.is-active {
    left: 0;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 2px 14px;
    border-bottom: 1px solid #dbe3ee;
}

.mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 52px);
}

.mobile-menu-logo {
    max-height: 34px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

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

.mobile-menu-item {
    border-bottom: 1px solid #dbe3ee;
    padding: 12px 0;
}

.mobile-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu-link {
    flex: 1;
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.mobile-submenu-toggle {
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.mobile-menu-item.is-open .mobile-submenu-toggle {
    transform: rotate(180deg);
}

.mobile-sub-menu {
    display: none;
    margin-top: 12px;
    padding-left: 10px;
}

.mobile-menu-item.is-open .mobile-sub-menu {
    display: block;
}

.mobile-sub-menu li + li {
    margin-top: 10px;
}

.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.mobile-sub-menu-arrow {
    color: #0f172a;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.mobile-menu-footer-action {
    padding-top: 18px;
}

.mobile-menu-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1f6bff 0%, #2d78ff 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(45, 109, 243, 0.18);
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slider-section {
    position: relative;
    background: #efefef;
}

.hero-slider-wrap {
    position: relative;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 600px;
    background: #efefef;
}

.hero-slide.is-active {
    display: block;
}

.hero-slide-inner {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-slide-content {
    max-width: 560px;
}

.hero-slide-content h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.14;
    font-weight: 500;
    color: #0d2c5a;
    letter-spacing: -0.02em;
}
.hero-slide-content p {
    margin: 0 0 26px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 560px;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #232d7a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.hero-slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slide-visual img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    z-index: 5;
}

.hero-slider-arrow-prev {
    left: 10px;
}

.hero-slider-arrow-next {
    right: 10px;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 0 18px;
    margin-top: -36px;
    position: relative;
    z-index: 6;
}

.hero-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: #d1d5db;
    cursor: pointer;
}

.hero-dot.is-active {
    background: #163d7a;
}

.home-placeholder {
    padding: 70px 0;
}

.home-placeholder h2 {
    margin: 0 0 10px;
    font-size: 34px;
    color: #111827;
}

.home-placeholder p {
    margin: 0;
    font-size: 16px;
    color: #6b7280;
}

@media (max-width: 1199px) {
    .hero-slide-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .site-topbar {
        display: none;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-header-tools {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide,
    .hero-slide-inner {
        min-height: auto;
    }

    .hero-slide-inner {
        grid-template-columns: 1fr;
        padding: 56px 0;
    }

    .hero-slide-content {
        max-width: 100%;
    }

    .hero-slide-content h1 {
        font-size: 38px;
        line-height: 1.18;
    }

    .hero-slide-visual img {
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .header-inner {
        min-height: 60px;
    }

    .site-logo {
        max-height: 34px;
    }

    .hero-slide-inner {
        gap: 24px;
        padding: 42px 0;
    }

    .hero-slide-content h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-slide-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .hero-slide-btn {
        min-height: 52px;
        padding: 0 22px;
        font-size: 15px;
    }

    .hero-slider-arrow {
        width: 46px;
        height: 46px;
    }

    .hero-slider-arrow-prev {
        left: 8px;
    }

    .hero-slider-arrow-next {
        right: 8px;
    }
}
.services-section {
    padding: 56px 0 34px;
    background: #ffffff;
}

.services-section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.services-section-heading h2 {
    margin: 0 0 10px;
    font-size: 46px;
    line-height: 1.1;
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.services-section-heading p {
    margin: 0;
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
    border-color: #dbe5f4;
}

.service-card-media {
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-media img.service-card-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.service-card-placeholder {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background: #eef2ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.service-card-body {
    padding: 22px;
}

.service-card-body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
    color: #111827;
}

.service-card-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-section-heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 42px 0 20px;
    }

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

    .services-section-heading h2 {
        font-size: 30px;
    }

    .services-section {
        padding: 42px 0 20px;
    }

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

    .services-section-heading h2 {
        font-size: 30px;
    }

    .services-section-heading p {
        font-size: 15px;
    }

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

.references-section {
    padding: 58px 0 30px;
    background: #f3f3f3;
}

.references-section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.references-section-heading h2 {
    margin: 0 0 12px;
    font-size: 56px;
    line-height: 1.08;
    color: #163d7a;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.references-section-heading p {
    margin: 0;
    font-size: 16px;
    color: #7b7b7b;
    line-height: 1.7;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 34px;
}

.reference-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}

.reference-card-image {
    background: #ffffff;
    padding: 12px 12px 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
}

.reference-card-image img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
    border: 1px solid #ececec;
    border-radius: 6px;
    background: #fff;
}

.reference-card-placeholder {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 34px;
    background: #f8fafc;
    border: 1px solid #ececec;
    border-radius: 6px;
}

.reference-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px 20px;
    text-align: center;
    flex: 1;
}

.reference-card-body h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
    color: #111827;
    font-weight: 500;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reference-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.reference-btn {
    min-width: 126px;
    height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
}

.reference-btn-preview {
    border: 1.5px solid #4766ff;
    color: #4766ff;
}

.reference-btn-panel {
    border: 1.5px solid #39b54a;
    color: #39b54a;
}

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

@media (max-width: 1199px) {
    .references-section-heading h2 {
        font-size: 46px;
    }

    .reference-card-image img,
    .reference-card-placeholder {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .references-section-heading h2 {
        font-size: 38px;
    }

    .reference-card-image img,
    .reference-card-placeholder {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .references-section {
        padding: 42px 0 18px;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .references-section-heading h2 {
        font-size: 30px;
    }

    .references-section-heading p {
        font-size: 15px;
    }

    .reference-card-image img,
    .reference-card-placeholder {
        height: auto;
        aspect-ratio: 1 / 0.78;
    }

    .reference-card-body h3 {
        min-height: auto;
    }

    .reference-card-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reference-btn {
        min-width: 118px;
    }
}
.feature-highlight-section {
    padding: 54px 0 24px;
    background: #f3f3f3;
}

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

.feature-highlight-card {
    background: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    padding: 34px 28px 24px;
    min-height: 308px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.feature-highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.feature-highlight-icon {
    margin-bottom: 26px;
}

.feature-highlight-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.feature-highlight-icon-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #eef2ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-highlight-card h3 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.35;
    color: #111827;
    font-weight: 500;
}

.feature-highlight-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #7a7a7a;
    flex: 1;
}

.feature-highlight-btn {
    min-width: 76px;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #1f78ff;
    color: #1f78ff;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feature-highlight-btn:hover {
    background: #1f78ff;
    color: #fff;
}

@media (max-width: 1199px) {
    .feature-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .feature-highlight-section {
        padding: 36px 0 12px;
    }

    .feature-highlight-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight-card {
        min-height: auto;
        padding: 28px 22px 22px;
    }
}
.page-banner {
    position: relative;
    min-height: 164px;
    background: #edf1f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner.has-banner-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.34);
    z-index: 1;
    display: none;
}

.page-banner.has-banner-image .page-banner-overlay {
    display: block;
}

.page-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.page-banner h1 {
    margin: 0;
    font-size: 31px;
    line-height: 1.15;
    color: #111827;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.page-banner.has-banner-image h1 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
}

.page-content-section {
    padding: 34px 0 34px;
    background: #ffffff;
}

.page-content-container {
    max-width: 1220px;
}

.page-content-plain {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: 0;
}

.page-content-plain br {
    content: "";
    display: block;
    margin-bottom: 20px;
}

.page-content-plain p {
    margin: 0 0 20px;
}

@media (max-width: 767px) {
    .page-banner {
        min-height: 118px;
    }

    .page-banner.has-banner-image {
        min-height: 160px;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    .page-banner.has-banner-image h1 {
        font-size: 28px;
    }

    .page-content-section {
        padding: 6px 0 26px;
    }

    .page-content-plain {
        font-size: 15px;
        line-height: 1.6;
    }

    .page-content-plain br {
        margin-bottom: 16px;
    }
}
.contact-hero-section {
    background: linear-gradient(135deg, #4a49d3 0%, #8a27b8 100%);
    padding: 48px 0 54px;
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
}

.contact-hero-icon {
    width: 74px;
    height: 74px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
}

.contact-hero-content h1 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.contact-hero-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 760px;
}

.contact-page-section {
    background: #f3f3f3;
    padding: 26px 0 48px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-info-card,
.contact-note-card,
.contact-form-card,
.contact-hours-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
}

.contact-info-card {
    min-height: 118px;
    padding: 24px 20px;
    text-align: center;
}

.contact-info-card-icon {
    font-size: 26px;
    color: #111827;
    margin-bottom: 10px;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.contact-info-card p {
    margin: 0;
    font-size: 14px;
    color: #111827;
}

.contact-note-card {
    padding: 22px 20px;
    text-align: center;
    margin-bottom: 16px;
}

.contact-note-icon {
    font-size: 30px;
    color: #111827;
    margin-bottom: 10px;
}

.contact-note-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #111827;
}

.contact-note-card p {
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
    align-items: start;
}

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

.contact-form-card h3 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

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

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: #111827;
    outline: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #8b5cf6;
}

.contact-submit-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: #ff4456;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.contact-hours-card {
    padding: 28px 18px;
    text-align: center;
}

.contact-hours-icon {
    font-size: 28px;
    color: #111827;
    margin-bottom: 12px;
}

.contact-hours-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #111827;
}

.contact-hours-card p {
    margin: 0 0 8px;
    font-size: 14px;
    color: #111827;
    line-height: 1.7;
}

.contact-alert {
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.contact-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 34px 0 40px;
    }

    .contact-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}
* {
    -webkit-tap-highlight-color: transparent;
}

a,
button,
img,
input,
textarea,
select,
label,
div,
span {
    -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}
.account-section {
    padding: 34px 0 42px;
    background: #f7f7f7;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.account-sidebar-card,
.account-panel-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.account-sidebar-card {
    padding: 18px;
}

.account-user-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 16px;
    border-bottom: 1px solid #eef2f7;
}

.account-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.account-user-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.account-user-meta strong {
    font-size: 15px;
    color: #111827;
    line-height: 1.3;
}

.account-user-meta span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    word-break: break-word;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    background: #fff;
    transition: all 0.2s ease;
}

.account-nav a:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.account-nav a.active {
    border-color: #dbeafe;
    background: #eff6ff;
    color: #1d4ed8;
}

.account-nav a i {
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.account-nav-logout {
    color: #b91c1c !important;
}

.account-panel-card {
    padding: 24px;
}

.account-panel-card + .account-panel-card {
    margin-top: 22px;
}

.account-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-left: 14px;
    border-left: 3px solid #84cc16;
}

.account-panel-head h2 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #111827;
    line-height: 1.25;
}

.account-panel-head p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.account-summary-box {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 18px;
    background: #fff;
}

.account-summary-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.account-summary-box h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
}

.account-summary-box p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    word-break: break-word;
}

.account-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.account-quick-card {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 20px 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #111827;
    transition: all 0.2s ease;
}

.account-quick-card:hover {
    transform: translateY(-2px);
    border-color: #dbeafe;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.account-quick-card i {
    font-size: 18px;
    color: #2563eb;
}

.account-quick-card strong {
    font-size: 16px;
    line-height: 1.35;
    color: #111827;
}

.account-quick-card span {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

@media (max-width: 991px) {
    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-summary-grid,
    .account-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .account-section {
        padding: 24px 0 28px;
    }

    .account-sidebar-card,
    .account-panel-card {
        padding: 16px;
    }

    .account-panel-head h2 {
        font-size: 18px;
    }

    .account-summary-box h3 {
        font-size: 24px;
    }
}
.account-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.account-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.account-table thead th {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    padding: 14px 14px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
}

.account-table tbody td {
    padding: 14px 14px;
    border-bottom: 1px solid #eef2f7;
    vertical-align: middle;
    font-size: 14px;
    color: #111827;
}

.account-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #334155;
}

.account-status-badge.is-open,
.account-status-badge.is-paid,
.account-status-badge.is-completed {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.account-status-badge.is-pending,
.account-status-badge.is-unpaid,
.account-status-badge.is-preparing {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fdba74;
}

.account-status-badge.is-cancelled,
.account-status-badge.is-failed,
.account-status-badge.is-closed {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
}

.account-table-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 6px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
}

.account-empty-note {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

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

.account-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.account-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.account-form-group input,
.account-form-group textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    outline: none;
}

.account-form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: Arial, Helvetica, sans-serif;
}

.account-form-group input:focus,
.account-form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.account-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: #356ae6;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.account-primary-btn-sm {
    min-width: 120px;
    height: 40px;
    padding: 0 14px;
}

.account-ticket-thread {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.account-ticket-message {
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.account-ticket-message.is-customer {
    background: #f8fafc;
}

.account-ticket-message.is-admin {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.account-ticket-message-meta {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.account-ticket-message-body {
    font-size: 14px;
    line-height: 1.8;
    color: #111827;
}

@media (max-width: 767px) {
    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .account-form-group-full {
        grid-column: auto;
    }
}
.account-input-readonly {
    background: #f8fafc !important;
    color: #64748b !important;
    cursor: not-allowed;
}

/* =========================
   PRODUCTS LIST - SHOWCASE
========================= */

.products-section {
    padding: 34px 0 42px;
    background: #f5f5f5;
}

.products-showcase-section {
    padding-top: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 34px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.product-showcase-card {
    padding-bottom: 18px;
}

.product-card-media {
    display: block;
    background: #f8fafc;
    overflow: hidden;
}

.product-showcase-media {
    aspect-ratio: auto;
    padding: 0;
    background: #fff;
}

.product-card-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-showcase-placeholder,
.product-card-placeholder {
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 40px;
}

.product-card-body {
    padding: 18px;
}

.product-showcase-body {
    padding: 18px 18px 0;
    text-align: center;
}

.product-card-body h3,
.product-showcase-body h3 {
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 500;
    color: #111827;
}

.product-card-body h3 a,
.product-showcase-body h3 a {
    color: #111827;
}

.product-showcase-price-box {
    width: fit-content;
    min-width: 150px;
    margin: 0 auto 20px;
    padding: 10px 18px;
    border: 1px solid #9eb5e2;
    border-radius: 6px;
    background: #fff;
    text-align: center;
}

.product-showcase-price-box span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.2;
    color: #4f6898;
    font-weight: 500;
    text-transform: uppercase;
}

.product-showcase-price-box strong {
    display: block;
    font-size: 19px;
    line-height: 1.2;
    color: #36508c;
    font-weight: 700;
}

.product-showcase-actions {
    display: flex;
    justify-content: center;
}

.product-showcase-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    background: #95c24c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-showcase-detail-btn:hover {
    opacity: 0.96;
    transform: translateY(-1px);
}

.product-detail-section {
    padding: 34px 0 42px;
    background: #f7f7f7;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.product-detail-media,
.product-detail-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px;
}

.product-detail-media img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.product-detail-content h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    color: #111827;
}

.product-detail-short {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

.product-detail-price {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

.product-detail-actions {
    margin-bottom: 22px;
}

.product-detail-description {
    font-size: 15px;
    line-height: 1.9;
    color: #475569;
}

.order-create-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
}

.order-create-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    color: #111827;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .products-section,
    .product-detail-section {
        padding: 24px 0 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-showcase-body {
        padding: 16px 16px 0;
    }

    .product-showcase-body h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .product-showcase-price-box {
        min-width: 138px;
        padding: 9px 14px;
        margin-bottom: 16px;
    }

    .product-showcase-price-box strong {
        font-size: 17px;
    }

    .product-showcase-detail-btn {
        min-height: 44px;
        font-size: 13px;
        border-radius: 8px;
    }

    .product-detail-content h2 {
        font-size: 24px;
    }

    .product-detail-price {
        font-size: 24px;
    }
}

/* =========================
   LOGIN / AUTH PAGE
========================= */

.auth-page-section {
    padding: 22px 0 40px;
    background: #ffffff;
}

.auth-page-container {
    max-width: 1220px;
}

.auth-page-title-bar {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 2px;
    text-align: center;
    padding: 18px 20px;
    margin-bottom: 22px;
}

.auth-page-title-bar h1 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0;
    text-transform: uppercase;
}

.auth-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 24px;
    align-items: start;
}

.auth-login-card,
.auth-register-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 2px;
}

.auth-login-card {
    padding: 26px 32px 30px;
}

.auth-register-card {
    padding: 32px 36px;
    min-height: 100%;
}

.auth-alert-box {
    margin-bottom: 18px;
}

.auth-login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.auth-form-group input {
    width: 100%;
    height: 40px;
    border: 1px solid #cfd8e3;
    border-radius: 4px;
    background: #ffffff;
    padding: 0 14px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form-group input:focus {
    border-color: #9fb4d1;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.auth-login-btn {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 2px;
    background: #4f6898;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.auth-login-btn:hover {
    opacity: 0.96;
}

.auth-links {
    margin-top: 2px;
}

.auth-forgot-link {
    font-size: 12px;
    color: #111827;
    text-decoration: underline;
}

.auth-forgot-link:hover {
    color: #4f6898;
}

.auth-bottom-text {
    margin-top: 10px;
    font-size: 13px;
    color: #111827;
    line-height: 1.6;
}

.auth-bottom-text a {
    color: #111827;
    font-weight: 700;
}

.auth-bottom-text a:hover {
    color: #4f6898;
}

.auth-register-card h2 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    color: #111827;
}

.auth-register-card p {
    margin: 0 0 26px;
    font-size: 14px;
    line-height: 1.9;
    color: #111827;
    max-width: 420px;
}

.auth-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 40px;
    padding: 0 18px;
    border-radius: 4px;
    background: #53c78b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.auth-register-btn:hover {
    opacity: 0.95;
}

@media (max-width: 991px) {
    .auth-page-grid {
        grid-template-columns: 1fr;
    }

    .auth-register-card {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .auth-page-section {
        padding: 14px 0 28px;
    }

    .auth-page-title-bar {
        padding: 16px 14px;
        margin-bottom: 16px;
    }

    .auth-page-title-bar h1 {
        font-size: 15px;
    }

    .auth-login-card,
    .auth-register-card {
        padding: 20px 18px;
    }

    .auth-register-card h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .auth-register-card p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .auth-form-group label {
        font-size: 13px;
    }

    .auth-form-group input {
        height: 42px;
        font-size: 14px;
    }

    .auth-login-btn {
        height: 42px;
    }

    .auth-bottom-text {
        font-size: 12px;
    }
}



/* =========================
   REGISTER PAGE EXTRA
========================= */

.auth-register-page-section {
    padding: 22px 0 44px;
    background: #ffffff;
}

.auth-register-page-section .auth-page-container {
    max-width: 1180px;
}

.auth-register-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 18px;
    align-items: stretch;
}

.auth-register-form-card {
    padding: 34px 44px 30px;
}

.auth-register-info-card {
    padding: 36px 44px;
}

.auth-register-form {
    gap: 18px;
}

.auth-register-form .auth-form-group {
    gap: 10px;
}

.auth-register-form .auth-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
}

.auth-register-form .auth-form-group input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #c7d2e2;
    border-radius: 4px;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    box-shadow: none;
}

.auth-register-form .auth-form-group input:focus {
    border-color: #9fb4d1;
    box-shadow: 0 0 0 4px rgba(79, 104, 152, 0.08);
}

.auth-register-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
    margin-bottom: 2px;
}

.auth-register-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

.auth-register-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.auth-register-check span {
    display: block;
}

.auth-register-form-card .auth-login-btn {
    height: 50px;
    font-size: 14px;
    margin-top: 2px;
}

.auth-register-form-card .auth-bottom-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.auth-register-info-card h2 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
}

.auth-register-info-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.9;
    color: #111827;
    max-width: none;
}

.auth-register-benefits {
    margin: 0;
    padding-left: 20px;
}

.auth-register-benefits li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #111827;
}

@media (max-width: 991px) {
    .auth-register-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .auth-register-form-card,
    .auth-register-info-card {
        padding: 28px 26px;
    }
}

@media (max-width: 767px) {
    .auth-register-page-section {
        padding: 14px 0 28px;
    }

    .auth-register-form-card,
    .auth-register-info-card {
        padding: 22px 18px;
    }

    .auth-register-form .auth-form-group label,
    .auth-register-check,
    .auth-register-form-card .auth-bottom-text,
    .auth-register-info-card p,
    .auth-register-benefits li {
        font-size: 13px;
    }

    .auth-register-info-card h2 {
        font-size: 17px;
    }

    .auth-register-form .auth-form-group input {
        height: 48px;
        font-size: 14px;
    }

    .auth-register-form-card .auth-login-btn {
        height: 46px;
        font-size: 13px;
    }
}
/* =========================
   FORGOT / RESET PASSWORD
========================= */

.auth-forgot-page-section {
    padding: 22px 0 44px;
    background: #ffffff;
}

.auth-forgot-wrap {
    display: flex;
    justify-content: center;
}

.auth-forgot-card {
    width: 100%;
    max-width: 540px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    padding: 40px 44px 44px;
}

.auth-forgot-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-forgot-form .auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-forgot-form .auth-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
}

.auth-forgot-form .auth-form-group input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #111827;
    outline: none;
}

.auth-forgot-form .auth-form-group input:focus {
    border-color: #9fb4d1;
    box-shadow: 0 0 0 4px rgba(79, 104, 152, 0.08);
}

.auth-forgot-form .auth-login-btn {
    margin-top: 2px;
    height: 42px;
    border-radius: 4px;
}

.auth-forgot-note {
    margin-top: 36px;
    border: 1px solid #e5e7eb;
    padding: 22px 20px 20px;
    position: relative;
    background: #fff;
}

.auth-forgot-note span {
    position: absolute;
    top: -12px;
    left: 18px;
    background: #fff;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.auth-forgot-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #111827;
}

@media (max-width: 767px) {
    .auth-forgot-page-section {
        padding: 14px 0 28px;
    }

    .auth-forgot-card {
        padding: 24px 18px 24px;
    }

    .auth-forgot-form .auth-form-group label,
    .auth-forgot-note p,
    .auth-forgot-note span {
        font-size: 13px;
    }

    .auth-forgot-form .auth-form-group input {
        height: 48px;
    }
}
/* =========================
   SERVICES PAGE
========================= */

.services-hero-section {
    padding: 58px 0 34px;
    background: #ffffff;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.services-mini-title {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.services-hero-content h1 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

.services-hero-content p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.9;
    color: #4b5563;
    max-width: 620px;
}

.services-hero-actions {
    margin-top: 24px;
}

.services-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    height: 46px;
    padding: 0 20px;
    border-radius: 6px;
    background: #46679d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.services-hero-btn:hover {
    background: #38588d;
    transform: translateY(-1px);
}

.services-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-hero-illustration {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 330px;
}

.services-hero-blob {
    position: absolute;
    border-radius: 24px;
    background: rgba(96, 165, 250, 0.12);
}

.services-blob-one {
    width: 240px;
    height: 180px;
    top: 22px;
    right: 36px;
    transform: rotate(-8deg);
}

.services-blob-two {
    width: 160px;
    height: 110px;
    bottom: 20px;
    left: 20px;
    transform: rotate(10deg);
}

.services-hero-main-card {
    position: absolute;
    top: 36px;
    right: 46px;
    width: 230px;
    height: 150px;
    background: #e8f0ff;
    border-radius: 16px;
    box-shadow: 0 22px 45px rgba(37, 99, 235, 0.08);
    overflow: hidden;
}

.services-hero-main-top {
    height: 24px;
    background: linear-gradient(90deg, #284d9b 0%, #2196f3 100%);
}

.services-hero-main-body {
    padding: 20px 18px;
}

.services-hero-main-line {
    height: 10px;
    border-radius: 999px;
    background: #bfd4ff;
    margin-bottom: 12px;
}

.services-hero-main-line.lg {
    width: 86%;
}

.services-hero-main-line.md {
    width: 62%;
}

.services-hero-main-line.sm {
    width: 48%;
}

.services-floating-card {
    position: absolute;
    background: #f7fbff;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid #e0ebff;
}

.services-floating-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: calc(100% - 24px);
    height: 8px;
    border-radius: 999px;
    background: #dbe9ff;
}

.services-floating-card::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 28px;
    width: 58%;
    height: 8px;
    border-radius: 999px;
    background: #c2d7ff;
}

.card-a {
    width: 120px;
    height: 82px;
    top: 16px;
    left: 54px;
    transform: rotate(-12deg);
}

.card-b {
    width: 92px;
    height: 64px;
    top: 30px;
    right: 0;
    transform: rotate(8deg);
}

.card-c {
    width: 118px;
    height: 78px;
    bottom: 42px;
    left: 36px;
    transform: rotate(-6deg);
}

.card-d {
    width: 96px;
    height: 66px;
    bottom: 8px;
    right: 36px;
    transform: rotate(10deg);
}

.services-hero-person {
    position: absolute;
    right: 124px;
    bottom: 14px;
    width: 70px;
    height: 150px;
}

.services-head {
    position: absolute;
    top: 0;
    left: 24px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fbbf24;
}

.services-body {
    position: absolute;
    top: 22px;
    left: 18px;
    width: 34px;
    height: 66px;
    border-radius: 10px;
    background: #2563eb;
}

.services-arm {
    position: absolute;
    top: 40px;
    left: 44px;
    width: 28px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
    transform: rotate(-20deg);
    transform-origin: left center;
}

.services-leg {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 54px;
    border-radius: 999px;
    background: #1f2937;
}

.services-leg.left {
    left: 24px;
    transform: rotate(8deg);
}

.services-leg.right {
    left: 38px;
    transform: rotate(-8deg);
}

.services-showcase-section {
    padding: 30px 0 24px;
    background: #ffffff;
}

.services-showcase-head {
    margin-bottom: 28px;
}

.services-showcase-head h2 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.15;
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 14px;
}

.services-showcase-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: #111827;
}

.services-showcase-head p {
    margin: 0;
    max-width: 860px;
    font-size: 15px;
    line-height: 1.85;
    color: #4b5563;
}

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

.services-showcase-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px 18px 22px;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 220px;
}

.services-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    border-color: #d7dfeb;
}

.services-showcase-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef4ff 0%, #f6f9ff 100%);
    color: #315ea8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.services-showcase-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #111827;
    font-weight: 700;
}

.services-showcase-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #6b7280;
}

.services-offer-section {
    padding: 44px 0 56px;
    background: #ffffff;
}

.services-offer-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 34px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.services-offer-head {
    margin-bottom: 26px;
}

.services-offer-head h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-offer-head p {
    margin: 0;
    max-width: 820px;
    font-size: 15px;
    line-height: 1.9;
    color: #4b5563;
}

.services-offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 20px;
    align-items: start;
}

.services-offer-form-card {
    background: #ffffff;
}

.services-offer-submit-btn {
    background: linear-gradient(135deg, #1e63f1 0%, #2d6df3 100%);
    border-radius: 8px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
}

.services-offer-info-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.services-offer-info-box,
.services-offer-note-box {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    padding: 20px 18px;
}

.services-offer-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eaf1ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.services-offer-info-box h3,
.services-offer-note-box h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #111827;
    font-weight: 700;
}

.services-offer-info-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}

.services-offer-note-box ul {
    margin: 0;
    padding-left: 18px;
}

.services-offer-note-box li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}

@media (max-width: 1199px) {
    .services-showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .services-hero-grid,
    .services-offer-grid {
        grid-template-columns: 1fr;
    }

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

    .services-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-hero-visual {
        order: -1;
    }

    .services-offer-wrap {
        padding: 26px 22px;
    }
}

@media (max-width: 767px) {
    .services-hero-section {
        padding: 34px 0 22px;
    }

    .services-hero-grid {
        gap: 24px;
    }

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

    .services-hero-content p,
    .services-showcase-head p,
    .services-offer-head p {
        font-size: 14px;
    }

    .services-showcase-head h2,
    .services-offer-head h2 {
        font-size: 28px;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase-card {
        min-height: auto;
    }

    .services-hero-illustration {
        height: 270px;
    }

    .services-hero-main-card {
        width: 180px;
        height: 126px;
        right: 34px;
    }

    .card-a,
    .card-c {
        left: 10px;
    }

    .card-b {
        right: 4px;
    }

    .card-d {
        right: 20px;
    }

    .services-hero-person {
        right: 88px;
        bottom: 8px;
        transform: scale(0.9);
    }

    .services-offer-wrap {
        padding: 20px 16px;
    }
}
/* =========================
   PACKAGES / PRICING PAGE
========================= */

.packages-page-hero {
    padding: 56px 0 24px;
    background: #ffffff;
}

.packages-page-hero-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.packages-mini-title {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.packages-page-hero-inner h1 {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.15;
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.packages-page-hero-inner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #4b5563;
}

.packages-pricing-section {
    padding: 22px 0 44px;
    background: #ffffff;
}

.packages-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.package-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
    border-color: #d7dfea;
}

.package-ribbon {
    position: absolute;
    top: 16px;
    left: -34px;
    width: 130px;
    text-align: center;
    transform: rotate(-45deg);
    background: #ff8f8f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 0;
    z-index: 2;
}

.package-card-top {
    padding: 28px 24px 22px;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
}

.package-card-top h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.package-card-starter .package-card-top h2 {
    color: #4dbf7e;
}

.package-card-platinum .package-card-top h2 {
    color: #d4a422;
}

.package-card-business .package-card-top h2 {
    color: #4b39b6;
}

.package-card-top p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.8;
    color: #6b7280;
    min-height: 64px;
}

.package-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.package-card-starter .package-outline-btn {
    border: 1.5px solid #4dbf7e;
    color: #4dbf7e;
}

.package-card-platinum .package-outline-btn {
    border: 1.5px solid #d4a422;
    color: #d4a422;
}

.package-card-business .package-outline-btn {
    border: 1.5px solid #4b39b6;
    color: #4b39b6;
}

.package-outline-btn:hover {
    transform: translateY(-1px);
}

.package-feature-list {
    padding: 0;
}

.package-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #edf2f7;
}

.package-feature-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 2px;
}

.package-card-starter .package-feature-icon {
    color: #37b36d;
}

.package-card-platinum .package-feature-icon {
    color: #d4a422;
}

.package-card-business .package-feature-icon {
    color: #3fba61;
}

.package-feature-text {
    font-size: 13px;
    line-height: 1.75;
    color: #4b5563;
}

.package-highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 18px 20px;
    color: #fff;
}

.package-card-starter .package-highlight-box {
    background: linear-gradient(135deg, #4dbf7e 0%, #2e9960 100%);
}

.package-card-platinum .package-highlight-box {
    background: linear-gradient(135deg, #6838f0 0%, #8727dc 100%);
}

.package-card-business .package-highlight-box {
    background: linear-gradient(135deg, #5a32d3 0%, #3727a4 100%);
}

.package-highlight-icon {
    flex-shrink: 0;
    font-size: 16px;
}

.package-highlight-text {
    font-size: 12px;
    line-height: 1.7;
    font-weight: 600;
}

.package-price-area {
    padding: 26px 24px 28px;
    text-align: center;
}

.package-price {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.1;
    color: #111827;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.package-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.package-card-starter .package-main-btn {
    background: #57c789;
}

.package-card-platinum .package-main-btn {
    background: #e0be37;
}

.package-card-business .package-main-btn {
    background: #4630b7;
}

.package-main-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.packages-extra-section {
    padding: 0 0 58px;
    background: #ffffff;
}

.packages-extra-box {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    padding: 28px 30px;
    text-align: center;
}

.packages-extra-box h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
}

.packages-extra-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #4b5563;
}

@media (max-width: 1199px) {
    .packages-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .packages-page-hero {
        padding: 36px 0 18px;
    }

    .packages-page-hero-inner h1 {
        font-size: 30px;
    }

    .packages-page-hero-inner p {
        font-size: 14px;
    }

    .package-card-top {
        padding: 24px 18px 20px;
    }

    .package-card-top h2 {
        font-size: 24px;
    }

    .package-feature-item,
    .package-highlight-box {
        padding: 16px;
    }

    .package-price-area {
        padding: 22px 18px 22px;
    }

    .package-price {
        font-size: 30px;
    }

    .packages-extra-box {
        padding: 22px 16px;
    }
}
.account-package-banner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.account-package-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
}

.account-package-badge {
    min-width: 160px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.account-package-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
}

.account-package-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
}

.account-package-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.account-package-dates span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.72);
    color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.account-package-banner.is-starter {
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    border-color: #86efac;
}

.account-package-banner.is-starter::before {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.account-package-banner.is-starter .account-package-badge {
    background: #22c55e;
    color: #fff;
}

.account-package-banner.is-professional {
    background: linear-gradient(135deg, #fffbea 0%, #fef3c7 100%);
    border-color: #fcd34d;
}

.account-package-banner.is-professional::before {
    background: linear-gradient(135deg, #f59e0b 0%, #ca8a04 100%);
}

.account-package-banner.is-professional .account-package-badge {
    background: #eab308;
    color: #111827;
}

.account-package-banner.is-business {
    background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%);
    border-color: #a78bfa;
}

.account-package-banner.is-business::before {
    background: linear-gradient(135deg, #7c3aed 0%, #4338ca 100%);
}

.account-package-banner.is-business .account-package-badge {
    background: #4f46e5;
    color: #fff;
}

.account-package-banner.is-none {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-color: #dbe2ea;
}

.account-package-banner.is-none::before {
    background: linear-gradient(135deg, #64748b 0%, #334155 100%);
}

.account-package-banner.is-none .account-package-badge {
    background: #475569;
    color: #fff;
}

@media (max-width: 767px) {
    .account-package-banner {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .account-package-badge {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .account-package-content h3 {
        font-size: 18px;
    }
}
.mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-header-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mobile-header-icon:hover {
    border-color: #cbd5e1;
    color: #2563eb;
}

.mobile-header-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.user-notification-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.user-notification-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.user-notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eef4ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.user-notification-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    color: #111827;
}

.user-notification-body p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.85;
    color: #475569;
}

.user-notification-date {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}
/* =========================
   PRODUCT DETAIL SHOWCASE
========================= */

.product-showcase-section {
    padding: 26px 0 42px;
    background: #ffffff;
}

.product-showcase-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.product-showcase-title {
    margin: 0 0 20px;
    padding-left: 14px;
    border-left: 3px solid #84cc16;
    font-size: 34px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
}

.product-showcase-gallery {
    margin-bottom: 26px;
}

.product-showcase-main {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.product-showcase-main img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.product-showcase-placeholder {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 42px;
}

.product-showcase-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-thumb-btn {
    width: 88px;
    height: 72px;
    padding: 0;
    border: 1px solid #dbe2ea;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.product-thumb-btn.is-active {
    border-color: #84cc16;
    box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.12);
}

.product-thumb-btn img,
.product-thumb-empty {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #f8fafc;
}

.product-showcase-short {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.7;
    color: #111827;
    font-weight: 600;
}

.product-feature-list {
    margin: 0 0 22px;
    padding-left: 18px;
}

.product-feature-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.8;
    color: #111827;
}

.product-showcase-description {
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
}

.product-showcase-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-info-banner,
.product-price-card,
.product-purchase-box,
.product-side-note,
.product-meta-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.product-info-banner {
    padding: 16px;
    background: #f0f9ff;
    border-color: #bae6fd;
}

.product-info-banner strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    color: #0369a1;
}

.product-info-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #0f172a;
}

.product-price-card {
    padding: 18px;
    text-align: center;
}

.product-price-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
}

.product-price-amount {
    font-size: 34px;
    line-height: 1.2;
    color: #111827;
    font-weight: 800;
}

.product-purchase-box {
    padding: 18px;
}

.product-input-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.product-domain-input {
    width: 100%;
    height: 46px;
    border: 1px solid #dbe2ea;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    color: #111827;
    outline: none;
    margin-bottom: 14px;
}

.product-buy-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
}

.product-qty-box {
    height: 46px;
    border: 1px solid #dbe2ea;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #111827;
    background: #fff;
}

.product-buy-btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 6px;
    background: #356ae6;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.product-side-note {
    padding: 16px 18px;
}

.product-side-note h3 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
}

.product-side-note div {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
}

.product-meta-card {
    padding: 14px 18px;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
}

.product-meta-row:last-child {
    border-bottom: 0;
}

.product-meta-row span {
    font-size: 14px;
    color: #64748b;
}

.product-meta-row strong {
    font-size: 14px;
    color: #111827;
    text-align: right;
}

@media (max-width: 991px) {
    .product-showcase-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .product-showcase-section {
        padding: 18px 0 28px;
    }

    .product-showcase-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .product-showcase-placeholder {
        min-height: 280px;
    }

    .product-price-amount {
        font-size: 26px;
    }
}
/* =========================
   PRODUCT PACKAGE PRICING
========================= */

.product-price-card-premium {
    padding: 0;
    border: 1px solid #bfe7ef;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.product-price-card-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 0;
}

.product-price-badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #bde7ef;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.product-price-card-topline strong {
    font-size: 11px;
    font-weight: 800;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.product-price-line {
    display: block;
    width: 100%;
    height: 1px;
    background: #bfe7ef;
}

.product-price-card-note {
    padding: 10px 16px 12px;
    font-size: 12px;
    line-height: 1.75;
    color: #2563eb;
    text-align: center;
}

.product-price-mainbox {
    margin: 0;
    padding: 14px 16px 14px;
    border-top: 1px solid #d7dfea;
    border-bottom: 1px solid #d7dfea;
    text-align: center;
    background: #fff;
}
.product-price-mainbox .product-price-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.03em;
}

.product-price-mainbox .product-price-amount {
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.product-price-mainbox .product-price-amount small {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.product-package-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-package-price-card {
    padding: 14px 12px 12px;
    text-align: center;
    min-height: 124px;
}

.product-package-price-card.is-professional {
    background: #f5f0cf;
}

.product-package-price-card.is-business {
    background: #dfeafe;
}

.product-package-price-card span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.45;
    color: #163d7a;
    font-weight: 700;
}

.product-package-price-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #0f172a;
    font-weight: 800;
}

.product-package-price-card em {
    display: block;
    font-size: 18px;
    line-height: 1.15;
    color: #163d7a;
    font-style: normal;
    font-weight: 800;
}

@media (max-width: 767px) {
    .product-price-mainbox .product-price-amount {
        font-size: 24px;
    }

    .product-price-mainbox .product-price-amount small {
        font-size: 11px;
    }

    .product-package-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-package-price-card {
        min-height: auto;
        padding: 12px 10px;
    }

    .product-package-price-card em {
        font-size: 16px;
    }

    .product-package-price-card span {
        font-size: 10px;
    }

    .product-package-price-card strong {
        font-size: 11px;
    }
}
.product-showcase-sidebar {
    gap: 16px;
}

.product-purchase-box {
    padding: 14px;
    border-radius: 4px;
}

.product-input-label {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
}

.product-domain-input {
    height: 42px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 13px;
}

.product-buy-row {
    grid-template-columns: 84px 1fr;
    gap: 10px;
}

.product-qty-box {
    height: 42px;
    border-radius: 4px;
    font-size: 14px;
}

.product-buy-btn-lg {
    min-height: 42px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.product-side-note,
.product-meta-card {
    border-radius: 4px;
}