/**
 * GaziHost Landing — ana sayfa stilleri
 * Font: Inter 400–700 | Container max-width: 1360px
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    /* Brand — primary blue */
    --tx-primary: #2563eb;
    --tx-primary-hover: #1d4ed8;
    --tx-primary-dark: #1e40af;
    --tx-primary-light: #60a5fa;
    --tx-primary-soft: #dbeafe;
    --tx-primary-muted: #eff6ff;

    /* Dark surfaces */
    --tx-navy: #1e293b;
    --tx-navy-dark: #0f172a;
    --tx-navy-mid: #172554;

    /* Legacy tokens → primary blue */
    --tx-green: #2563eb;
    --tx-green-bright: #2563eb;
    --tx-green-hover: #1d4ed8;
    --tx-blue: #2563eb;
    --tx-blue-light: #93c5fd;

    --tx-muted: #64748b;
    --tx-muted-2: #767676;
    --tx-muted-3: #475569;
    --tx-border: #e2e8f0;
    --tx-border-light: #f1f5f9;
    --tx-bg: #ffffff;
    --tx-bg-gray: #f8fafc;
    --tx-bg-soft: #eff6ff;
    --tx-faq-bg: #e2e8f0;
    --tx-gradient-end: #bfdbfe;
    --tx-gradient-mid: #93c5fd;
    --tx-accent-red: #db1a46;
    --tx-shadow: rgba(37, 99, 235, 0.12);
    --tx-shadow-soft: rgba(0, 0, 0, 0.06);
    --font: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1360px;
    --header-h: 70px;
    --topbar-h: 44px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 30px;
    --radius-faq: 60px;
    --transition: 0.3s ease;
    --transition-slow: 0.8s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--tx-navy);
    background: var(--tx-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.homePage {
    background: linear-gradient(0deg, #fff 0%, #fff 95%, var(--tx-gradient-end) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

::selection {
    background: var(--tx-primary);
    color: #fff;
}

img,
video {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    line-height: 1.3;
}

/* Utility floats (legacy layout) */
.float-left { float: left; width: 100%; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   Typography — general-title
   ========================================================================== */

.general-title {
    color: var(--tx-navy);
    line-height: 1.3;
    text-align: center;
}

.general-title .title-1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.general-title .title-2 {
    font-size: 20px;
    font-weight: 400;
    color: var(--tx-muted);
}

.general-title .title-span {
    font-size: 34px;
    font-weight: 300;
    display: block;
}

.home-about-title {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.home-about-title .about-title-1 {
    font-size: 28px;
    font-weight: 300;
    color: var(--tx-navy);
}

.home-about-title .about-title-2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--tx-navy);
}

.home-about-title .about-title-3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--tx-green-bright);
}

.home-about-text {
    font-size: 19px;
    color: var(--tx-navy);
    line-height: 1.3;
}

.home-about-text p {
    font-size: 20px;
    color: var(--tx-navy);
    font-weight: 400;
    margin-bottom: 20px;
}

.thinTitle {
    font-size: 38px;
    color: var(--tx-navy);
    letter-spacing: -0.38px;
    line-height: 42px;
    font-weight: 300;
    margin-bottom: 29px;
}

.text-success {
    color: var(--tx-green-bright);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
    text-align: center;
    padding: 14px 28px;
    height: 52px;
    border-radius: var(--radius-pill);
}

.btn.radius30,
.radius30 {
    border-radius: 30px;
}

.btn-success {
    background: var(--tx-green);
    color: #fff;
    border: 2px solid var(--tx-green);
}

.btn-success:hover,
.btn-success.active {
    background: var(--tx-green-hover);
    border-color: var(--tx-green-hover);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--tx-navy);
    border: 2px solid #fff;
    font-weight: 700;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--tx-navy);
}

.btn-oln {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.btn-oln:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--tx-navy);
    background: #fff;
    color: var(--tx-navy) !important;
    transition: none;
    border-radius: 30px;
    height: 34px;
    padding: 0 35px;
    font-size: 13px;
}

.btn-outline:hover,
.btn-outline.active {
    border: 1px solid var(--tx-navy);
    color: #fff !important;
    background: var(--tx-navy);
    outline: 0;
}

.btn-primary {
    background: var(--tx-blue);
    color: #fff !important;
    border: 2px solid var(--tx-blue);
}

.btn-primary:hover {
    background: var(--tx-primary-hover);
    border-color: var(--tx-primary-hover);
}

.btn-slider {
    margin-top: 30px;
    padding: 10px 28px;
    float: left;
}

.btn-success.btn-slider {
    background: var(--tx-green);
    padding-left: 62px;
    padding-right: 62px;
    font-weight: 500;
}

.btn-success.btn-slider:hover {
    background: var(--tx-green-hover);
}

.home-about-btn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Topbar — #topbar .topbar
   ========================================================================== */

#topbar {
    background: var(--tx-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10002;
}

#topbar .container {
    display: block;
}

#topbar .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
    flex-wrap: nowrap;
}

#topbar .topbar-ticker {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#topbar .topbar-ticker:hover {
    color: var(--tx-blue-light);
}

#topbar .topbar-phone {
    flex-shrink: 0;
    color: var(--tx-blue-light);
    font-size: 14px;
    font-weight: 800;
    background: none;
    border: none;
    padding: 0;
    height: auto;
    white-space: nowrap;
}

#topbar .topbar-phone:hover {
    color: #fff;
}

#topbar .counter-menu,
#topbar .campaign,
#topbar .campaignTimerDiv {
    display: none !important;
}

#topbar .topbar .quick-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

#topbar .topbar .quick-menu .topbarLinks {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#topbar .topbar .quick-menu a,
#topbar .topbar a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#topbar .topbar .quick-menu a:hover,
#topbar .topbar a:hover {
    color: var(--tx-blue-light);
}

#topbar .topbar .phone {
    display: flex;
    align-items: center;
    gap: 4px;
}

#topbar .topbar .phone a {
    background: linear-gradient(90deg, var(--tx-blue-light) 0%, var(--tx-primary) 62%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 15px;
    font-weight: 800;
}

#topbar .topbar .fastCommunication {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 10px;
    flex-wrap: wrap;
}

#topbar .topbar .fastCommunication > span {
    color: #fff;
    font-weight: 500;
}

#topbar .topbar .fastCommunication .usCalling a,
#topbar .topbar .fastCommunication .usCalling button {
    display: flex;
    align-items: center;
    padding: 4px 15px;
    border-radius: 30px;
    font-size: 13px;
    gap: 10px;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
}

#topbar .topbar .fastCommunication .usCalling a:hover,
#topbar .topbar .fastCommunication .usCalling button:hover {
    border-color: var(--tx-primary-soft);
    color: var(--tx-blue-light);
}

body.stickyPad #topbar {
    display: none;
}

/* ==========================================================================
   Header — .gtag-header navbar
   ========================================================================== */

.gtag-header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 10001;
    width: 100%;
    background: transparent;
    transition: top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    overflow: visible;
}

.gtag-header.sticky {
    top: 0;
    background: var(--tx-navy);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.gtag-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    padding-bottom: 14px;
}

header {
    width: 100%;
}

header navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

header navbar .site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header navbar .site-logo img {
    height: 36px;
    width: auto;
}

header navbar nav {
    display: flex;
    flex: 1;
    justify-content: center;
}

header navbar nav > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

header navbar nav > ul > li {
    display: block;
    padding-right: 8px;
    margin-right: 4px;
    position: static;
    flex-shrink: 0;
}

header navbar nav > ul > li.dropdown {
    position: static;
}

header navbar nav > ul > li > a {
    z-index: 9;
    color: var(--tx-navy);
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    display: inline-flex;
    align-items: center;
    padding: 8px 6px;
    position: relative;
    white-space: nowrap;
}

header navbar nav > ul > li.dropdown > a::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition);
    flex-shrink: 0;
}

header navbar nav > ul > li.dropdown.is-open > a::before {
    transform: rotate(225deg) translateY(1px);
}

header navbar nav > ul > li:not(.dropdown) > a::before {
    display: none;
}

header navbar nav > ul > li > a:hover,
header navbar nav > ul > li.active > a {
    color: var(--tx-blue-light);
}

header navbar nav > ul > li:last-child {
    padding-right: 0;
    margin-right: 0;
}

header navbar nav > ul > li.dropdown > a svg,
header navbar nav > ul > li.dropdown > a::after {
    display: none;
}

header navbar .button-area {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header navbar .button-area .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 42px;
    font-size: 13px;
    padding-left: 18px;
    padding-right: 18px;
}

header navbar .button-area .btnCall {
    display: none;
}

header navbar .button-area .btn-outline {
    border-color: var(--tx-green-bright);
    background: none;
    color: var(--tx-navy) !important;
}

header navbar .button-area .btn-outline:hover {
    background: var(--tx-navy);
    color: #fff !important;
    border-color: var(--tx-navy);
}

header navbar .button-area .btn-success,
header navbar .button-area .btn-primary {
    background: var(--tx-green-bright);
    border-color: var(--tx-green-bright);
}

header navbar .menu-toggle,
header navbar .hamburger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

header navbar .menu-toggle span,
header navbar .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--tx-navy);
    margin: 5px 0;
    transition: all var(--transition);
}

/* Sticky header — dark navy bar while scrolling */
header.sticky,
.hoverMenu .gtag-header {
    transition: var(--transition-slow);
    background: var(--tx-navy);
}

header.sticky navbar nav > ul > li > a,
.hoverMenu .gtag-header navbar nav > ul > li > a {
    color: #fff;
}

header.sticky navbar nav > ul > li > a:hover,
.hoverMenu .gtag-header navbar nav > ul > li > a:hover {
    color: #fff;
}

header.sticky navbar .site-logo img,
.hoverMenu .gtag-header navbar .site-logo img {
    filter: brightness(0) saturate(100%) invert(100%);
}

header.sticky navbar .button-area .btn-success,
.hoverMenu .gtag-header navbar .button-area .btn-success {
    background: var(--tx-green-bright);
}

header.sticky navbar .button-area .btn-outline,
.hoverMenu .gtag-header navbar .button-area .btn-outline {
    border-color: var(--tx-green-bright);
    background: none;
    color: #fff !important;
}

header.sticky navbar .button-area .btn-outline:hover,
.hoverMenu .gtag-header navbar .button-area .btn-outline:hover {
    background: #fff;
    color: var(--tx-navy) !important;
}

/* Mega menu — .menuWrapper */
.dropdown .menuWrapper {
    display: none !important;
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
    background: var(--tx-navy);
    position: fixed;
    top: var(--mega-menu-top, 80px);
    flex-direction: column;
    z-index: 10000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown.is-open .menuWrapper {
    display: flex !important;
    pointer-events: auto;
    max-height: calc(100vh - var(--mega-menu-top, 80px));
    overflow: hidden;
}

.dropdown .menuWrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.dropdown .menuWrapper > :before {
    display: none;
}

.dropdown .menuWrapper .menuTopContent {
    width: 100%;
    padding: 8px 0 24px;
    max-height: 520px;
    overflow-x: hidden;
    overflow-y: auto;
}

.dropdown .menuWrapper .menuTopContent > .container,
.dropdown .menuWrapper .menuBottomContent > .container {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown.longMenuList .menuWrapper .menuTopContent {
    max-height: 560px;
}

.dropdown .menuWrapper .menuTopContent::-webkit-scrollbar {
    width: 6px;
}

.dropdown .menuWrapper .menuTopContent::-webkit-scrollbar-thumb {
    background-color: var(--tx-primary-soft);
    border-radius: 100px;
}

.dropdown .menuWrapper .menuContent {
    width: 100%;
    border: 0;
    padding: 20px 0 0;
    align-items: flex-start;
    gap: 0;
}

.dropdown .menuWrapper .menuContent.menuContent--hosting {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 32px;
}

.dropdown .menuWrapper .menuContent.menuContent--refs {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 40px;
}

.menuContent--refs .menuContent__cols {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

.menuContent--refs .menuContent__cols .dropdown-menu {
    width: 260px;
    max-width: 260px;
    flex: 0 0 260px;
    box-sizing: border-box;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    float: none !important;
    width: 100%;
}

.menuContent--hosting .dropdown-menu {
    max-width: none;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
    text-align: left;
    width: 100%;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu li:first-child {
    margin-bottom: 8px;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu .menutitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tx-green-bright);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu .menutitle img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(2062%) hue-rotate(212deg) brightness(96%) contrast(95%);
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu li a {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
    padding: 0;
    transition: color 0.2s;
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu li a:hover {
    color: var(--tx-blue-light);
}

.dropdown .menuWrapper .menuTopContent .dropdown-menu li > span:not(.menutitle) {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
    font-weight: 400;
}

.dropdown .menuWrapper .menuTopContent .menuLinkTitle {
    margin-bottom: 0;
    width: 100%;
}

.dropdown .menuWrapper .menuTopContent .menuLinkTitle .menutitle {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
    line-height: 1.3;
}

.dropdown .menuWrapper .menuTopContent .menuLinkTitle > a {
    display: block;
    margin-bottom: 8px;
    width: 100%;
}

.dropdown .menuWrapper .menuTopContent .menuLinkTitle > a .menutitle {
    margin-bottom: 0;
    white-space: normal;
}

.dropdown .menuWrapper .menuTopContent .menuLinkTitle > span:not(.menutitle) {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    white-space: normal;
}

.dropdown .menuWrapper .menuTopContent .menuLinkButton {
    margin-top: 20px;
    margin-bottom: 0;
    width: 100%;
    align-self: stretch;
}

.dropdown .menuWrapper .menuTopContent .menuLinkButton .menuButton {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    padding: 11px 16px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.dropdown .menuWrapper .brandMenuLogos {
    flex: 1;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
    justify-content: flex-end;
}

.dropdown .menuWrapper .brandMenuLogos .brandMenuLogoWrapper {
    width: calc(25% - 7.5px);
}

.dropdown .menuWrapper .brandMenuLogos .brandMenuLogoWrapper a {
    width: 100%;
    background: #f4f6f9;
    border: 1px solid rgba(30, 41, 59, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dropdown .menuWrapper .brandMenuLogos .brandMenuLogoWrapper a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown .menuWrapper .brandMenuLogos .brandMenuLogoWrapper a img {
    max-height: 28px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(2062%) hue-rotate(212deg) brightness(96%) contrast(95%);
}

.dropdown .menuWrapper .menuBottomContent {
    width: 100%;
    padding: 18px 0 16px;
    background: var(--tx-navy-mid);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown .menuWrapper .menuBottom {
    width: 100%;
}

.dropdown .menuWrapper .menuBottom .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown .menuWrapper .menuBottom .dropdown-menu li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    max-width: none;
}

.dropdown .menuWrapper .menuBottom .dropdown-menu li a {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}

.dropdown .menuWrapper .menuBottom .dropdown-menu li a:hover {
    color: var(--tx-blue-light);
}

.dropdown .menuWrapper .menuBottom .dropdown-menu li span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    line-height: 1.4;
}

.dropdown .menuWrapper .menuButton {
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border: 2px solid var(--tx-blue) !important;
    border-radius: 16px;
    height: auto;
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dropdown .menuWrapper .menuButton:hover {
    background-color: #fff;
    border-color: var(--tx-navy) !important;
    color: var(--tx-navy) !important;
}

/* ==========================================================================
   Hero — .homeFrame .banner.banner-content
   ========================================================================== */

.homeFrame {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    position: relative;
    min-height: 780px;
    height: auto;
    width: 100%;
}

.homeFrame::before {
    background: linear-gradient(123.42deg, rgba(15, 23, 42, 0.94) 37.66%, rgba(23, 37, 84, 0) 72.84%);
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.homeFrame .absolute {
    position: absolute;
}

.homeFrame .size-full {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.homeFrame .object-cover {
    object-fit: cover;
}

.homeFrame section.banner.banner-content,
.homeFrame .banner.banner-content {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--topbar-h) + var(--header-h) + 20px);
    min-height: calc(780px - var(--topbar-h) - var(--header-h));
}


.homePage .banner.banner-content {
    max-height: none;
}

.banner .container {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
}

.banner .slider-div {
    float: left;
    width: 100%;
    margin: 20px 0 0;
    padding: 0 20px;
}

.banner .slider-div .slider-item {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0;
    gap: 24px;
}

.banner .slider-div .slider-item .slogan {
    width: 100%;
    padding-left: 10px;
    color: #fff;
    z-index: 3;
    position: relative;
}

.banner .slider-div .slider-item .slogan .title {
    width: 100%;
    float: left;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #fff;
}

.banner .slider-div .slider-item .slogan .title .title-thin {
    font-weight: 600;
    font-size: 23px;
}

.banner .slider-div .slider-item .slogan .subtitle {
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 12px;
}

.banner .slider-div .slider-item .slogan .uptitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
}

.banner .slider-div .slider-item .slogan .boldTitle {
    font-size: 51px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.51px;
    line-height: 70px;
}

.banner .slider-div .slider-item .slogan .thinTitle {
    font-size: 38px;
    color: #fff;
    letter-spacing: -0.38px;
    line-height: 42px;
    font-weight: 300;
    margin-bottom: 29px;
}

.banner .slider-div .slider-item .slogan.notVerticalSlider {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
}

.banner .slider-div .slider-item .banner-image {
    width: 100%;
    max-width: 635px;
    z-index: 3;
    position: relative;
}

.banner .slider-div .slider-item .banner-image img {
    width: 100%;
    height: auto;
}

/* Domain search in hero */
.banner .slider-div .slider-item .slogan form,
.domain-search-form {
    margin-top: 24px;
    margin-bottom: 0;
    display: flex;
    gap: 8px;
    max-width: 520px;
}

.banner .slider-div .slider-item .slogan input[type="text"]:not(.unstyled),
.domain-search-form input {
    border: 1px solid #8993a4;
    box-shadow: none;
    border-radius: 27px;
    height: 53px;
    font-size: 14px;
    line-height: 1;
    color: var(--tx-navy);
    flex: 1;
    padding: 0 20px;
    background: #fff;
    outline: none;
}

.banner .slider-div .slider-item .slogan input[type="text"]:not(.unstyled):hover,
.domain-search-form input:hover {
    border-color: var(--tx-blue);
}

.banner .slider-div .slider-item .slogan input[type="text"]:focus,
.domain-search-form input:focus {
    border-color: var(--tx-blue);
    box-shadow: 0 0 0 3px rgba(74, 118, 253, 0.15);
}

/* Slider dots */
.homePage .banner .slider-div {
    margin: 20px 0 0;
    padding: 0 65px;
}

.homePage .banner .slider-div ul.slick-dots,
.slider-dots {
    transform: unset;
    position: unset;
    justify-content: center;
    gap: 20px;
    padding: 2px 0;
    display: flex !important;
    list-style: none;
    margin-top: 24px;
}

.homePage .banner .slider-div ul.slick-dots li,
.slider-dots li {
    display: flex;
    overflow: hidden;
    position: relative;
}

.homePage .banner .slider-div ul.slick-dots li button,
.slider-dots button {
    width: 100%;
    min-height: 16px;
    min-width: 16px;
    max-width: 16px;
    max-height: 16px;
    border-radius: 16px;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    font-size: 0;
    padding: 0;
    transition: background var(--transition);
}

.homePage .banner .slider-div ul.slick-dots li.slick-active,
.slider-dots li.active {
    border-radius: 16px;
    background: var(--tx-blue);
    min-width: 76px;
    min-height: 16px;
    max-height: 16px;
    padding: 0 1px;
}

.homePage .banner .slider-div ul.slick-dots li.slick-active button,
.slider-dots li.active button {
    min-width: 0;
    border-radius: 50px;
    background: #fff;
    margin-right: 0;
}

/* Full slider wrapper (inner hero slides) */
.fullSliderWrapper {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 420px;
    height: auto;
    gap: 24px;
    padding-bottom: 24px;
}

.fullSliderWrapper object,
.fullSliderWrapper img,
.fullSliderWrapper video {
    pointer-events: none;
    width: 100%;
}

.fullSliderWrapper .sliderLeftWrapper {
    width: 48%;
    flex-shrink: 0;
}

.fullSliderWrapper .sliderLeftWrapper.leftBigger {
    width: 60%;
}

.fullSliderWrapper .sliderLeftWrapper.leftSmaller {
    width: 40%;
}

.fullSliderWrapper .sliderLeftWrapper .title {
    font-size: 54px !important;
    letter-spacing: -2.2px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.fullSliderWrapper .sliderLeftWrapper .subtitle {
    font-size: 18px !important;
    letter-spacing: -0.54px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.fullSliderWrapper .sliderRightWrapper {
    width: 52%;
    height: auto;
    max-width: 100%;
}

.fullSliderWrapper .sliderRightWrapper.rightBigger {
    width: 60%;
}

/* ==========================================================================
   Reference section — marquee & testimonials
   ========================================================================== */

.reference-section {
    float: left;
    width: 100%;
    padding: 48px 0 32px;
    position: relative;
    z-index: 5;
    clear: both;
    background: linear-gradient(180deg, var(--tx-primary-muted) 0%, #fff 100%);
    border-top: 1px solid var(--tx-border-light);
    border-bottom: 1px solid var(--tx-border-light);
}

.reference-marquee-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tx-muted);
    margin-bottom: 8px;
}

.home-about-new,
.designEaslyWrapper,
.tab-area,
.pricing-section,
.home-blogs-new,
.home-faq-new {
    clear: both;
}

.marquee,
.brandMarquee-wrap {
    overflow: hidden;
    width: 100%;
}

.marquee .brandMarquee {
    width: 100%;
    display: flex;
    animation: brandMarqueeScroll 25s 0.6s linear infinite;
    padding: 25px 0 20px;
    gap: 12px;
    width: max-content;
}

.marquee .brandMarquee:hover {
    animation-play-state: paused;
}

@keyframes brandMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee .marqueeItem {
    flex: 0 0 180px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dde3ec;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
}

.marquee .marqueeItem img {
    display: block;
    width: auto;
    max-width: 130px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(2062%) hue-rotate(212deg) brightness(96%) contrast(95%);
    opacity: 0.82;
    transition: opacity 0.25s, transform 0.25s;
}

.marquee .marqueeItem:hover img {
    opacity: 1;
    transform: scale(1.04);
}

/* Video testimonials */
.tvc-reference-testimonials {
    overflow: hidden;
    display: block;
    width: 100%;
    padding: 20px 0 60px;
    background: linear-gradient(175.88deg, var(--tx-navy-dark) 5.36%, var(--tx-muted) 18.24%);
    clear: both;
}

.tvc-reference-testimonials .reference {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.tvc-reference-testimonials .referenceTitle {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.tvc-reference-testimonials .referenceTitle strong {
    color: #fff;
}

.tvc-reference-testimonials .reference-slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.tvc-reference-testimonials .ref-slider-btn {
    display: none;
}

.tvc-reference-testimonials .reference .slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
    min-height: 425px;
}

.tvc-reference-testimonials .reference .slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.tvc-reference-testimonials .reference .slider .item {
    flex: 0 0 310px;
    width: 310px;
    height: 400px;
    padding: 0;
    border: 0;
    background: none;
    margin-top: 25px;
    transition: margin-top 0.3s ease;
}

.tvc-reference-testimonials .reference .slider .item:hover {
    margin-top: 0;
}

.tvc-reference-testimonials .testimonial-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #1e3a5f;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.tvc-reference-testimonials .testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.tvc-reference-testimonials .testimonial-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

.tvc-reference-testimonials .testimonial-text {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 400;
}

.tvc-reference-testimonials .testimonial-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tvc-reference-testimonials .testimonial-name {
    display: flex;
    font-size: 14px;
    font-weight: 600;
    flex-direction: column;
    color: #fff;
}

.tvc-reference-testimonials .testimonial-title {
    font-size: 12px;
    opacity: 0.85;
    line-height: 16px;
    font-weight: 400;
}

.tvc-reference-testimonials .testimonial-box .play-button {
    position: relative;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
}

.tvc-reference-testimonials .testimonial-box .play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--tx-green);
    margin-left: 4px;
}

.tvc-reference-testimonials .slider-dots,
.tvc-reference-testimonials .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.tvc-reference-testimonials .slider-dots .slider-dot,
.tvc-reference-testimonials .testimonial-dots .slider-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    max-width: none;
    max-height: none;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.25s;
}

.tvc-reference-testimonials .slider-dots .slider-dot.active,
.tvc-reference-testimonials .testimonial-dots .slider-dot.active {
    background: var(--tx-green-bright);
    width: 24px;
    border-radius: 4px;
}

/* Legacy testimonial video styles (scoped) */
.tvc-reference-testimonials .testimonial-card.is-playing img,
.tvc-reference-testimonials .testimonial-card.is-playing .testimonial-content {
    display: none;
}

.tvc-reference-testimonials .testimonial-card.is-playing .testimonial-video {
    display: block;
}

.tvc-reference-testimonials .testimonial-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 1;
    position: absolute;
}

/* ==========================================================================
   About sections — .home-about-new
   ========================================================================== */

.home-about-new,
.designEaslyWrapper {
    float: left;
    width: 100%;
    padding: 0;
}

.home-about-new .home-about-div,
.designEaslyWrapper .home-about-div {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 40px;
}

.home-about-new .home-about-div.flexRow,
.designEaslyWrapper .home-about-div.flexRow,
.flexRow {
    flex-direction: row;
}

.home-about-new .home-about-div.flexRowReverse,
.designEaslyWrapper .home-about-div.flexRowReverse,
.flexRowReverse {
    flex-direction: row-reverse;
}

.home-about-new .home-about-div.flexColumn,
.designEaslyWrapper .home-about-div.flexColumn,
.flexColumn {
    flex-direction: column;
}

.home-about-new .home-about-div.flexColumnReverse,
.flexColumnReverse {
    flex-direction: column-reverse;
}

.home-about-new .home-about-div .home-about-info,
.designEaslyWrapper .home-about-div .home-about-info {
    flex: 0 0 50%;
    color: var(--tx-navy);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.home-about-new .home-about-div .home-about-banner,
.designEaslyWrapper .home-about-div .home-about-banner {
    flex: 0 0 50%;
    padding-right: 45px;
    min-width: 0;
}

.home-about-new .home-about-div.flexRowReverse .home-about-banner,
.flexRowReverse .home-about-banner {
    padding-right: 0;
    padding-left: 45px;
}

.home-about-new .home-about-div .home-about-banner.fullWidth,
.designEaslyWrapper .home-about-div .home-about-banner.fullWidth {
    flex: 0 0 100%;
    padding-right: 0;
}

.home-about-new .home-about-div .home-about-banner img,
.designEaslyWrapper .home-about-div .home-about-banner img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.home-about-new .home-about-div .home-about-banner img[src$=".svg"],
.designEaslyWrapper .home-about-div .home-about-banner img[src$=".svg"] {
    min-height: 280px;
    object-fit: contain;
}

.flexWidthNew .home-about-info {
    padding-right: 20px;
}

/* SEO dashboard visual */
.home-about-banner--visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-dashboard-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 380px;
    margin: 0 auto;
}

.seo-dashboard-visual__panel {
    background: #e8eaef;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.1);
}

.seo-dashboard-visual__panel--main {
    position: relative;
    z-index: 2;
    padding: 18px 20px 22px;
}

.seo-dashboard-visual__panel--side {
    position: absolute;
    right: -12px;
    bottom: -18px;
    width: 52%;
    padding: 16px 18px;
    z-index: 1;
}

.seo-dashboard-visual__toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.seo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.seo-dot--red { background: #ff6058; }
.seo-dot--yellow { background: #ffbd2e; }
.seo-dot--green { background: #28c840; }

.seo-dashboard-visual__url {
    margin-left: 8px;
    font-size: 12px;
    color: #5a6882;
    background: rgba(255, 255, 255, 0.65);
    padding: 4px 12px;
    border-radius: 6px;
}

.seo-dashboard-visual__score {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.seo-dashboard-visual__score-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: conic-gradient(var(--tx-green-bright) 0 352deg, #d5dbe5 352deg 360deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.seo-dashboard-visual__score-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: #e8eaef;
    border-radius: 50%;
}

.seo-dashboard-visual__score-ring strong,
.seo-dashboard-visual__score-ring span {
    position: relative;
    z-index: 1;
}

.seo-dashboard-visual__score-ring strong {
    font-size: 28px;
    line-height: 1;
    color: var(--tx-navy);
}

.seo-dashboard-visual__score-ring span {
    font-size: 11px;
    color: #5a6882;
    margin-top: 2px;
}

.seo-dashboard-visual__metrics {
    flex: 1;
    display: grid;
    gap: 8px;
}

.seo-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
}

.seo-metric span {
    color: #5a6882;
}

.seo-metric strong {
    color: var(--tx-navy);
    font-weight: 700;
}

.seo-metric--good strong {
    color: var(--tx-green-bright);
}

.seo-dashboard-visual__bars {
    display: grid;
    gap: 10px;
}

.seo-bar {
    display: grid;
    gap: 4px;
}

.seo-bar span {
    font-size: 12px;
    color: var(--tx-navy);
    font-weight: 600;
}

.seo-bar i {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--tx-primary), var(--tx-primary-light));
    max-width: 100%;
}

.seo-dashboard-visual__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--tx-navy);
    margin-bottom: 10px;
}

.seo-dashboard-visual__checks {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.seo-dashboard-visual__checks li {
    position: relative;
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.5;
    color: #3d4d66;
    margin-bottom: 4px;
}

.seo-dashboard-visual__checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tx-green-bright);
}

.seo-dashboard-visual__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--tx-navy);
    padding: 6px 12px;
    border-radius: 20px;
}

@media screen and (max-width: 1024px) {
    .seo-dashboard-visual {
        max-width: 100%;
        min-height: 340px;
    }

    .seo-dashboard-visual__panel--side {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }
}

@media screen and (max-width: 640px) {
    .seo-dashboard-visual__score {
        flex-direction: column;
        align-items: flex-start;
    }

    .seo-dashboard-visual__metrics {
        width: 100%;
    }
}

/* Design easily wrapper */
.designEaslyWrapper,
.bgSoftShadow {
    position: relative;
    padding: 90px 0 75px;
}

.designEaslyWrapper::before,
.bgSoftShadow::before {
    content: '';
    background: transparent linear-gradient(180deg, #fff 0%, var(--tx-gradient-mid) 100%) 0 0 no-repeat padding-box;
    opacity: 0.7;
    width: 100%;
    position: absolute;
    height: 35%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transform: rotate(180deg);
    pointer-events: none;
}

.designEaslyWrapper::after,
.bgSoftShadow::after {
    content: '';
    background: transparent linear-gradient(180deg, #fff 0%, var(--tx-gradient-mid) 100%) 0 0 no-repeat padding-box;
    opacity: 0.7;
    width: 100%;
    position: absolute;
    height: 35%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

.home-about-list {
    width: 100%;
    float: left;
}

.home-about-list ul {
    width: 100%;
    float: left;
}

.home-about-list ul li {
    width: 100%;
    float: left;
    text-align: left;
    padding-left: 20px;
    position: relative;
    font-size: 19px;
    line-height: 34px;
    font-weight: 400;
    color: var(--tx-navy);
    margin-bottom: 4px;
}

.home-about-list ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--tx-green-bright);
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 13px;
    left: 0;
}

.home-about-list.list-equal ul li {
    width: 50%;
}

/* Legacy home-about block */
.home-about {
    margin-top: 120px;
    margin-bottom: 101px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
}

.home-about .box-info {
    display: flex;
    flex-direction: column;
    background: var(--tx-bg-soft);
    border-radius: 0 16px 16px 0;
    padding: 77px 120px 81px 60px;
    width: 50%;
    box-sizing: border-box;
    gap: 14px;
}

.home-about .box-info .title {
    font-weight: 500;
    font-size: 38px;
    line-height: 130%;
    width: 65%;
    color: var(--tx-navy);
}

.home-about .box-info p {
    color: var(--tx-muted-3);
    width: 65%;
}

.home-about .box-video {
    margin-top: 77px;
    width: calc(50% + 77px);
    position: relative;
    margin-left: -77px;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px 0 0 16px;
    min-height: 320px;
}

/* ==========================================================================
   Tab area — e-ticaret / hosting software section
   ========================================================================== */

.tab-area {
    float: left;
    width: 100%;
    padding: 60px 0 0;
    margin: 30px 0 0;
    background: url(../images/landing/sections/tabs-background.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.tab-area .container {
    position: relative;
}

.tabTitleWrapper {
    width: 100%;
    float: left;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.tabTitleWrapper h2 {
    margin: 0 auto;
    letter-spacing: -0.68px;
    color: var(--tx-navy);
    font-size: 34px;
    font-weight: 600;
    line-height: 46px;
    position: relative;
}

.tabTitleWrapper h2::after {
    content: '';
    height: 4px;
    width: 220px;
    left: calc(50% - 110px);
    bottom: -17px;
    position: absolute;
    background: var(--tx-blue);
}

.tabWrapper {
    display: flex;
    gap: 10px;
    padding: 20px 0 45px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tabWrapper button,
.tabTitle {
    float: left;
    width: 100%;
    max-width: 200px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.16);
    border-radius: 16px;
    color: var(--tx-navy);
    font-size: 18px;
    padding: 15px 10px;
    height: 136px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    white-space: pre-line;
    line-height: 1.3;
}

.tabWrapper button svg,
.tabTitle svg {
    stroke: var(--tx-blue);
    margin-bottom: 8px;
}

.tabWrapper button.active,
.tabWrapper button:hover,
.tabTitle.active {
    background-color: var(--tx-navy);
    color: #fff;
}

.tabWrapper button.active svg,
.tabTitle.active svg {
    stroke: #fff;
}

.tabContent {
    display: none;
    padding: 0;
    width: 100%;
    float: left;
}

.tabContent.active {
    display: block;
}

.tabDescription {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
}

.tabDescription .cardBox {
    width: 33.333%;
    float: left;
    color: var(--tx-navy);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 105px;
    padding-right: 24px;
}

.tabDescription .cardBox span {
    font-size: 19px;
    max-width: 360px;
    font-weight: 300;
}

.tabDescription .cardBox h3 {
    max-width: 360px;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    float: left;
    margin: 12px 0 20px;
    padding-bottom: 16px;
}

.tabDescription .cardBox h3::after {
    content: '';
    height: 3px;
    width: 130px;
    left: 0;
    bottom: 0;
    position: absolute;
    background: var(--tx-blue);
}

.tabDescription .cardBox p {
    max-width: 360px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 7px;
    line-height: 20px;
    color: var(--tx-muted);
}

.tabDescription .cardBox .home-about-btn {
    margin-top: 37px;
}

.tabDescription.singleContent .cardBox {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tabDescription.singleContent .cardBox h3,
.tabDescription.singleContent .cardBox p,
.tabDescription.singleContent .cardBox span {
    max-width: 100%;
}

.tabDescription.doubleBoxContent .cardBox {
    width: 50%;
}

.tabDescription.quartetBoxContent .cardBox {
    width: 25%;
}

.tabDescription.quartetBoxContent .cardBox p {
    max-width: 220px;
}

/* ==========================================================================
   Blog — .home-blogs-new
   ========================================================================== */

.home-blogs-new {
    float: left;
    width: 100%;
    margin: 0 0 100px;
}

.home-blogs-new .home-blogs-div {
    float: left;
    width: 100%;
}

.home-blogs-new .home-blogs-div .home-blogs-title {
    margin-bottom: 50px;
}

.home-blogs-new .home-blogs-div .home-blogs-list {
    float: left;
    width: 100%;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-blogs-new .home-blogs-div .home-blogs-btn {
    float: left;
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card {
    flex: 1;
    min-width: calc(33.333% - 10px);
    background: #fff;
    border: 1px solid var(--tx-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 24px var(--tx-shadow);
    transform: translateY(-3px);
}

.blog-card .blog-card-img,
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.blog-card .blog-card-text {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card .blog-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

.blog-card .blog-card-meta h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card .blog-card-meta .title {
    color: var(--tx-navy);
}

.blog-card .blog-card-badge.name {
    font-size: 12px;
    color: var(--tx-green);
    font-weight: 600;
}

.blog-card .blog-card-excerpt {
    font-size: 13px;
    color: var(--tx-muted);
    line-height: 1.6;
}

.blog-card .blog-card-body,
.blog-card .content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card .blog-card-title,
.blog-card h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--tx-navy);
}

.blog-card .blog-card-author,
.blog-card .author {
    font-size: 12px;
    color: var(--tx-green);
    font-weight: 600;
}

.blog-card .blog-card-desc,
.blog-card p {
    font-size: 13px;
    color: var(--tx-muted);
    line-height: 1.6;
}

/* ==========================================================================
   FAQ — .home-faq-new
   ========================================================================== */

.home-faq-new {
    float: left;
    width: 100%;
    padding: 90px 0;
    background: var(--tx-faq-bg);
}

.home-faq-new .home-faq-div {
    float: left;
    width: 100%;
}

.home-faq-new .home-faq-div .home-faq-title {
    margin-bottom: 50px;
}

.home-faq-new .home-faq-div .home-faq-list-wrapper {
    width: 100%;
    display: flex;
    gap: 20px;
}

.home-faq-new .home-faq-div .home-faq-list {
    width: 100%;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    page-break-inside: avoid;
    break-inside: avoid;
    box-shadow: 0 0 20px 0 var(--tx-shadow-soft);
    padding: 18px 18px 18px 30px;
    background: #fff;
    border-radius: var(--radius-faq);
    margin-bottom: 15px;
    transition: border-radius var(--transition);
}

.home-faq-new .home-faq-div .home-faq-list .faq-item.active {
    border-radius: 40px;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item .question {
    flex: 1;
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tx-navy);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
    gap: 16px;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item .question span,
.home-faq-new .home-faq-div .home-faq-list .faq-item .question h3 {
    font-size: 17px;
    margin-bottom: 0;
    flex: 1;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item .question .faq-btn {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    background: var(--tx-green-bright);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
    flex-shrink: 0;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item .question .faq-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item.active .question .faq-btn {
    transform: rotate(45deg);
}

.home-faq-new .home-faq-div .home-faq-list .faq-item .answer {
    flex: 1;
    display: none;
    padding: 15px 0 5px;
    font-size: 16px;
    color: var(--tx-muted);
    line-height: 1.75;
    width: 100%;
}

.home-faq-new .home-faq-div .home-faq-list .faq-item.active .answer {
    display: block;
}

/* Legacy FAQ */
.home-faq {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.home-faq h2 {
    font-size: 42px;
    line-height: 150%;
    text-align: center;
}

.home-faq .subtitle {
    color: var(--tx-muted-3);
    margin: 16px 0;
    text-align: center;
}

/* ==========================================================================
   Pricing — .pricing-section #hosting (GaziHost custom)
   ========================================================================== */

.pricing-section {
    float: left;
    width: 100%;
    padding: 80px 0;
    scroll-margin-top: 90px;
}

.pricing-section .pricing-head,
.pricing-section .general-title {
    margin-bottom: 48px;
}

.pricing-section .pricing-grid,
.pricing-section .packageGroupsWrapper {
    display: flex;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-section .item-package,
.pricing-section .pricing-card {
    box-sizing: border-box;
    background: #fbfbfb;
    border: 1px solid var(--tx-border-light);
    border-radius: var(--radius-lg);
    padding: 30px 28px 28px 20px;
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: calc(33.333% - 10px);
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-section .item-package:hover,
.pricing-section .pricing-card:hover {
    box-shadow: 0 8px 32px var(--tx-shadow);
    transform: translateY(-3px);
}

.pricing-section .item-package.suggested,
.pricing-section .pricing-card.featured {
    background: var(--tx-navy);
    color: #fff;
    border-color: var(--tx-navy);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.25);
}

.pricing-section .item-package .title,
.pricing-section .pricing-card .plan-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 4px;
}

.pricing-section .item-package .tagline,
.pricing-section .pricing-card .plan-tag {
    font-size: 13px;
    color: var(--tx-muted-2);
    margin-bottom: 16px;
}

.pricing-section .item-package.suggested .tagline,
.pricing-section .pricing-card.featured .plan-tag {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-section .item-package .new-price,
.pricing-section .pricing-card .plan-price {
    font-weight: 500;
    font-size: 32px;
    line-height: 150%;
    color: var(--tx-navy);
    letter-spacing: -0.03em;
}

.pricing-section .item-package.suggested .new-price,
.pricing-section .pricing-card.featured .plan-price {
    color: #fff;
}

.pricing-section .item-package .new-price span,
.pricing-section .pricing-card .plan-price small {
    font-size: 14px;
    font-weight: 500;
}

.pricing-section .item-package ul,
.pricing-section .pricing-card .plan-features {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 8px;
    flex: 1;
}

.pricing-section .item-package ul li,
.pricing-section .pricing-card .plan-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.pricing-section .item-package ul li::before,
.pricing-section .pricing-card .plan-features li::before {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--tx-bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 11px;
    content: '';
}

.pricing-section .item-package.suggested ul li::before {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-section .item-package .btn,
.pricing-section .pricing-card .plan-cta {
    width: 100%;
    margin-top: auto;
}

.pricing-section .most-popular-tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    height: 34px;
    line-height: 34px;
    background: var(--tx-accent-red);
    border-radius: 18px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 0 18px;
    white-space: nowrap;
}

.pricing-section .most-popular-tag::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--tx-accent-red) transparent transparent transparent;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    position: absolute;
    content: '';
}

/* ==========================================================================
   Footer — .gtag-footer
   ========================================================================== */

.gtag-footer,
footer {
    float: left;
    width: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footerWrapper {
    width: 100%;
}

.gtag-footer .container,
footer .container {
    max-width: var(--container-max);
    padding: 0 20px;
}

footer .footer {
    width: 100%;
    padding: 56px 0 32px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo__text {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-logo__text em {
    color: var(--tx-green-bright);
    font-style: normal;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-trust__item {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.footer-contact__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-contact__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-contact__link:hover {
    color: var(--tx-green-bright);
}

.footer-contact__link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

footer .footer .foot-menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
    margin-bottom: 40px;
}

footer .footer .foot-menu ul {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer .foot-menu ul li:first-child {
    margin-bottom: 6px;
}

footer .footer .foot-menu ul li b,
footer .footer .foot-menu ul li strong {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    cursor: default;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--tx-green-bright);
    display: block;
    width: 100%;
}

footer .footer .foot-menu ul li a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.2s;
}

footer .footer .foot-menu ul li a:hover {
    color: #fff;
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0 32px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--tx-green-bright);
    transition: background 0.2s, transform 0.2s;
}

.footer-action-btn:hover {
    background: var(--tx-primary-hover);
    transform: translateY(-1px);
}

.footer-action-btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.footer-action-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.footer-legal__sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.copyright {
    width: 100%;
    margin-top: -20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.copyright p {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #e3e3e3;
}

.footerBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
}

/* ==========================================================================
   Fixed side CTA — .fixedTag .fixedBtn
   ========================================================================== */

.fixedTag {
    width: auto;
    height: auto;
    display: block;
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: auto;
    z-index: 9999;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.fixedTag:hover {
    background: transparent;
    width: auto;
}

.fixedTag .fixedBtn {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    letter-spacing: 0;
    padding: 14px 24px;
    height: auto;
    width: auto;
    background: var(--tx-green-bright);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 199, 83, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.fixedTag .fixedBtn:hover {
    background: var(--tx-primary-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   Mobile overlay menu — .mobileOverlay
   ========================================================================== */

.mobileOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobileOverlay.open,
.mobileOverlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobileOverlay .mobilePanel,
.mobileOverlay .mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 90vw);
    height: 100%;
    background: #fff;
    padding: 24px;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobileOverlay.open .mobilePanel,
.mobileOverlay.active .mobilePanel,
.mobileOverlay.open .mobile-nav-panel,
.mobileOverlay.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobileOverlay .mobile-close {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--tx-muted);
    padding: 4px 8px;
    margin-bottom: 16px;
}

.mobileOverlay .mobile-nav-link,
.mobileOverlay a {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tx-navy);
    border-radius: 8px;
}

.mobileOverlay .mobile-nav-link:hover,
.mobileOverlay a:hover {
    background: var(--tx-bg-gray);
    color: var(--tx-green);
}

.mobileOverlay .mobile-nav-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--tx-border-light);
}

.mobileOverlay .mobile-nav-section h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tx-muted);
    margin-bottom: 8px;
    padding: 0 14px;
}

/* Overlay general (popup backdrop) */
.overlayGeneral {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 99998;
    display: none;
}

.overlayGeneral.open {
    display: block;
}

/* ==========================================================================
   Reveal animation (scroll)
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Misc utilities
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Campaign timer placeholder */
.campaignTimerDiv {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;
}

/* Main content wrapper */
.homePage .main {
    width: 100%;
    float: left;
    margin-bottom: 60px;
}

/* ==========================================================================
   Responsive — 1200px
   ========================================================================== */

@media screen and (max-width: 1200px) {
    .container {
        max-width: calc(100% - 40px);
    }

    header navbar nav > ul > li > a {
        font-size: 12px;
        padding: 8px 4px;
    }

    header navbar .button-area .btn {
        height: 38px;
        font-size: 12px;
        padding-left: 14px;
        padding-right: 14px;
    }

    #topbar .topbar-phone {
        font-size: 12px;
    }

    .dropdown .menuWrapper .menuContent {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown .menuWrapper .menuContent.menuContent--hosting {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .dropdown .menuWrapper .menuContent.menuContent--refs {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .menuContent--refs .menuContent__cols {
        width: 100%;
        gap: 32px;
    }

    .menuContent--refs .menuContent__cols .dropdown-menu {
        width: 100%;
        max-width: none;
        flex: 1 1 220px;
    }

    .dropdown .menuWrapper .brandMenuLogos {
        justify-content: flex-start;
    }

    .dropdown .menuWrapper .menuBottom .dropdown-menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fullSliderWrapper {
        height: 420px;
    }

    .fullSliderWrapper .sliderLeftWrapper .title {
        font-size: 40px !important;
        letter-spacing: -1px;
    }

    .tabDescription .cardBox {
        width: 50%;
        margin-bottom: 60px;
    }

    .tabDescription.quartetBoxContent .cardBox {
        width: 50%;
    }

    .pricing-section .item-package,
    .pricing-section .pricing-card {
        max-width: calc(50% - 8px);
    }

    footer .footer .foot-menu {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        gap: 32px;
    }

    .home-about-new .home-about-div .home-about-info,
    .home-about-new .home-about-div .home-about-banner {
        flex: 0 0 48%;
    }
}

/* ==========================================================================
   Responsive — 1024px
   ========================================================================== */

@media screen and (max-width: 1024px) {
    :root {
        --header-h: 62px;
    }

    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    #topbar {
        display: none;
    }

    .gtag-header {
        top: 0;
        background: rgba(15, 23, 42, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    }

    .gtag-header > .container {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    header navbar nav {
        display: none;
    }

    header navbar .button-area {
        display: none;
    }

    header navbar .menu-toggle,
    header navbar .hamburger {
        display: flex;
        flex-direction: column;
    }

    header navbar .site-logo__text {
        font-size: 22px;
    }

    .homeFrame {
        min-height: auto;
        height: auto;
    }

    .homeFrame section.banner.banner-content,
    .homeFrame .banner.banner-content {
        min-height: 520px;
        padding-top: calc(var(--header-h) + 16px);
    }

    .fullSliderWrapper {
        height: auto;
        min-height: 0;
        flex-direction: column;
        text-align: center;
        padding-bottom: 32px;
    }

    .fullSliderWrapper .sliderLeftWrapper,
    .fullSliderWrapper .sliderRightWrapper {
        width: 100% !important;
    }

    .homeFrame .banner .thinTitle.topTitle {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .homeFrame .banner .popTitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mainBtns {
        justify-content: center;
    }

    .mainBtns .btn {
        float: none;
    }

    .domain-bar-hero {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .banner .container {
        flex-direction: column;
    }

    .banner .slider-div {
        padding: 0 8px;
        margin-top: 0;
    }

    .banner .slider-div .slider-item {
        flex-direction: column;
        text-align: center;
    }

    .banner .slider-div .slider-item .slogan {
        padding-left: 0;
        text-align: center;
    }

    .home-about {
        flex-direction: column;
    }

    .home-about .box-info,
    .home-about .box-video {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        border-radius: 16px;
        padding: 40px 32px;
    }

    .home-about-new .home-about-div,
    .designEaslyWrapper .home-about-div {
        flex-direction: column !important;
        padding: 24px 0;
    }

    .home-about-new .home-about-div .home-about-info,
    .home-about-new .home-about-div .home-about-banner,
    .designEaslyWrapper .home-about-div .home-about-info,
    .designEaslyWrapper .home-about-div .home-about-banner {
        flex: 0 0 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .home-about-banner img,
    .designEaslyWrapper .home-about-banner img {
        width: 100%;
        height: auto;
    }

    .home-about-list.list-equal ul li {
        width: 100%;
    }

    .tab-area {
        background-size: 120% auto;
    }

    .tabWrapper button,
    .tabTitle {
        max-width: calc(50% - 4px);
        height: 100px;
        font-size: 14px;
    }

    .tabDescription .cardBox {
        width: 50%;
    }

    .blog-card {
        min-width: calc(50% - 8px);
    }

    .home-faq-new .home-faq-div .home-faq-list-wrapper {
        flex-direction: column;
    }

    .pricing-section .item-package,
    .pricing-section .pricing-card {
        max-width: calc(50% - 8px);
        min-width: 260px;
    }

    .pricing-section .item-package.suggested,
    .pricing-section .pricing-card.featured {
        transform: none;
    }

    footer .footer .foot-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
    }

    .dropdown.is-open .menuWrapper {
        display: none !important;
    }

    [id] {
        scroll-margin-top: calc(var(--header-h) + 12px);
    }

    .tvc-reference-testimonials .reference-slider-wrap {
        gap: 8px;
    }

    .tvc-reference-testimonials .ref-slider-btn {
        display: flex;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 24px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}

/* ==========================================================================
   Responsive — 768px
   ========================================================================== */

@media screen and (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .homeFrame section.banner.banner-content,
    .homeFrame .banner.banner-content {
        min-height: 480px;
        padding-top: calc(var(--header-h) + 12px);
    }

    .homeFrame .banner .thinTitle.topTitle {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .homeFrame .banner .popTitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .mainBtns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .mainBtns .btn {
        width: 100%;
        margin-top: 0;
        justify-content: center;
    }

    .domain-bar-hero .domain-bar__form {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }

    .domain-bar-hero .domain-bar__input {
        width: 100%;
        text-align: center;
    }

    .domain-bar-hero .domain-bar__form .btn {
        width: 100%;
    }

    .domain-bar-hero .domain-bar__tags {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner .slider-div .slider-item .slogan .title {
        font-size: 28px;
    }

    .banner .slider-div .slider-item .slogan .thinTitle {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 14px;
    }

    .banner .slider-div .slider-item .slogan .boldTitle {
        font-size: 28px;
        line-height: 36px;
    }

    .banner .slider-div .slider-item .slogan form,
    .domain-search-form {
        flex-direction: column;
        width: 100%;
    }

    .banner .slider-div .slider-item .slogan form .btn,
    .domain-search-form .btn {
        width: 100%;
    }

    .reference-section {
        padding: 32px 0 24px;
    }

    .homePage .reference {
        margin-top: 35px;
    }

    .tvc-reference-testimonials .referenceTitle {
        font-size: 20px;
        padding: 0 8px;
    }

    .tvc-reference-testimonials .reference .slider {
        min-height: 360px;
    }

    .tvc-reference-testimonials .reference .slider .item {
        flex: 0 0 260px;
        width: 260px;
        height: 340px;
    }

    .marquee .marqueeItem {
        flex: 0 0 130px;
        height: 56px;
        padding: 8px 12px;
    }

    .marquee .marqueeItem img {
        height: 22px;
    }

    .general-title .title-1 {
        font-size: 28px;
    }

    .general-title .title-2 {
        font-size: 15px;
        line-height: 1.55;
    }

    .general-title .title-span {
        font-size: 24px;
    }

    .home-about-title .about-title-1 {
        font-size: 22px;
    }

    .home-about-title .about-title-2 {
        font-size: 28px;
    }

    .tabTitleWrapper {
        margin-bottom: 40px;
    }

    .tabTitleWrapper h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .tabWrapper {
        gap: 8px;
    }

    .tabWrapper button,
    .tabTitle {
        max-width: calc(50% - 4px);
        height: 90px;
        font-size: 13px;
    }

    .tabDescription .cardBox,
    .tabDescription.doubleBoxContent .cardBox,
    .tabDescription.quartetBoxContent .cardBox {
        width: 100%;
        margin-bottom: 40px;
        padding-right: 0;
    }

    .blog-card {
        min-width: 100%;
    }

    .home-blogs-new .home-blogs-div .home-blogs-list {
        flex-direction: column;
    }

    .home-faq-new {
        padding: 60px 0;
    }

    .home-faq-new .home-faq-div .home-faq-list .faq-item {
        border-radius: 40px;
        padding: 16px 16px 16px 20px;
    }

    .home-faq-new .home-faq-div .home-faq-list .faq-item .question {
        font-size: 15px;
    }

    .home-faq-new .home-faq-div .home-faq-list .faq-item .question .faq-btn {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        margin-left: 12px;
    }

    .home-faq-new .home-faq-div .home-faq-list .faq-item .question .faq-btn svg {
        width: 20px;
        height: 20px;
    }

    .pricing-section {
        padding: 56px 0;
    }

    .pricing-section .item-package,
    .pricing-section .pricing-card {
        max-width: 100%;
        min-width: 0;
        flex: 1 1 100%;
    }

    .fixedTag {
        width: 48px;
        height: 160px;
        bottom: 24px;
    }

    .fixedTag .fixedBtn {
        font-size: 15px;
    }

    footer .footer {
        padding: 40px 0 24px;
    }

    footer .footer .foot-menu {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-action-btn {
        justify-content: center;
    }

    .footer-trust {
        flex-wrap: wrap;
        justify-content: center;
    }

    .designEaslyWrapper {
        padding: 60px 0 48px;
    }

    .designEaslyWrapper .home-about-banner img {
        border-radius: 12px;
    }

    .seo-dashboard-visual {
        min-height: 300px;
    }

    .mobileOverlay__panel {
        width: 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   Responsive — 480px
   ========================================================================== */

@media screen and (max-width: 480px) {
    body.homePage {
        background: linear-gradient(0deg, #fff 0%, #fff 92%, var(--tx-gradient-end) 100%);
    }

    .homeFrame section.banner.banner-content,
    .homeFrame .banner.banner-content {
        min-height: 440px;
    }

    .homePage .banner.banner-content {
        max-height: none;
    }

    .banner .slider-div {
        padding: 0 4px;
        margin-top: 8px;
    }

    .btn {
        padding: 12px 20px;
        height: 46px;
        font-size: 13px;
    }

    .btn-success.btn-slider {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tvc-reference-testimonials .referenceTitle {
        font-size: 18px;
        padding: 0 4px;
    }

    .tvc-reference-testimonials .reference .slider .item {
        flex: 0 0 240px;
        width: 240px;
        height: 320px;
    }

    .tvc-reference-testimonials .testimonial-box .play-button {
        width: 48px;
        height: 48px;
    }

    .tabWrapper button,
    .tabTitle {
        max-width: 100%;
        width: 100%;
        height: 72px;
    }

    .general-title .title-1 {
        font-size: 24px;
    }

    .home-about-title .about-title-2 {
        font-size: 24px;
    }

    .copyright p {
        font-size: 13px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .fixedTag {
        display: none;
    }
}

/* ==========================================================================
   Index.php bridge — hero nav, logo, slider, domain bar, mobile panel
   ========================================================================== */

header navbar .site-logo__text {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

header navbar .site-logo__text em {
    font-style: normal;
    color: var(--tx-primary-light);
}

body.homePage:not(.stickyPad) .gtag-header navbar nav > ul > li > a {
    color: #fff;
}

body.homePage:not(.stickyPad) .gtag-header navbar nav > ul > li > a:hover {
    color: var(--tx-blue-light);
}

body.homePage:not(.stickyPad) .gtag-header navbar .button-area .btn-outline {
    border-color: var(--tx-green-bright);
    color: #fff !important;
    background: transparent;
}

.homeFrame .banner .thinTitle.text-white,
.homeFrame .banner .thinTitle.topTitle,
.homeFrame .banner .popTitle {
    color: #fff;
}

.homeFrame .banner .thinTitle.topTitle {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
}

.homeFrame .banner .popTitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    opacity: 0.9;
    margin-bottom: 24px;
}

.mainBtns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.domain-bar-hero {
    max-width: 520px;
    margin-top: 20px;
}

.domain-bar-hero .domain-bar__form {
    display: flex;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    padding: 4px;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.domain-bar-hero .domain-bar__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-size: 14px;
    background: transparent;
    border-radius: 30px;
    color: #fff;
}

.domain-bar-hero .domain-bar__input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.domain-bar-hero .domain-bar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.domain-bar-hero .domain-bar__tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 768px) {
    .tvc-reference-testimonials .reference-slider-wrap {
        gap: 8px;
    }
}

/* Legacy bridge overrides removed — see reference section above */

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #c5cdd8;
    cursor: pointer;
    transition: all 0.25s;
}

.slider-dot.active {
    background: var(--tx-green-bright);
    width: 24px;
    border-radius: 4px;
}

.mobileOverlay__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobileOverlay.open .mobileOverlay__panel {
    transform: translateX(0);
}

.mobileOverlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--tx-border-light);
    flex-shrink: 0;
}

.mobileOverlay__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--tx-navy);
    letter-spacing: -0.02em;
}

.mobileOverlay__logo em {
    font-style: normal;
    color: var(--tx-primary);
}

.mobileOverlay__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    background: var(--tx-bg-gray);
    border: none;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--tx-navy);
}

.mobileOverlay__nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    -webkit-overflow-scrolling: touch;
}

.mobileOverlay__link {
    display: block;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--tx-navy);
    border-radius: 10px;
}

.mobileOverlay__link:hover {
    background: var(--tx-bg-gray);
    color: var(--tx-primary);
}

.mobileOverlay__group {
    border-bottom: 1px solid var(--tx-border-light);
}

.mobileOverlay__group:last-child {
    border-bottom: none;
}

.mobileOverlay__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 12px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--tx-navy);
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
}

.mobileOverlay__toggle:hover {
    background: var(--tx-bg-gray);
}

.mobileOverlay__chev {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.mobileOverlay__group.is-open .mobileOverlay__chev {
    transform: rotate(225deg);
}

.mobileOverlay__sub {
    display: none;
    padding: 0 12px 14px;
}

.mobileOverlay__group.is-open .mobileOverlay__sub {
    display: block;
}

.mobileOverlay__subheading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tx-primary);
    margin: 12px 0 6px;
}

.mobileOverlay__subheading:first-child {
    margin-top: 0;
}

.mobileOverlay__sublink {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--tx-navy);
    border-bottom: 1px solid var(--tx-border-light);
}

.mobileOverlay__sublink:last-child {
    border-bottom: none;
}

.mobileOverlay__sublink--bold {
    font-weight: 700;
    color: var(--tx-primary);
}

.mobileOverlay__subdesc {
    font-size: 13px;
    color: var(--tx-muted);
    line-height: 1.45;
    margin: -4px 0 12px;
}

.mobileOverlay__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--tx-border-light);
    background: #fff;
    flex-shrink: 0;
}

.mobileOverlay__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.mobileOverlay__cta--outline {
    border-color: var(--tx-primary) !important;
    color: var(--tx-primary) !important;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

header navbar .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

header navbar .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

header navbar .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.brandMarquee {
    display: flex;
    gap: 16px;
    align-items: center;
    width: max-content;
}

header.sticky navbar .site-logo__text {
    color: #fff;
}

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
    #topbar,
    .fixedTag,
    .mobileOverlay,
    .gtag-header {
        display: none !important;
    }

    body.homePage {
        background: #fff;
    }
}
