/* ===========================================
   Easy Search — app.css
   =========================================== */

:root {
    --primary: #18aeff;
    --primary-light: #d9f1fc;
    --primary-lighter: #e3f6fd;
    --primary-lightest: #f1fafe;
    --bg-grey: #f5f9fa;
    --text: #515151;
    --text-dark: #000;
    --text-muted: #5a6e79;
    --text-accent: #9aa7ae;
    --text-branded: #0277c1;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Caveat', cursive;
    --font-mono: 'Inter', sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 46px;
    --shadow-card: 0px 0px 34px 0px #e3f6fd;
    --shadow-small: 0px 0px 14px 0px #e3f6fd;
}

/* ---- Base / Reset ---- */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
a { text-decoration: none; color: inherit; transition: opacity .2s; }
a:hover { text-decoration: none; opacity: .85; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(106deg, #000 12.7%, #5fc1ff 78.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.15em;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn_main {
    background: var(--primary);
    color: #fff;
    padding: 8px 4px 8px 24px;
    border-radius: var(--radius-pill);
    height: 48px;
    box-shadow: inset 0 0 9px 0 rgba(255,255,255,.3);
    position: relative;
}
.btn_sm {
    height: 42px;
    padding: 4px 4px 4px 24px;
    font-size: 16px;
}

.btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(239deg, #fff 11%, #39b9ff 66%);
    background-clip: padding-box;
    border: none;
    flex-shrink: 0;
}
.btn_sm .btn-arrow-circle {
    width: 38px;
    height: 38px;
}
.btn-arrow-circle img {
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
}

/* ---- Animation Keyframes ---- */
@keyframes pixFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pixFadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pixFadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pixFadeRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pixZoomIn {
    from { opacity: 0; transform: scale(.8); }
    to { opacity: 1; transform: scale(1); }
}

.pixFadeUp { animation-name: pixFadeUp; }
.pixFadeDown { animation-name: pixFadeDown; }
.pixFadeLeft { animation-name: pixFadeLeft; }
.pixFadeRight { animation-name: pixFadeRight; }
.pixZoomIn { animation-name: pixZoomIn; }

/* ---- Page Loader ---- */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader { position: relative; }
.blobs {
    filter: url(#goo);
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 70px;
}
.blob-center {
    position: absolute;
    background: var(--primary);
    width: 30px; height: 30px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.blob {
    position: absolute;
    background: var(--primary);
    width: 50px; height: 50px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: blob-turn 3s ease-in-out infinite;
}
.blob:nth-child(3) { animation-delay: .4s; }
.blob:nth-child(4) { animation-delay: .8s; }
.blob:nth-child(5) { animation-delay: 1.2s; }
.blob:nth-child(6) { animation-delay: 1.6s; }
.blob:nth-child(7) { animation-delay: 2s; }
@keyframes blob-turn {
    0% { transform: translate(-50%,-50%) scale(1); }
    50% { transform: translate(-50%,-50%) scale(1.8); }
    100% { transform: translate(-50%,-50%) scale(1); }
}

/* ---- Header / Navigation ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
    transition: all .3s;
}
.site-header.pix-header-fixed {
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.header-container {
    max-width: 1440px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.site-mobile-logo {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 72px;
    width: 100%;
}

.site-logo {
    flex-shrink: 0;
}

.logo-combo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #18aeff, #18aeff);
    overflow: hidden;
    flex-shrink: 0;
}
.logo-icon-wrap--sm {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    box-shadow: inset 0 0 12px 0 rgba(255,255,255,.5);
}
.logo-icon-wrap--lg {
    width: 81px;
    height: 81px;
    border-radius: 18px;
    box-shadow: inset 0 0 21px 0 rgba(255,255,255,.5);
}
.logo-icon-wrap--xs {
    width: 29px;
    height: 29px;
    border-radius: 4px;
    box-shadow: inset 0 0 8px 0 #fff;
}
.logo-icon-wrap--xxs {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    box-shadow: inset 0 0 6px 0 #fff;
}
.logo-icon-wrap img {
    position: absolute;
    top: 9%;
    left: -6%;
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
}
.logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: .2px;
    background: linear-gradient(106deg, #000 12.7%, #5fc1ff 78.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.menu-wrapper {
    flex: 1;
}

.site-main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.site-main-menu li a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--text);
    transition: color .2s;
}
.site-main-menu li a:hover,
.site-main-menu li a.current_page {
    color: var(--primary);
}

.close-menu { display: none; }
.toggle-menu { display: none; cursor: pointer; }
.toggle-menu .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all .3s;
}

/* ---- Hero / Fullscreen ---- */
.fullscreen {
    position: relative;
    padding: 140px 0 80px;
    min-height: 750px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 724px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: linear-gradient(174deg, #fff 12%, rgba(248,244,254,0) 54%, #c7ecfa 85%);
    opacity: .5;
    z-index: 0;
}

.hero-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 0 0 auto;
    max-width: 563px;
    padding-top: 100px;
}

.hero-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    max-width: 462px;
    margin-bottom: 32px;
}

.hero-visual {
    position: relative;
    flex: 1;
    min-height: 550px;
}

.hero-browser-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: visible;
    width: 436px;
    padding: 0;
    z-index: 2;
}

.browser-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 60px;
    padding: 20px;
    box-shadow: var(--shadow-small);
    margin: 32px 40px 0;
    position: relative;
    z-index: 2;
}
.search-bar-icon { flex-shrink: 0; width: 24px; height: 24px; }
.search-bar-text {
    font-family: var(--font-mono);
    font-size: 20px;
    color: #000;
}

.browser-suggestions {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 9px 0 #e3f6fd;
    padding: 0;
    margin: 8px 56px 0;
    position: relative;
    z-index: 2;
}
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px;
}
.suggestion-item.highlighted {
    background: var(--primary-lightest);
    border-radius: var(--radius-sm);
}
.suggestion-icon { flex-shrink: 0; width: 15px; height: 15px; }
.suggestion-icon-logo { flex-shrink: 0; width: 29px; height: 29px; border-radius: 4px; }
.suggestion-text {
    font-family: var(--font-mono);
    font-size: 13px;
}
.suggestion-text.muted { color: rgba(0,0,0,.5); }
.suggestion-text.branded { font-weight: 600; color: var(--text-branded); }

.cursor-pointer-icon {
    position: absolute;
    bottom: 20px;
    right: 40px;
    z-index: 3;
}
.cursor-pointer-icon .cursor-shadow {
    position: absolute;
    top: 9px;
    left: -1px;
    opacity: .3;
    filter: blur(1.5px);
}
.cursor-pointer-icon.small { bottom: 30px; right: 40px; }
.cursor-pointer-icon.small .cursor-shadow { filter: blur(1.4px); }

.hero-results-placeholder {
    position: absolute;
    top: 225px;
    right: -120px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 88px 36px 36px;
    width: 436px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
}

.placeholder-bar {
    background: var(--bg-grey);
    border-radius: 30px;
    height: 26px;
}
.placeholder-bar.thin { height: 7px; }

.hero-badge {
    position: absolute;
    bottom: -15px;
    right: -70px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #e3f6fd;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}
.hero-badge span {
    font-family: var(--font-body);
    font-size: 18.5px;
    color: #000;
    letter-spacing: .2px;
}

.deco-arrow {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deco-arrow-left {
    top: 302px;
    left: -5px;
    width: 126px;
    height: 122px;
}
.deco-arrow-left img {
    width: 36px;
    height: 139px;
    max-width: none;
    flex-shrink: 0;
    transform: rotate(-46.57deg);
}
.deco-arrow-right {
    top: 52px;
    left: 498px;
    width: 115px;
    height: 131px;
}
.deco-arrow-right img {
    width: 36px;
    height: 139px;
    max-width: none;
    flex-shrink: 0;
    transform: rotate(141.24deg);
}

.deco-label {
    position: absolute;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 40px;
    color: var(--text-accent);
    z-index: 4;
    transform: translateX(-50%);
    white-space: nowrap;
}
.deco-label-type {
    top: 116px;
    left: 522px;
}
.deco-label-results {
    top: 419px;
    left: -48px;
}

/* ---- HIW Section ---- */
.hiw-section {
    padding: 80px 0 20px;
}
.section-subtitle {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 40px;
    color: var(--text-accent);
    line-height: 1;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 43px;
    line-height: 1.15;
}
.hiw-section .section-title {
    background: linear-gradient(133deg, #000 12.7%, #5fc1ff 78.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.features-section .section-title {
    font-size: 48px;
}

/* ---- Steps Section ---- */
.steps-section {
    padding: 60px 0 40px;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.step-row-right { flex-direction: row; }
.step-row-left { flex-direction: row; }

.step-card {
    position: relative;
    flex: 0 0 606px;
}

.step-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 9px;
    padding: 8px 14px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 37px;
    color: var(--primary);
    line-height: 1;
    z-index: 2;
    white-space: nowrap;
}

.step-browser-bar {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    padding: 14px 16px;
    overflow: hidden;
}

.step-browser-dots {
    height: 34px;
    background: var(--primary-light);
    border-radius: 15px 15px 0 0;
    margin: -14px -16px 14px;
}

.step-search-bar {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border-radius: 55px 0 0 55px;
    padding: 18px;
    box-shadow: 0 0 13px 0 #e3f6fd;
    margin-bottom: 6px;
}
.step-search-bar span {
    font-family: var(--font-mono);
    font-size: 18px;
    color: #000;
}
.step-search-bar span.small-text {
    font-size: 12px;
}

.step-suggestions {
    background: #fff;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 0 8px 0 #e3f6fd;
    padding: 0;
}
.step-suggestion-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px;
}
.step-suggestion-item.highlighted {
    background: var(--primary-lightest);
    border-radius: 9px;
}
.step-suggestion-item span {
    font-family: var(--font-mono);
    font-size: 12px;
}
.step-suggestion-item .muted { color: rgba(0,0,0,.5); }
.step-suggestion-item .branded { font-weight: 600; color: var(--text-branded); }

.step-results-placeholder {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}

.step2-label {
    position: absolute;
    left: -36px;
    top: 229px;
    background: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 9px;
    padding: 8px 14px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 37px;
    color: #9e9e9e;
    line-height: 1;
    white-space: nowrap;
}

.step-text {
    flex: 1;
}
.step-text-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 462px;
}
.step-text-desc {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text);
    max-width: 518px;
    margin-bottom: 16px;
}
.step-row-left .step-text-desc {
    font-size: 16px;
    max-width: 462px;
}
.step-row-left .step-text-title {
    margin-bottom: 24px;
}

/* ---- Features Section ---- */
.features-section {
    padding: 40px 0 0;
}

.features-inner {
    margin: 0 16px;
    padding: 110px 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(173deg, #fff 12%, #e8f7fd 85%);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 48px 0;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 209px;
}
.feature-card-title {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 32px;
    color: var(--primary);
    line-height: 1;
}
.feature-card-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 276px;
}

/* ---- Footer ---- */
.footer {
    padding: 0 16px;
    margin-top: 16px;
}
.footer-inner {
    background: linear-gradient(to bottom, var(--primary-light), #fff);
    border-radius: var(--radius-lg);
    padding: 48px 72px;
    overflow: hidden;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.footer-logo-combo {
    display: flex;
    align-items: center;
    gap: 17px;
}
.footer-logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 35.6px;
    color: #000;
    letter-spacing: .36px;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--text);
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(239deg, #fff 11%, #39b9ff 66%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 999;
    text-decoration: none;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top img {
    transform: rotate(90deg);
}
.footer-copyright {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
}

/* ---- Modal ---- */
.modal-content {
    border-radius: var(--radius-md);
    border: none;
}
.modal-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}
.modal .btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 28px;
    border-radius: var(--radius-pill);
}

/* ---- Inner Pages shared styles ---- */
.inner-page-bg {
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 842px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: .5;
    z-index: 0;
}

.inner-hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 500px;
    overflow: hidden;
    z-index: 1;
}

.inner-hero-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 58px;
    line-height: 1.1;
    max-width: 515px;
}
.uninstall-page .inner-hero-title {
    background: linear-gradient(98deg, #000 12.7%, #5fc1ff 78.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inner-hero-subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    max-width: 462px;
    margin-top: 32px;
}

/* ---- Uninstall Steps ---- */
.uninstall-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.uninstall-step-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 452px;
}
.uninstall-step-card:nth-child(1) { transform: rotate(-2.96deg); }
.uninstall-step-card:nth-child(2) { transform: rotate(2.02deg); }
.uninstall-step-card:nth-child(3) { transform: rotate(-2.26deg); }
.uninstall-step-card:nth-child(4) { transform: rotate(1.82deg); }

.uninstall-step-num {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.uninstall-step-text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
}
.uninstall-step-icon {
    width: 33px;
    height: 33px;
    background: #fff;
    border-radius: 29px;
    box-shadow: 0 2px 18px rgba(0,0,0,.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.uninstall-step-icon img { width: 22px; height: 22px; }

/* ---- Contact Page ---- */
.contact-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 120px;
    position: relative;
}
.contact-card {
    background: linear-gradient(to right, #fff, rgba(255,255,255,.4));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 48px 32px;
    width: 415px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}
.contact-card-title {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 40px;
    color: var(--primary);
    line-height: 1;
}
.contact-card-desc {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 351px;
}

.contact-illustration-wrap {
    background: linear-gradient(to bottom, #fff 37%, #d4f1fc);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    width: 415px;
    height: 278px;
    overflow: visible;
    position: relative;
}
.contact-illustration-wrap img {
    width: 267px;
    height: 325px;
    object-fit: cover;
    position: absolute;
    top: -91px;
    left: 62px;
}
.contact-page .inner-hero {
    padding-bottom: 160px;
}

/* ---- Terms / Privacy Page ---- */
.terms-content {
    position: relative;
    padding: 114px 0 80px;
    z-index: 1;
}
.terms-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 58px;
    line-height: normal;
    text-align: center;
    margin-bottom: 32px;
}
.terms-page .terms-title,
.privacy-page .terms-title {
    background: linear-gradient(129deg, #000 12.7%, #5fc1ff 78.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.terms-body {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    max-width: 780px;
    margin: 0 auto;
}
.terms-body h2,
.terms-body h3,
.terms-body h4 {
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}
.terms-body h2 { font-size: 24px; }
.terms-body h3 { font-size: 20px; }
.terms-body h4 { font-size: 18px; }
.terms-body p {
    margin-bottom: 16px;
}
.terms-body a {
    color: var(--primary);
    text-decoration: underline;
}
.terms-body a:hover {
    opacity: .8;
}
.terms-body ul,
.terms-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.terms-body li {
    margin-bottom: 8px;
}
.terms-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ---- Thanks Page ---- */
.thanks-hero {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    z-index: 1;
}
.thanks-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.15;
    max-width: 717px;
    margin: 0 auto 40px;
}
.thanks-visual {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}
.thanks-illustration {
    position: relative;
    width: 312px;
}
.thanks-illustration img {
    width: 100%;
    border-radius: var(--radius-lg);
}
.thanks-illustration .shadow-ellipse {
    width: 285px;
    height: 19px;
    margin: -5px auto 0;
}

/* ---- 404 Page ---- */
.error-page {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    min-height: 800px;
    overflow: hidden;
    z-index: 1;
}
.error-bg {
    position: absolute;
    top: 78px; left: 16px; right: 16px;
    height: 764px;
    border-radius: var(--radius-lg);
    opacity: .5;
    z-index: 0;
}
.error-404-text {
    position: relative;
    z-index: 1;
    margin-bottom: -40px;
}
.error-404-text img {
    max-width: 936px;
    margin: 0 auto;
}
.error-illustration {
    position: relative;
    z-index: 2;
    width: 328px;
    margin: 0 auto 30px;
}
.error-illustration img {
    width: 100%;
    border-radius: var(--radius-lg);
}
.error-illustration .shadow-ellipse {
    width: 300px;
    height: 13px;
    margin: -5px auto 0;
}
.error-content {
    position: relative;
    z-index: 3;
}
.error-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.error-desc {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    max-width: 566px;
    margin: 0 auto 24px;
}

/* ---- Removed Page ---- */
.removed-hero {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    z-index: 1;
}
.removed-bg {
    position: absolute;
    top: 78px; left: 16px; right: 16px;
    height: 764px;
    border-radius: var(--radius-lg);
    opacity: .5;
    z-index: 0;
}
.removed-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.15;
    max-width: 582px;
    margin: 0 auto 24px;
}
.removed-landscape {
    position: absolute;
    bottom: 70px;
    left: 67px;
    right: 0;
    z-index: 0;
}
.removed-landscape img {
    width: 100%;
    max-width: 1291px;
}
.removed-illustration {
    position: relative;
    z-index: 2;
    width: 220px;
    margin: 30px auto 0;
}
.removed-illustration img {
    width: 100%;
    border-radius: var(--radius-lg);
}
.removed-illustration .shadow-ellipse {
    width: 202px;
    height: 9px;
    margin: -3px auto 0;
}
