/* ============================================
   SecureVPN.io — Stylesheet
   Brand color: #32A5F8
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
  --main-color: #32A5F8;
  --dark-blue-color: #1a8ad4;
  --dark-color: #0f1923;
  --white-color: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #ffffff;
}

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

a {
    color: #32A5F8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5em;
}

.text-center{
    text-align: center!important;
}

/* --- Layout --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: #32A5F8;
    color: #fff;
    border-color: #32A5F8;
}

.btn-primary:hover {
    background: #1a8ad4;
    border-color: #1a8ad4;
}

.btn-secondary {
    background: #0f1923;
    color: #fff;
    border-color: #0f1923;
}

.btn-secondary:hover {
    background: #1a2a3a;
}

.btn-outline {
    background: transparent;
    color: #32A5F8;
    border-color: #32A5F8;
}

.btn-outline:hover {
    background: #32A5F8;
    color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Header & Nav --- */
.site-header {
    background: #d2e8f6;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #00000012;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
}

.logo:focus-visible{
    outline: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
    padding: 0;
}

.nav-link {
    color: var(--dark-color);
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: #0069b5;
    /* background: var(--dark-blue-color); */
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: transform 0.2s;
}

.hamburger {
    position: relative;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    margin-left: 0.4rem;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230f1923' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s;
}

.nav-link:hover.nav-dropdown-toggle::after,
.nav-link.active.nav-dropdown-toggle::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230f1923' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-dropdown.open .dropdown-menu {
    display: block;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #d2e8f6;
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.dropdown-menu a {
    display: block;
    padding: 5px 20px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
}

.dropdown-menu a:hover {
    color: var(--dark-color);
    background: rgba(50, 165, 248, 0.15);
}

/* Language switcher */
.lang-switcher {
    margin-left: 0.25rem;
}

.lang-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lang-switcher-toggle::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f1923' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.lang-switcher .dropdown-menu {
    left: auto;
    right: 0;
    min-width: 160px;
    padding: 0.5rem 0;
}

.lang-switcher .dropdown-menu a {
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f1923;
}

.lang-switcher .dropdown-menu a.is-active {
    background: rgba(50, 165, 248, 0.15);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 0.25rem;
        border-top: 1px solid rgba(15, 25, 35, 0.1);
        padding-top: 0.5rem;
    }

    .lang-switcher .dropdown-menu {
        right: auto;
    }
}

/* --- Hero --- */
.hero {
    color: #000;
    text-align: center;
    padding: 2rem 0 4rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(178deg, #1a8ad436 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-copy {
    text-align: left;
}

.hero-lottie {
    display: flex;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(/public/images/bg-1.png) no-repeat center center / cover; */
    /* filter: blur(6px); */
    z-index: -1;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #000;
    /* text-shadow: 2px 2px 5px black; */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00000094;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-cta a img{
    transition: 0.3s;
}

.hero-cta a:hover img{
    box-shadow: 0 2px 12px rgb(41 165 255 / 51%);
    border-radius: 8px;
    transform: translateY(-2px);
    transition: 0.3s;
}

.page-hero {
    background: aliceblue;
    color: #000;
    text-align: left;
    padding: 3rem 0;
}

.page-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--dark-blue-color);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e4ecf2;
    color: #fff;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 20px;
}

/* --- Content Sections --- */
.content-section, .features-overview, .tools-section, .cta-section, .video-gallery,
.features-detail, .pricing-section, .guarantee-section, .pricing-comparison,
.download-section, .setup-steps, .about-content, .contact-section,
.blog-listing, .tool-cta {
    padding: 4rem 0;
}

.content-section h2, .features-overview h2, .tools-section h2,
.features-detail h2, .download-section h2, .setup-steps h2,
.about-content h2, .blog-listing h2, .pricing-comparison h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0f1923;
}

.section-subtitle {
    color: #5a6b7d;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* --- Two Column --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

.two-col p {
    margin-bottom: 1rem;
}

/* --- Check Lists --- */
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.check-list li {
    padding: 0.35rem 0 0.35rem 1.75rem;
    position: relative;
}

.check-list li::before {
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.check-list.positive li::before {
    content: '✓';
    color: #22c55e;
}

.check-list.negative li::before {
    content: '✗';
    color: #ef4444;
}

/* --- Use Cases Section --- */
.use-cases-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #e4ecf2;
    border-bottom: 1px solid #e4ecf2;
}

.use-cases-heading {
    font-size: 1.75rem;
    color: #0f1923;
    margin-bottom: 0.5rem;
    text-align: center;
}

.use-cases-section .section-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.use-case-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: #ffffff;
    border: 1px solid #dbe9f4;
    border-radius: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.use-case-card:hover {
    box-shadow: 0 6px 24px rgba(50, 165, 248, 0.12);
    transform: translateY(-3px);
}

.use-case-icon-wrap {
    width: 80px;
    height: 80px;
    background: #eaf4fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.use-case-icon {
    width: 42px;
    height: 42px;
    display: block;
}

.use-case-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1923;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #32A5F8;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card ul li {
    color: #5a6b7d;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid #f0f4f8;
}

.use-case-card ul li:last-child {
    border-bottom: none;
    color: #32A5F8;
    font-weight: 600;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f4f8fb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e4ecf2;
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: #5a6b7d;
    font-size: 0.95rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* --- Privacy Visual Section --- */
.privacy-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.privacy-visuals {
    padding: 4rem 0;
}

.privacy-visual-card {
    background: #f7fbff;
    border: 1px solid #dbe9f4;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.privacy-visual-card img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 1rem;
}

.privacy-visual-card h3 {
    font-size: 1.05rem;
    color: #0f1923;
}

/* --- Feature Blocks (Features page) --- */
.feature-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e4ecf2;
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    margin-bottom: 0.75rem;
    max-width: 750px;
}

.feature-content ul {
    margin-bottom: 1rem;
}

.feature-content li {
    margin-bottom: 0.25rem;
}

/* --- Tool Cards --- */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tool-card {
    display: block;
    background: #0f1923;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(50, 165, 248, 0.3);
    text-decoration: none;
}

.tool-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.tool-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tool-card p {
    color: #a0b4c8;
    font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #32A5F8 0%, #1a8ad4 100%);
    color: #fff;
    text-align: center;
}

.cta-section p a{
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

.cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--dark-color);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-box {
    background: #f0f8ff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: #a0b4c8;
    margin-bottom: 1.5rem;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    gap: 2rem;
    align-items: start;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e4ecf2;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #32A5F8;
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #32A5F8;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f1923;
}

.price-period {
    color: #5a6b7d;
    font-size: 1rem;
}

.price-billed {
    color: #5a6b7d;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

/* --- Guarantee --- */
.guarantee-section {
    background: #f4f8fb;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.guarantee-section p {
    max-width: 600px;
    margin: 0 auto;
    color: #5a6b7d;
}

/* --- Comparison Grid --- */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.comparison-item {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e4ecf2;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.comparison-item p {
    color: #5a6b7d;
    font-size: 0.9rem;
}

/* --- Download Cards --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.download-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #dbe9f4;
    box-shadow: 0 2px 12px rgba(50, 165, 248, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    box-shadow: 0 8px 32px rgba(50, 165, 248, 0.16);
    transform: translateY(-4px);
}

.download-card-header {
    position: relative;
    margin-bottom: 1.25rem;
}

.download-icon {
    display: block;
    height: 56px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.download-badge {
    display: inline-block;
    margin-top: 0.75rem;
    background: #eaf4fe;
    color: #32A5F8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #c2dff7;
}

.download-card h2 {
    font-size: 1.3rem;
    color: #0f1923;
    margin-bottom: 0.5rem;
}

.download-card-desc {
    color: #5a6b7d;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.download-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    text-align: left;
    border-top: 1px solid #f0f4f8;
    padding-top: 1rem;
}

.download-features li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #3a4a5c;
    border-bottom: 1px solid #f0f4f8;
}

.download-features li:last-child {
    border-bottom: none;
}

.download-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32A5F8;
    font-weight: 700;
}

.download-card .btn-block {
    margin-top: auto;
}

/* --- Steps --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #32A5F8;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: #5a6b7d;
    font-size: 0.95rem;
}

/* --- About --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.value-card {
    background: #f4f8fb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e4ecf2;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: #0f1923;
}

.about-content article {
    max-width: 800px;
}

.about-content article > h2 {
    margin-top: 2rem;
}

.about-content article > p, .about-content article > ul {
    margin-bottom: 1rem;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #32A5F8;
    box-shadow: 0 0 0 3px rgba(50, 165, 248, 0.15);
}

.field-error {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

.alert {
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.alert p {
    margin-bottom: 0.5rem;
}

.alert ul {
    margin: 0;
    padding-left: 1.25rem;
}

.alert-error {
    background: #fff2f2;
    border: 1px solid #f4c7c7;
    color: #8b1e1e;
}

.alert-success {
    background: #eefbf3;
    border: 1px solid #bce9cc;
    color: #136f3a;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    gap: 2rem;
}

.blog-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e4ecf2;
    border-radius: 8px;
}

.blog-category {
    display: inline-block;
    background: rgba(50, 165, 248, 0.1);
    color: #32A5F8;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.blog-card h2 a {
    color: #0f1923;
}

.blog-card h2 a:hover {
    color: #32A5F8;
}

.blog-card p {
    color: #5a6b7d;
    margin-bottom: 0.75rem;
}

.blog-meta {
    color: #8a95a5;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Blog Post --- */
.blog-post {
    padding: 3rem 0;
}

.post-header {
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.post-meta {
    color: #8a95a5;
    font-size: 0.9rem;
    display: flex;
    gap: 1.5rem;
}

.reading-time::before {
    content: '·';
    margin-right: 0.5rem;
}

.post-content {
    max-width: 750px;
}

.post-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    color: #0f1923;
}

.post-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1rem;
}

.post-content li {
    margin-bottom: 0.35rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e4ecf2;
}

.comparison-table th {
    background: #f4f8fb;
    font-weight: 600;
}

/* --- Tool Pages --- */
/* Step 1: Shared hero wrapper for tool pages */
.tool-hero {
    background: aliceblue;
    color: var(--dark-color);
    padding: 3rem 0;
    text-align: center;
}

.tool-subtitle {
    color: #5a6b7d;
    margin-bottom: 2rem;
}

/* Step 2: IP tool card and details */
.ip-page-hero .page-subtitle {
    margin-bottom: 2rem;
}

.ip-page-hero .ip-result-box--light {
    background: #ffffff;
    border: 1px solid #dbe9f4;
    box-shadow: 0 8px 32px rgba(50, 165, 248, 0.1), 0 2px 8px rgba(0,0,0,0.06);
}

.ip-page-hero .ip-loading {
    color: #3a4a5c;
}

.ip-page-hero .ip-label,
.ip-page-hero .ip-detail-label {
    color: #6b8099;
}

.ip-page-hero .ip-detail-value {
    color: #0f1923;
}

.ip-page-hero .ip-detail-card {
    background: #f4f9fd;
    border-color: #dbe9f4;
}

.ip-page-hero .ip-detail-icon {
    color: #32A5F8;
}

.ip-page-hero .ip-copy-btn {
    background: rgba(50, 165, 248, 0.08);
    border-color: rgba(50, 165, 248, 0.3);
    color: #1a8ad4;
}

.ip-page-hero .ip-copy-btn:hover {
    background: rgba(50, 165, 248, 0.16);
}

.ip-page-hero .ip-copy-btn.copied {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
    color: #16a34a;
}

.ip-page-hero .ip-status {
    border-top-color: #e4ecf2;
}

.ip-page-hero .ip-status-badge.exposed {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
    color: #dc2626;
}

.ip-page-hero .ip-status-badge.protected {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.ip-page-hero .ip-status-cta {
    color: #5a6b7d;
}

.ip-address-intro-block {
    padding-bottom: 25px;
}

.ip-result-box {
    background: #0f1923;
    border: 1px solid rgba(50, 165, 248, 0.25);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(50, 165, 248, 0.1) inset;
}

/* Loading state */
.ip-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #a0b4c8;
    font-size: 1rem;
    padding: 1rem 0;
}

.ip-skeleton-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #32A5F8;
    animation: ip-pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes ip-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.6); }
}

/* IP address row */
.ip-address-display {
    margin-bottom: 1.75rem;
    text-align: center;
}

.ip-label {
    display: block;
    color: #6b8099;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ip-value-row {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.ip-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #32A5F8;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* Copy button */
.ip-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(50, 165, 248, 0.1);
    border: 1px solid rgba(50, 165, 248, 0.3);
    color: #32A5F8;
    border-radius: 6px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    vertical-align: middle;
}

.ip-copy-btn:hover {
    background: rgba(50, 165, 248, 0.2);
    border-color: #32A5F8;
}

.ip-copy-btn.copied {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

/* Detail cards */
.ip-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ip-detail-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ip-detail-icon {
    color: #32A5F8;
    display: block;
    margin-bottom: 0.2rem;
    opacity: 0.85;
}

.ip-detail-label {
    display: block;
    color: #6b8099;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ip-detail-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e2eaf2;
    word-break: break-word;
}

/* Status badge */
.ip-status {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ip-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.ip-status-badge.exposed {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
}

.ip-status-badge.protected {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
}

.ip-status-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ip-status-badge.exposed  .badge-dot { background: #ef4444; }
.ip-status-badge.protected .badge-dot { background: #22c55e; }

.ip-status-cta {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: #8ca0b4;
}

.ip-status-cta a {
    color: #32A5F8;
    font-weight: 600;
    text-decoration: none;
}

.ip-status-cta a:hover {
    text-decoration: underline;
}

/* Step 3: DNS tool card and table */
.dns-test-box {
    background: #ffffff;
    border: 1px solid #dbe9f4;
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.dns-loading p {
    color: #5a6b7d;
    margin-bottom: 1rem;
}

.progress-bar {
    background: #e4ecf2;
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
}

.progress-fill {
    background: #32A5F8;
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width 0.3s;
}

.dns-status {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dns-status.no-leak {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.dns-status.leak {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.dns-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 1rem;
}

.dns-table th {
    color: #5a6b7d;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.5rem;
    border-bottom: 1px solid #dbe9f4;
}

.dns-table td {
    color: #1a1a2e;
    padding: 0.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #eef3f7;
}

/* --- Video Gallery --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.video-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0f1923;
    border: 1px solid rgba(50, 165, 248, 0.2);
    border-radius: 10px;
    padding: 0;
    aspect-ratio: 16 / 20;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    width: 100%;
    text-decoration: none;
}

.video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.video-card:hover {
    border-color: #32A5F8;
    transform: translateY(-3px);
}

.video-play-btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(50, 165, 248, 0.9);
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
    padding-left: 4px;
}

.video-card:hover .video-play-btn {
    background: #32A5F8;
    transform: scale(1.1);
}

.video-card-label {
    position: absolute;
    left: 0.75rem;
    bottom: 0.7rem;
    z-index: 1;
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- Video Modal --- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal[hidden] {
    display: none;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: min(90vw, 900px);
    background: #0f1923;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.video-modal-content video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.75rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.video-modal-close:hover {
    background: rgba(50, 165, 248, 0.8);
}

/* --- FAQ --- */
.faq-section {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    border: 1px solid #e4ecf2;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #32A5F8;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: #5a6b7d;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--main-color);
}

.breadcrumbs a:hover {
    color: #32A5F8;
}

.breadcrumb-sep {
    color: #8a95a5;
    margin: 0 0.25rem;
}

/* --- 404 --- */
.error-page {
    text-align: center;
    padding: 5rem 0;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    color: #e4ecf2;
    line-height: 1;
    margin: 1rem 0;
}

.error-links {
    margin-top: 2rem;
}

.error-links ul {
    list-style: none;
    padding: 0;
}

.error-links li {
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
.site-footer {
    background: #0f1923;
    color: #a0b4c8;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.35rem;
}

.footer-col a {
    color: #a0b4c8;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: #32A5F8;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 991px){
    .trust-items{
        gap: 1rem;
    }

    .features-detail{
        padding: 0;
    }
}

@media (max-width: 768px) {
    .privacy-visual-grid {
        grid-template-columns: 1fr;
    }

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

    .site-header .container {
        gap: 0.75rem;
    }

    .logo-image {
        width: 42px;
        height: 42px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #d2e8f6;
        flex-direction: column;
        padding: 0.75rem 1rem 1rem;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    }

    .nav-list > li {
        width: 100%;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-link {
        display: block;
        padding: 0.7rem 0.75rem;
        width: 100%;
        border-radius: 8px;
    }

    .nav-dropdown.open > .nav-dropdown-toggle {
        background: rgba(50, 165, 248, 0.18);
        color: var(--dark-color);
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        margin-top: 0.35rem;
        border-radius: 8px;
        padding: 0.35rem;
        min-width: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.55rem 0.75rem;
        font-size: 0.95rem;
        border-radius: 6px;
        color: var(--dark-color);
    }

    .dropdown-menu a:hover {
        background: rgba(50, 165, 248, 0.18);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 1.75rem; }
    .post-header h1 { font-size: 1.75rem; }

    .two-col,
    .features-grid,
    .use-cases-grid,
    .tools-grid,
    .pricing-grid,
    .comparison-grid,
    .download-grid,
    .steps-grid,
    .values-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ip-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
