:root {
    --uh-primary: #0052cc;
    --uh-primary-dark: #003f9a;
    --uh-accent: #1a73e8;
    --uh-accent-soft: rgba(26, 115, 232, 0.08);
    --uh-secondary: #0b1f4e;
    --uh-success: #2ec866;
    --uh-text: #1f2937;
    --uh-muted: #5b6784;
    --uh-border: #d6dceb;
    --uh-surface: #ffffff;
    --uh-bg: #f3f6fb;
    --uh-radius: 16px;
    --uh-radius-lg: 26px;
    --uh-shadow-sm: 0 10px 30px rgba(10, 36, 99, 0.08);
    --uh-shadow-lg: 0 35px 80px rgba(10, 36, 99, 0.18);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--uh-bg);
    color: var(--uh-text);
}

h1, h2, h3, h4, h5,
.btn,
.lbtn,
.gonderbtn,
input,
select,
textarea,
label {
    font-family: 'Poppins', 'Segoe UI', sans-serif !important;
}

body#home .header,
.header {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.95) 0%, rgba(10, 31, 94, 0.92) 60%, rgba(10, 31, 94, 0.85) 100%);
    min-height: auto;
    padding: 0 0 12px 0;
    box-shadow: none;
    display: block;
}

#wrapper {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.head {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 22px 0 6px;
    margin: 0 auto;
    gap: 18px;
    width: 100%;
    max-width: min(1200px, 92%);
}

.logo {
    float: none !important;
    position: relative !important;
    margin: 0;
    max-width: 100%;
}

.head .clear {
    display: none !important;
}

.head-left {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
}

.head-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
}

.head-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
    min-width: 0;
}

.uh-nav {
    align-items: flex-end;
    display: flex;
    gap: 12px;
    width: 100%;
}

.uh-nav__toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    padding: 10px 14px;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
    flex-shrink: 0;
}

.uh-nav__toggle:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.uh-nav__toggle span {
    letter-spacing: 0.02em;
}

.uh-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    min-width: 0;
}

.uh-nav__item {
    position: relative;
    flex: 0 0 auto;
}

.uh-nav__link {
    align-items: center;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 9px 16px;
    font-size: 14px;
    transition: background .25s ease, color .25s ease;
}

.uh-nav__link:hover,
.uh-nav__link:focus-visible,
.uh-nav__link.active {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.uh-nav__item--has-children > .uh-nav__link {
    padding-right: 24px;
}

.uh-nav__item--has-children > .uh-nav__link::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 6px;
    transition: transform .25s ease;
}

.uh-nav__item--has-children:hover > .uh-nav__link::after,
.uh-nav__item--has-children:focus-within > .uh-nav__link::after {
    transform: rotate(180deg);
}

.uh-nav__dropdown {
    background: #fff;
    border-radius: var(--uh-radius);
    box-shadow: 0 18px 45px rgba(15, 42, 110, 0.14);
    min-width: 220px;
    opacity: 0;
    padding: 16px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
    visibility: hidden;
    z-index: 90;
}

.uh-nav__item--has-children:hover > .uh-nav__dropdown,
.uh-nav__item--has-children:focus-within > .uh-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.uh-nav__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: grid;
    gap: 6px;
}

.uh-nav__dropdown-item {
    position: relative;
}

.uh-nav__dropdown-link {
    align-items: center;
    border-radius: 10px;
    color: var(--uh-secondary);
    display: flex;
    gap: 10px;
    font-weight: 500;
    padding: 10px 14px;
    transition: background .2s ease, color .2s ease;
}

.uh-nav__dropdown-link:hover,
.uh-nav__dropdown-link:focus-visible {
    background: rgba(26, 115, 232, 0.1);
    color: var(--uh-primary);
}

.uh-nav__mega {
    background: #fff;
    border-radius: var(--uh-radius-lg);
    box-shadow: 0 25px 55px rgba(15, 42, 110, 0.18);
    left: 50%;
    min-width: clamp(520px, 68vw, 920px);
    opacity: 0;
    padding: 26px 30px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 18px);
    transform: translate(-50%, -14px);
    transition: opacity .2s ease, transform .2s ease;
    visibility: hidden;
    z-index: 90;
}

.uh-nav__item--has-children:hover > .uh-nav__mega,
.uh-nav__item--has-children:focus-within > .uh-nav__mega {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.uh-nav__mega-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.uh-nav__mega-list li {
    margin: 0;
}

.uh-nav__mega-list li a {
    color: var(--uh-secondary);
    display: block;
    font-weight: 600;
    padding: 6px 0;
    transition: color .2s ease;
}

.uh-nav__mega-list li a:hover {
    color: var(--uh-primary);
}

.uh-nav__mega-list li p {
    color: var(--uh-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 4px 0 0;
}

.uh-nav-mobile {
    background: var(--uh-surface);
    border-radius: var(--uh-radius-lg);
    box-shadow: var(--uh-shadow-lg);
    margin-top: 18px;
    padding: 22px 22px 24px;
}

.uh-nav-mobile .headbutonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.uh-nav-mobile .headbutonlar a {
    background: rgba(26, 115, 232, 0.08);
    border-radius: 12px;
    color: var(--uh-secondary);
    font-weight: 600;
    padding: 10px 16px;
    transition: background .2s ease, color .2s ease;
}

.uh-nav-mobile .headbutonlar a:hover {
    background: rgba(26, 115, 232, 0.14);
    color: var(--uh-primary);
}

.uh-nav-mobile .headbutonlar a i {
    color: var(--uh-primary);
}

.uh-nav-mobile__close {
    align-items: center;
    background: none;
    border: none;
    color: var(--uh-secondary);
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    font-weight: 600;
    margin: 8px 0 18px;
    padding: 0;
}

.uh-nav-mobile__close i {
    color: var(--uh-primary);
    font-size: 18px;
}

.uh-nav-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.uh-nav-mobile__item {
    background: rgba(26, 115, 232, 0.08);
    border-radius: 14px;
}

.uh-nav-mobile__item--child {
    background: none;
    border-radius: 0;
}

.uh-nav-mobile__item--child > .uh-nav-mobile__link {
    color: var(--uh-muted);
    font-weight: 500;
    padding: 10px 0;
}

.uh-nav-mobile__item--child > .uh-nav-mobile__link:hover {
    color: var(--uh-primary);
}

.uh-nav-mobile__link {
    align-items: center;
    color: var(--uh-secondary);
    display: flex;
    font-weight: 600;
    gap: 12px;
    justify-content: space-between;
    padding: 14px 18px;
    transition: color .2s ease;
}

.uh-nav-mobile__link:hover {
    color: var(--uh-primary);
}

.uh-nav-mobile__link.toggle::after {
    content: "\\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    margin-left: 12px;
    transition: transform .25s ease;
}

.uh-nav-mobile__link[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.uh-nav-mobile__sublist {
    border-left: 2px solid rgba(0, 82, 204, 0.18);
    display: none;
    list-style: none;
    margin: 0;
    padding: 10px 0 10px 20px;
}

.uh-nav-mobile__sublist.show {
    display: block;
}

.uh-nav-mobile__sublist li {
    margin: 0;
}

.uh-nav-mobile__sublist a {
    color: var(--uh-muted);
    display: block;
    font-weight: 500;
    padding: 8px 0;
    transition: color .2s ease;
}

.uh-nav-mobile__sublist a:hover {
    color: var(--uh-primary);
}

.headbutonlar a,
.sosyalbtns a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.headbutonlar a:hover,
.sosyalbtns a:hover {
    color: #fff;
}

.sosyalbtns {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.sosyalbtns a {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background .2s ease, color .2s ease;
}

.sosyalbtns a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.headbutonlar a {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px 16px;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.headbutonlar a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.headbutonlar a i {
    margin-right: 6px;
}

.langflagicon img {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.scurrencyicon {
    background: rgba(26, 115, 232, 0.14) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 8px 14px !important;
}

.head-right {
    gap: 18px;
}

.headbutonlar {
    display: flex;
    align-items: center;
    gap: 18px;
    float: none !important;
}

.headbutonlar a {
    float: none !important;
}

#sepeticon {
    float: none !important;
    margin: 0;
}

.sosyalbtns {
    display: flex;
    align-items: center;
    gap: 12px;
    float: none !important;
    flex-wrap: wrap;
}

.sosyalbtns a {
    float: none !important;
}

.menu {
    float: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: auto;
    flex: 1 1 auto;
}

.menu ul {
    gap: 4px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu li a {
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px 22px;
    line-height: normal;
    position: relative;
}

.menu li {
    float: none !important;
    list-style: none;
    position: relative;
}

.menu li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu > a.menuAc {
    margin-left: auto;
    display: none;
}

.menu ul li ul {
    top: 58px;
}

.menu li a:after {
    background: rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    bottom: 0;
    content: "";
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translate(-50%, 60%);
    transition: opacity .25s ease, transform .25s ease;
    width: 70%;
    height: 5px;
}

.menu li a:hover:after,
.menu li a.active:after {
    opacity: 1;
    transform: translate(-50%, 30%);
}

.menuAc {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
}

.promo-bar {
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 82, 204, 0.95), rgba(46, 143, 255, 0.95));
    border-radius: 0 0 18px 18px;
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    position: relative;
}

.promo-bar__text {
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.promo-bar__cta {
    align-items: center;
    background: #fff;
    border-radius: 10px;
    color: var(--uh-primary);
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    margin-left: 18px;
    padding: 8px 14px;
}

.promo-bar__cta:hover {
    color: var(--uh-secondary);
}

.uh-hero {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 80px 0 60px;
}

.uh-hero__badge {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    letter-spacing: 0.06em;
    padding: 10px 18px;
    text-transform: uppercase;
}

.uh-hero__title {
    color: #fff;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin: 18px 0 12px;
}

.uh-hero__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
}

.uh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.uh-btn {
    align-items: center;
    border-radius: 14px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    padding: 15px 26px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.uh-btn--primary {
    background: linear-gradient(120deg, var(--uh-primary) 0%, var(--uh-accent) 100%);
    color: #fff;
    box-shadow: var(--uh-shadow-sm);
}

.uh-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--uh-shadow-lg);
}

.uh-btn--ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.uh-hero__card {
    background: rgba(255, 255, 255, 0.14);
    border-radius: var(--uh-radius-lg);
    color: #fff;
    padding: 26px 30px;
    position: relative;
    overflow: hidden;
}

.uh-hero__card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0.7;
}

.uh-hero__card > * {
    position: relative;
    z-index: 1;
}

.uh-section {
    padding: 80px 0;
}

.uh-section--alt {
    background: var(--uh-bg);
}

.uh-section__header {
    margin-bottom: 40px;
    text-align: center;
}

.uh-section__header h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    color: var(--uh-secondary);
}

.uh-section__header p {
    color: var(--uh-muted);
    margin: 14px auto 0;
    max-width: 640px;
    font-size: 16px;
}

.uh-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.uh-card {
    background: var(--uh-surface);
    border-radius: var(--uh-radius);
    box-shadow: var(--uh-shadow-sm);
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.uh-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--uh-shadow-lg);
}

.uh-card__icon {
    align-items: center;
    background: var(--uh-accent-soft);
    border-radius: 16px;
    color: var(--uh-primary);
    display: inline-flex;
    font-size: 32px;
    height: 60px;
    justify-content: center;
    width: 60px;
    margin-bottom: 18px;
}

.uh-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--uh-secondary);
}

.uh-card p {
    color: var(--uh-muted);
    line-height: 1.6;
    font-size: 15px;
}

.uh-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.uh-pill {
    background: var(--uh-accent-soft);
    border-radius: 999px;
    color: var(--uh-primary);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 15px;
}

.uh-pricing {
    background: var(--uh-surface);
    border-radius: var(--uh-radius-lg);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 32px;
    box-shadow: var(--uh-shadow-sm);
}

.uh-pricing__plan {
    border: 1px solid var(--uh-border);
    border-radius: var(--uh-radius);
    padding: 26px;
}

.uh-pricing__plan--featured {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(26, 115, 232, 0.08));
    border-color: transparent;
    box-shadow: var(--uh-shadow-lg);
}

.uh-pricing__price {
    font-size: 38px;
    font-weight: 700;
    color: var(--uh-secondary);
    margin: 18px 0 14px;
}

.uh-feature-list {
    display: grid;
    gap: 16px;
    margin: 18px 0 24px;
}

.uh-feature-list li {
    align-items: center;
    color: var(--uh-muted);
    display: flex;
    font-size: 15px;
    gap: 10px;
}

.uh-feature-list li i {
    color: var(--uh-success);
    font-size: 18px;
}

.uh-testimonials {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.uh-testimonial {
    background: var(--uh-surface);
    border-radius: var(--uh-radius);
    box-shadow: var(--uh-shadow-sm);
    padding: 28px;
    position: relative;
}

.uh-testimonial:before {
    content: "“";
    font-size: 60px;
    color: rgba(0, 82, 204, 0.15);
    position: absolute;
    top: 12px;
    left: 26px;
    font-weight: 700;
}

.uh-testimonial__meta {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.uh-testimonial__meta img {
    border-radius: 50%;
    height: 54px;
    width: 54px;
}

.uh-footer {
    background: #0b1633;
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 40px;
}

.uh-footer a {
    color: inherit;
}

.uh-footer__top {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 48px;
}

.uh-footer__logo {
    margin-bottom: 18px;
}

.uh-footer__brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.uh-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    padding: 12px 18px;
    margin-top: 12px;
    transition: background .25s ease, transform .25s ease;
}

.uh-footer__cta:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.uh-footer__cta i {
    color: var(--uh-primary);
    font-size: 16px;
}

.uh-footer__text {
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    gap: 12px;
    line-height: 1.6;
    margin-top: 14px;
}

.uh-footer__newsletter {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 20px;
}

.uh-footer__newsletter h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

.uh-footer__newsletter form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.uh-footer__newsletter input {
    flex: 1 1 auto;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
}

.uh-footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.uh-footer__newsletter-btn {
    background: linear-gradient(120deg, var(--uh-primary) 0%, var(--uh-accent) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 12px 18px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.uh-footer__newsletter-btn:hover {
    box-shadow: var(--uh-shadow-sm);
    transform: translateY(-2px);
}

.uh-footer__gdpr {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.uh-footer__gdpr span a,
.uh-footer__gdpr span {
    color: rgba(255, 255, 255, 0.75);
}

.uh-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.uh-footer__social a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
    transition: background .25s ease, transform .25s ease;
}

.uh-footer__social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.uh-footer__col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.uh-footer__list {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.uh-footer__list li {
    list-style: none;
}

.uh-footer__list a {
    color: rgba(255, 255, 255, 0.72);
    transition: color .2s ease;
}

.uh-footer__list a:hover {
    color: #fff;
}

.uh-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 13px;
}

.uh-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.uh-payments img {
    height: 28px;
    opacity: 0.9;
}

/* Buttons */
.gonderbtn,
.lbtn,
.btn {
    border-radius: 14px !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 24px;
}

.gonderbtn,
.lbtn.green,
.btn.green {
    background: linear-gradient(120deg, var(--uh-primary) 0%, var(--uh-accent) 100%) !important;
    color: #fff !important;
    box-shadow: var(--uh-shadow-sm);
}

.gonderbtn:hover,
.lbtn.green:hover {
    box-shadow: var(--uh-shadow-lg);
    transform: translateY(-2px);
}

.tablepaket,
.tablopaketler,
.anascript,
.nedenbiz,
.blogvehaber,
.rakamlarlabiz,
.musterigorusleri {
    background: transparent;
    box-shadow: none;
}

.tablepaket {
    background: var(--uh-surface);
    border-radius: var(--uh-radius);
    border: 1px solid var(--uh-border);
}

.tablepaket h3,
.tablopaketler .gonderbtn,
.pakettitle,
.tpakettitle {
    color: var(--uh-secondary) !important;
}

.tablepaket.active {
    border-color: transparent;
    background: linear-gradient(180deg, rgba(0, 82, 204, 0.08), rgba(26, 115, 232, 0.1));
    transform: translateY(-8px);
}

.tablepaket .gonderbtn {
    background: linear-gradient(120deg, var(--uh-primary) 0%, var(--uh-accent) 100%) !important;
    color: #fff !important;
}

.nedenbiz {
    background: var(--uh-bg) !important;
    padding: 80px 0;
    text-align: center;
}

.pakettitle h1 strong {
    color: var(--uh-secondary);
}

.pakettitle h2 {
    color: var(--uh-muted) !important;
}

.ozellik {
    background: var(--uh-surface);
    border-radius: var(--uh-radius);
    box-shadow: var(--uh-shadow-sm);
    padding: 34px 26px;
    margin: 12px;
    min-width: 260px;
}

.servisikon {
    background: linear-gradient(120deg, rgba(0, 82, 204, 0.12), rgba(26, 115, 232, 0.12));
    height: 110px;
    width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.servisikon i,
.servisikonalt i {
    color: var(--uh-primary);
}

.servisinfos h4 {
    color: var(--uh-secondary);
    font-weight: 600;
    margin: 18px 0 10px;
}

.servisinfos p {
    color: var(--uh-muted);
    line-height: 1.6;
}

.uh-card .uh-btn {
    margin-top: 18px;
    font-size: 14px;
    padding: 12px 20px;
}

.uh-card .uh-btn i {
    font-size: 14px;
}

.homedomainarea-con {
    padding: 80px 0;
    background: var(--uh-bg);
}

.homedomainarea {
    background: var(--uh-surface);
    border-radius: var(--uh-radius-lg);
    box-shadow: var(--uh-shadow-lg);
}

.homedomainarea h1 strong {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--uh-secondary);
}

.homedomainarea form {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 26px auto 22px;
    max-width: 720px;
}

.homedomainarea form input[name="domain"] {
    border: 1px solid var(--uh-border);
    border-radius: 14px;
    font-size: 18px;
    padding: 18px 20px;
    box-shadow: none;
    color: var(--uh-secondary);
}

.homedomainarea form input[type="submit"] {
    background: linear-gradient(120deg, var(--uh-primary) 0%, var(--uh-accent) 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    padding: 0 28px;
    letter-spacing: 0.02em;
}

.homedomainarea .spottlds {
    align-items: center;
    background: var(--uh-accent-soft);
    border-radius: 14px;
    color: var(--uh-primary);
    display: inline-flex;
    gap: 10px;
    margin: 8px;
    padding: 12px 20px;
}

.homedomainarea .spottlds h5 {
    margin: 0;
    font-weight: 600;
    color: inherit;
}

.amount_spot_view {
    align-items: baseline;
    display: inline-flex;
    font-weight: 700;
    gap: 6px;
}

.amount_spot_view i {
    font-style: normal;
    color: var(--uh-primary);
}

.homedomainarea h4 {
    color: var(--uh-muted);
    font-weight: 500;
}

.uh-cta {
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.96), rgba(10, 31, 94, 0.92));
    border-radius: var(--uh-radius-lg);
    box-shadow: var(--uh-shadow-lg);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    padding: 40px 42px;
}

.uh-cta h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
}

.uh-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    max-width: 560px;
}

.uh-cta .uh-btn--ghost {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.footer {
    background: none;
    padding: 0;
}

.footslogan,
.footlogos,
.ebulten,
.ebultencont {
    display: none;
}

@media (max-width: 1023px) {
    .head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .menu {
        width: 100%;
        justify-content: space-between;
    }

    .uh-nav {
        justify-content: flex-end;
        width: 100%;
    }

    .uh-nav__toggle {
        display: inline-flex;
        padding: 12px 18px;
    }

    .uh-nav__list {
        display: none;
    }

    .menu ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .menu > a.menuAc {
        display: inline-flex;
        margin-left: 0;
    }

    .menu ul li {
        width: 100%;
    }

    .menu ul li a {
        justify-content: flex-start;
        width: 100%;
        padding: 14px 18px;
    }

    .promo-bar {
        border-radius: 0;
    }

    .uh-hero {
        padding: 60px 0 40px;
    }

    .uh-hero__card {
        order: -1;
    }

    .uh-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .uh-cta .uh-hero__actions {
        width: 100%;
        justify-content: center;
    }

    .uh-section {
        padding: 60px 0;
    }

    .uh-nav-mobile {
        padding: 20px 18px;
    }
}

@media (max-width: 640px) {
    .uh-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .uh-btn {
        justify-content: center;
    }

    .uh-cta {
        padding: 36px 28px;
    }

    .uh-cta .uh-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .uh-footer__newsletter form {
        flex-direction: column;
        align-items: stretch;
    }

    .uh-footer__newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .uh-card .uh-btn {
        width: 100%;
    }

    .uh-nav-mobile {
        padding: 18px 16px;
    }
}

