/* ==========================================================================
   Modern Minimalist Blue & White Comparison System (Single Viewport)
   ========================================================================== */

:root {
    /* Brand Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;
    --primary-border: #93c5fd;

    /* Status Colors */
    --green-border: #10b981;
    --green-bg: #ecfdf5;
    --green-text: #047857;

    --red-border: #ef4444;
    --red-bg: #fef2f2;
    --red-text: #b91c1c;

    /* Neutrals */
    --bg-page: #f8fafc;
    --card-bg: #ffffff;
    --text-head: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --border-card: #e2e8f0;

    /* Fonts */
    --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    padding: 0 1.5rem 6rem;
}

/* Background Soft Atmosphere */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.glow-top-left {
    top: -10%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
}

.glow-top-right {
    top: 45%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.16) 0%, transparent 70%);
}

/* Page Container */
.page-container {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   Section 1: What We Do? (Big Modern Blue Heading + Floating Map Icons)
   ========================================================================== */
.intro-section {
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 1.5rem 2rem;
    margin-bottom: 2.5rem;
    overflow: visible;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Big, Smooth, Modern Blue Heading */
.main-heading {
    font-family: var(--font-head);
    font-size: clamp(3.2rem, 7vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 28px rgba(37, 99, 235, 0.22));
}

.intro-text {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    color: var(--text-body);
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Try it freely Blue Highlight Link */
.highlight-blue {
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 2px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
}

.highlight-blue:hover {
    filter: brightness(1.2);
    border-bottom-color: #1d4ed8;
    transform: translateY(-1px);
}

/* Floating Maps Background Icons */
.floating-icons-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.floating-icon {
    position: absolute;
    color: #2563eb;
    opacity: 0.16;
    filter: blur(1px);
    transition: opacity 0.3s ease;
}

/* Specific Positions & Infinite Animations */
.icon-pin-left {
    top: -5%;
    left: 12%;
    animation: floatSmooth 7s ease-in-out infinite alternate;
}

.icon-map-right {
    top: -12%;
    right: 14%;
    animation: floatDrift 9s ease-in-out infinite alternate;
}

.icon-nav-left {
    bottom: -8%;
    left: 20%;
    animation: floatRotate 8s ease-in-out infinite alternate;
}

.icon-target-right {
    bottom: -10%;
    right: 18%;
    animation: floatSmooth 10s ease-in-out infinite alternate-reverse;
}

.icon-globe-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    filter: blur(2.5px);
    animation: floatPulse 12s ease-in-out infinite;
}

/* Keyframe Animations for Infinite Smooth Movement */
@keyframes floatSmooth {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(4deg);
    }
    100% {
        transform: translateY(6px) rotate(-3deg);
    }
}

@keyframes floatDrift {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) translateX(10px) rotate(-6deg);
    }
    100% {
        transform: translateY(4px) translateX(-8px) rotate(5deg);
    }
}

@keyframes floatRotate {
    0% {
        transform: translateY(0px) rotate(-5deg) scale(1);
    }
    50% {
        transform: translateY(-12px) rotate(10deg) scale(1.04);
    }
    100% {
        transform: translateY(8px) rotate(-2deg) scale(0.98);
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -55%) scale(1.08);
    }
}

/* ==========================================================================
   Section 2: Why Choose Us? (Modern 3-Column Layout)
   ========================================================================== */
.comparison-section {
    text-align: center;
    padding: 1.5rem 0 5rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.3rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-head);
    margin-bottom: 2rem;
}

.section-title-blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 20px rgba(37, 99, 235, 0.18));
}

.text-blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 14px rgba(37, 99, 235, 0.18));
}

/* 3 Cards Side-by-Side */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* Base Plan Card */
.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 1.6rem 1.45rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Featured: Ours */
.card-ours {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 12px 36px -5px rgba(37, 99, 235, 0.2);
    position: relative;
}

.card-ours:hover {
    box-shadow: 0 18px 42px -6px rgba(37, 99, 235, 0.26);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.15rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
}

.card-header-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.plan-badge {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-head);
}

.winner-pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary);
    color: #ffffff;
    padding: 0.24rem 0.6rem;
    border-radius: 7px;
}

.plan-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-head);
}

/* Metrics List (The 4 Categories) */
.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

/* Individual Metric Box */
.metric-row {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.15s ease;
}

.metric-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.metric-val {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Green & Red Borders as requested (Clean white inside, no colored fill paint) */
.border-green {
    border: 2px solid var(--green-border) !important;
    background-color: #ffffff;
}

.border-green .metric-val {
    color: var(--green-text);
}

.border-red {
    border: 2px solid var(--red-border) !important;
    background-color: #ffffff;
}

.border-red .metric-val {
    color: var(--red-text);
}

/* ==========================================================================
   Section 3: Guidance & Short Tutorial
   ========================================================================== */
.guide-section {
    text-align: center;
    padding: 3.5rem 1rem 6rem;
    position: relative;
}

.guide-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.guide-notice-badge {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #eff6ff;
    color: var(--primary);
    border: 1px solid #bfdbfe;
    padding: 0.32rem 0.95rem;
    border-radius: 999px;
}

.guide-description {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.65;
    max-width: 540px;
}

.guide-actions {
    margin-top: 0.4rem;
}

.btn-guide {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-guide:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    filter: brightness(1.08);
}

.btn-guide:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   Section 4: Contact Us for Activating Subscription & Free Requests
   ========================================================================== */
.contact-section {
    text-align: center;
    padding: 3.5rem 1rem 2.5rem;
    position: relative;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.8rem 2rem;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.contact-intro {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: 0.25rem;
}

/* Animated Arrow pointing from text down to icon links */
.contact-arrow-container {
    color: var(--primary);
    margin: 0.75rem 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: arrowBounce 2.2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}

/* Contact Links Grid (minmax(0, 1fr) ensures columns NEVER overflow parent) */
.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
}

/* Contact Link Pill */
.contact-link-pill {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    text-align: left;
    min-width: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.contact-link-pill:hover {
    transform: translateY(-4px);
    border-color: #93c5fd;
    box-shadow: 0 12px 28px -4px rgba(37, 99, 235, 0.16);
}

.contact-link-pill:hover .contact-external-arrow {
    transform: translate(2px, -2px);
    color: var(--primary);
}

/* Icon Wrappers */
.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-link-pill:hover .contact-icon-wrapper {
    transform: scale(1.06);
}

.icon-x {
    background: #0f172a;
    color: #ffffff;
}

.icon-email {
    background: #eff6ff;
    color: var(--primary);
    border: 1px solid #bfdbfe;
}

.icon-instagram {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    color: #e11d48;
    border: 1px solid #fbcfe8;
}

/* Info */
.contact-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    flex-grow: 1;
}

.contact-platform {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-handle {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-head);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-external-arrow {
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* ==========================================================================
   Bottom Trust & Transparency Note
   ========================================================================== */
.bottom-trust-section {
    display: flex;
    justify-content: center;
    padding: 0 1rem 6rem;
    position: relative;
    z-index: 1;
}

.trust-message-box {
    padding: 1.35rem 1.6rem;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    max-width: 880px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-message-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.trust-icon-wrapper {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-text {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.65;
    font-weight: 500;
}

.trust-text strong {
    color: var(--text-head);
    font-weight: 700;
}

/* ==========================================================================
   Responsive: Keep Clean on Mobile & Tablets
   ========================================================================== */
@media (max-width: 880px) {
    .contact-links-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

@media (max-width: 820px) {
    body {
        padding: 2rem 1rem;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
