/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.63);
    --text-tertiary: rgba(255, 255, 255, 0.50);
    --text-muted: rgba(255, 255, 255, 0.35);
    --icon-dark: #1c1b1f;
    --placeholder: #c4c4c4;

    --glass-fill: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    --glass-border-start: rgba(255,255,255,0.30);
    --glass-border-end: rgba(255,255,255,0.05);

    --btn-fill: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 100%);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    --section-gap: 200px;
    --content-width: 1520px;
    --card-radius: 23px;
    --btn-radius: 10px;
    --pill-radius: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input {
    border: none;
    outline: none;
    font-family: inherit;
    color: inherit;
    background: none;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* ===== GLASS CARD (reusable) ===== */
.glass-card {
    background: var(--glass-fill);
    border-radius: var(--card-radius);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(170deg, var(--glass-border-start), var(--glass-border-end) 55%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

.btn--glass {
    background: var(--btn-fill);
    border-radius: var(--btn-radius);
    padding: 16px 22px;
    position: relative;
}

.btn--glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(to top, rgba(255,255,255,0) 50%, rgba(255,255,255,0.30) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn--text {
    background: none;
    padding: 16px 22px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.55;
}

/* ===== STAT COMPONENT ===== */
.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-primary);
}

.stat__label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.stat__value {
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 30px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 100%);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
}

.nav__arrow {
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__icon {
    width: 43px;
    height: 43px;
}

.logo__text {
    font-size: 24px;
    font-weight: 600;
}

/* Search bar */
.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 256px;
    height: 43px;
    border-radius: 100px;
    border: 1px solid var(--text-primary);
    padding: 0 16px;
}

.search-bar__icon {
    width: 20px;
    height: 20px;
    opacity: 0.35;
}

.search-bar__input {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
}

.search-bar__input::placeholder {
    color: rgba(255,255,255,0.57);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding-top: 100px;
    padding-bottom: 0;
}

.hero__inner {
    position: relative;
    height: 975px;
}

/* Watermark — full-width ghost text overlaying the image center */
.hero__watermark {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 228px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.61) 50%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
}

/* Centered hero image with blur glow behind */
.hero__image-wrapper {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 700px;
    z-index: 3;
    overflow: visible;
}

.hero__image-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--placeholder);
    border-radius: 8px;
    object-fit: cover;
}

/* Tagline — left side, overlapping image vertically centered */
.hero__content-left {
    position: absolute;
    left: 0;
    top: 378px;
    z-index: 2;
}

.hero__tagline {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.53;
}

/* Description + CTA — right side, aligned with middle of image */
.hero__content-right {
    position: absolute;
    right: 0;
    top: 444px;
    z-index: 2;
    max-width: 341px;
}

.hero__description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Stats — bottom left */
.hero__stats {
    position: absolute;
    left: 0;
    bottom: 128px;
    z-index: 2;
    display: flex;
    gap: 124px;
}

/* Smart Contract card — bottom right */
.hero__card {
    position: absolute;
    right: 0;
    bottom: 100px;
    z-index: 2;
    width: 341px;
    height: 121px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__card-text {
    font-size: 24px;
    font-weight: 300;
}

.hero__card-arrow {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-gap) 0;
}

.services__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-card {
    flex: 1;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-height: 462px;
}

.service-card--offset {
    margin-top: 69px;
}

.service-card__icon-circle {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon {
    width: 40px;
    height: 40px;
}

.service-card__title {
    font-size: 28px;
    font-weight: 300;
}

.service-card__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 325px;
}

.service-card__link {
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.service-card__link:hover {
    opacity: 0.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--section-gap) 0;
}

.about__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 160px;
}

.about__header .section-title {
    max-width: 663px;
}

.about__header-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 388px;
    line-height: 1.7;
    padding-top: 73px;
}

.about__content {
    display: flex;
    gap: 108px;
    align-items: flex-start;
}

/* Column 1: 01 text + Market Analysis card */
.about__col-left {
    flex: 0 0 453px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
}

.about__numbered {
    display: flex;
    gap: 16px;
}

.about__number {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.about__numbered-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Column 2: Subtitle + stats vertical */
.about__col-center {
    flex: 0 0 268px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__subtitle {
    font-size: 24px;
    font-weight: 300;
    max-width: 268px;
    line-height: 1.5;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Market Analysis Card */
.market-card {
    max-width: 453px;
    padding: 34px 42px;
}

.market-card__title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.market-card__bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar__track {
    flex: 1;
    height: 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.13);
}

.progress-bar__fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(180deg, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0.40) 100%);
}

.progress-bar__label {
    font-size: 16px;
    font-weight: 400;
    min-width: 36px;
}

/* Column 3: Image */
.about__col-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 581px;
    height: 533px;
    flex-shrink: 0;
}

.about__image-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.about__image {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--placeholder);
    border-radius: 8px;
    object-fit: cover;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
    padding: var(--section-gap) 0;
}

.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 114px;
}

.blog__header .section-title {
    max-width: 773px;
}

.blog__nav-arrows {
    display: flex;
    gap: 23px;
}

.arrow-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn img {
    width: 24px;
    height: 24px;
}

.blog__content {
    display: flex;
    gap: 100px;
    align-items: stretch;
}

.blog__image-col {
    position: relative;
    flex: 0 0 60%;
}

.blog__image {
    width: 100%;
    height: 440px;
    background: var(--placeholder);
    border-radius: 8px;
    object-fit: cover;
}

.blog__vertical-label {
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.blog__vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 20px;
    font-weight: 400;
    transform: rotate(180deg);
}

.blog__vertical-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
}

.blog__article {
    max-width: 496px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog__date {
    font-size: 16px;
    color: var(--text-secondary);
}

.blog__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.75;
}

.blog__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog__link {
    font-size: 16px;
    transition: opacity 0.3s;
}

.blog__link:hover {
    opacity: 0.7;
}

.blog__tags {
    display: flex;
    gap: 96px;
    margin-top: 20px;
}

.badge {
    border: 1px solid var(--text-primary);
    border-radius: var(--pill-radius);
    padding: 12px 19px;
    backdrop-filter: blur(60px);
    font-size: 16px;
    font-weight: 400;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: var(--section-gap) 0;
}

/* CSS Grid: 3 rows x 2 columns */
.testimonials__grid {
    display: grid;
    grid-template-areas:
        "info card1"
        "info card2"
        "card-bl card-br";
    grid-template-columns: 1fr 633px;
    grid-template-rows: repeat(3, 228px);
    gap: 49px;
}

.testimonials__info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

.testimonials__info .section-title {
    font-size: 48px;
    line-height: 1.5;
    max-width: 730px;
    margin-bottom: 84px;
}

.testimonials__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 692px;
    margin-bottom: 80px;
}

.testimonials__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Grid placement for cards */
.testimonials__grid > .testimonial-card:nth-of-type(1) { grid-area: card1; }
.testimonials__grid > .testimonial-card:nth-of-type(2) { grid-area: card2; }
.testimonials__grid > .testimonial-card:nth-of-type(3) { grid-area: card-bl; }
.testimonials__grid > .testimonial-card:nth-of-type(4) { grid-area: card-br; }

/* Card styles */
.testimonial-card {
    display: flex;
    align-items: center;
    padding: 30px 35px;
    gap: 20px;
}

.testimonial-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card__quote {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-card__meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.testimonial-card__author {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
}

.testimonial-card__separator {
    color: var(--text-secondary);
    font-size: 14px;
}

.testimonial-card__role {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--placeholder);
    flex-shrink: 0;
    object-fit: cover;
}

/* ========================================
   DIGITAL TRANSACTIONS SECTION
   ======================================== */
.transactions {
    padding: var(--section-gap) 0;
}

.transactions__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 132px;
}

.transactions__header .section-title {
    max-width: 663px;
}

.transactions__header-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 454px;
    line-height: 1.7;
    padding-top: 73px;
}

.transactions__content {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* Stats column — narrow left */
.transactions__stats-col {
    display: flex;
    flex-direction: column;
    gap: 109px;
    flex: 0 0 99px;
    padding-top: 32px;
    margin-right: 109px;
}

.transactions__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transactions__stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.transactions__stat-value {
    font-size: 36px;
    font-weight: 400;
}

/* Image column */
.transactions__image {
    width: 414px;
    height: 487px;
    background: var(--placeholder);
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 98px;
}

/* Services column: pages + services arcs */
.transactions__services-col {
    flex: 0 0 349px;
    display: flex;
    flex-direction: column;
    padding-top: 57px;
    margin-right: 130px;
}

.transactions__pages {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
}

.transactions__page {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
}

.transactions__service-item {
    margin-bottom: 111px;
}

.transactions__service-item:last-child {
    margin-bottom: 0;
}

.transactions__service-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0;
}

.transactions__service-arc {
    width: 349px;
    height: 44px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    border-radius: 0 0 50% 50%;
}

/* Card column — rightmost */
.transactions__card {
    flex: 0 0 321px;
    padding: 42px;
    margin-top: 177px;
}

.transactions__card-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
}

.transactions__card-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video {
    padding: 120px 0;
}

.video__wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.video__thumbnail {
    width: 100%;
    height: 490px;
    background: var(--placeholder);
    object-fit: cover;
    display: block;
}

.video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
}

.video__play-ring {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.19);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(60px);
}

.video__play-ring--outer {
    width: 92px;
    height: 92px;
}

.video__play-ring--middle {
    width: 73px;
    height: 73px;
}

.video__play-ring--inner {
    width: 56px;
    height: 56px;
}

.video__play-icon {
    position: relative;
    z-index: 1;
    width: 27px;
    height: 34px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding-top: var(--section-gap);
    padding-bottom: 40px;
}

.footer__top {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__newsletter {
    flex: 0 0 auto;
    max-width: 472px;
}

.footer__heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__label {
    font-size: 16px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
}

.footer__input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer__input {
    width: 323px;
    height: 51px;
    border-radius: var(--btn-radius);
    background: rgba(255,255,255,0.02);
    padding: 0 16px;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer__input::placeholder {
    color: var(--text-secondary);
}

.footer__submit {
    height: 51px;
    padding: 0 30px;
}

.footer__socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 22px;
    height: 22px;
}

/* Footer links */
.footer__links-col {
    min-width: 140px;
}

.footer__links li {
    margin-bottom: 4px;
}

.footer__links a {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 2.8;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

/* Footer about */
.footer__about {
    max-width: 301px;
    margin-left: auto;
}

.footer__about .logo {
    margin-bottom: 16px;
}

.footer__about-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer__about-tag {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Footer bottom */
.footer__divider {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin-bottom: 24px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom-links {
    display: flex;
    gap: 30px;
}

.footer__bottom-links a {
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer__bottom-links a:hover {
    opacity: 0.7;
}

.footer__bottom-tag {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1560px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .hero__watermark {
        font-size: 140px;
    }

    .hero__image-wrapper {
        width: 450px;
        height: 550px;
        top: 100px;
    }

    .hero-shield-svg {
        width: 320px;
    }

    .hero__content-left {
        top: 340px;
    }

    .hero__content-right {
        top: 400px;
    }

    .services__inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

    .service-card--offset {
        margin-top: 0;
    }

    .testimonials__grid {
        grid-template-areas:
            "info"
            "card1"
            "card2"
            "card-bl"
            "card-br";
        grid-template-columns: 1fr;
        grid-template-rows: auto repeat(4, 228px);
        gap: 30px;
    }

    .transactions__content {
        flex-wrap: wrap;
    }

    .transactions__stats-col {
        margin-right: 40px;
    }

    .transactions__image {
        width: 350px;
        height: 400px;
        margin-right: 40px;
    }

    .transactions__services-col {
        margin-right: 40px;
    }

    .blog__image-col {
        flex: 0 0 55%;
    }
}

@media (max-width: 992px) {
    :root {
        --section-gap: 120px;
    }

    .container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 36px;
        line-height: 1.4;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .nav--left,
    .nav--right {
        gap: 20px;
    }

    .search-bar {
        width: 200px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero__inner {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 40px;
    }

    .hero__watermark {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        font-size: 60px;
        margin-bottom: 20px;
    }

    .hero__image-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin-bottom: 40px;
    }

    .hero-shield-svg {
        width: 260px;
    }

    .hero__content-left {
        position: relative;
        left: auto;
        top: auto;
    }

    .hero__content-right {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 30px;
    }

    .hero__stats {
        position: relative;
        left: auto;
        bottom: auto;
        justify-content: center;
        margin-top: 40px;
        gap: 60px;
    }

    .hero__card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 341px;
        margin-top: 30px;
    }

    .about__header {
        flex-direction: column;
        gap: 20px;
    }

    .about__header-desc {
        padding-top: 0;
    }

    .about__content {
        flex-direction: column;
    }

    .about__col-left,
    .about__col-center {
        flex: auto;
    }

    .about__image-wrapper {
        height: 350px;
    }

    .blog__content {
        flex-direction: column;
    }

    .blog__header {
        flex-direction: column;
        gap: 20px;
    }

    .footer__top {
        flex-wrap: wrap;
    }

    .footer__about {
        margin-left: 0;
    }

    .transactions__header {
        flex-direction: column;
        gap: 20px;
    }

    .transactions__header-desc {
        padding-top: 0;
    }

    .transactions__content {
        flex-direction: column;
        gap: 30px;
    }

    .transactions__stats-col {
        flex-direction: row;
        gap: 40px;
        margin-right: 0;
    }

    .transactions__image {
        width: 100%;
        height: 300px;
        margin-right: 0;
    }

    .transactions__services-col {
        flex: auto;
        margin-right: 0;
        padding-top: 0;
    }

    .transactions__card {
        flex: auto;
        margin-top: 0;
    }

    .about__image-wrapper {
        width: 100%;
    }
}

@media (max-width: 640px) {
    :root {
        --section-gap: 80px;
    }

    .section-title {
        font-size: 28px;
    }

    .nav--left,
    .search-bar {
        display: none;
    }

    .hero__watermark {
        font-size: 40px;
    }

    .hero__tagline {
        font-size: 28px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .services__inner {
        flex-direction: column;
    }

    .service-card {
        flex: auto;
        min-height: auto;
    }

    .about__col-left {
        flex: auto;
    }

    .about__col-center {
        flex: auto;
    }

    .blog__tags {
        flex-wrap: wrap;
        gap: 20px;
    }

    .blog__image-col {
        flex: auto;
        padding-left: 0;
    }

    .testimonials__grid {
        grid-template-rows: auto repeat(4, auto);
    }

    .testimonial-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
    }

    .testimonial-card__avatar {
        width: 80px;
        height: 80px;
    }

    .transactions__stats-col {
        flex-direction: column;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__input-group {
        flex-direction: column;
    }

    .footer__input {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .video__thumbnail {
        height: 250px;
    }
}

/* ========================================
   VPN-SPECIFIC ADDITIONS
   ======================================== */

/* Hero shield graphic */
.hero-shield-graphic {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-shield-svg {
    width: 420px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.06));
}

/* About network graphic */
.about-network-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-network-svg {
    width: 100%;
    height: auto;
}

/* How-to steps */
.howto-steps {
    display: flex;
    gap: 48px;
    align-items: stretch;
}

.howto-step {
    flex: 1;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.howto-step__number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
}

.howto-step__icon-circle {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.howto-step__icon-circle .material-symbols-outlined {
    font-size: 36px;
    color: #1c1b1f;
}

.howto-step__title {
    font-size: 24px;
    font-weight: 400;
}

.howto-step__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pricing-card__type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.pricing-card__name {
    font-size: 24px;
    font-weight: 400;
}

.pricing-card__price {
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}

.pricing-card__price small {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-card__detail {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-card__features {
    list-style: none;
    font-size: 14px;
    color: var(--text-secondary);
    width: 100%;
    text-align: left;
    margin: 8px 0;
}

.pricing-card__features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card__features li::before {
    content: '✓';
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

.pricing-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px;
    color: var(--text-secondary);
}

/* CTA Banner */
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    overflow: visible;
}

.cta-banner__content {
    max-width: 550px;
}

.cta-banner__title {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 16px;
}

.cta-banner__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-shield {
    width: 200px;
    height: auto;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu-btn--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn--open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    background: var(--bg-primary);
}

.mobile-menu--open {
    display: flex;
}

.mobile-menu__link {
    font-size: 18px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--text-primary);
}

/* Nav login button */
.nav__login-btn {
    padding: 10px 24px;
    font-size: 14px;
}

@media (max-width: 992px) {
    .howto-steps {
        flex-direction: column;
        gap: 24px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
        gap: 40px;
    }

    .cta-banner__title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav--left,
    .nav--right {
        display: none;
    }

    .cta-banner__title {
        font-size: 24px;
    }

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