/* ================================================================
   WEB PROJECTS / PRICING PAGE
   ================================================================ */

/* ── Hero — sticky scroll-flip showcase ──────────────────────── */
.wp-hero-section { padding: 0; }
.wp-hero-outer   { height: 280vh; position: relative; }

.wp-hero {
    position: sticky;
    top: var(--nav-height, 76px);
    height: calc(100vh - var(--nav-height, 76px));
    width: 100%;
    overflow: hidden;
    background: var(--hero-bg, #07101f);
    isolation: isolate;
}

/* Background image cross-fade — blurred + dimmed underneath everything */
.wp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.wp-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(5px) brightness(0.6) saturate(1.1);
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1.02);   /* hide blur edges */
    pointer-events: none;
}
.wp-hero-bg-img.is-active { opacity: 1; }

/* Dim/vignette overlay so text stays legible */
.wp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 80% at center, transparent 0%, rgba(7, 16, 31, 0.55) 75%),
        linear-gradient(180deg, rgba(7, 16, 31, 0.6) 0%, rgba(7, 16, 31, 0.4) 50%, rgba(7, 16, 31, 0.85) 100%);
    pointer-events: none;
}

/* Hero content layout — text top, 3D showcase bottom */
.wp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 6% 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}

.wp-hero-inner {
    max-width: 760px;
    width: 100%;
    text-align: center;
    color: #fff;
}

/* Override default eyebrow + subtitle colors on the dark hero */
.wp-hero .wp-eyebrow {
    background: rgba(29, 205, 159, 0.18);
    border-color: rgba(29, 205, 159, 0.45);
    color: #aff5dd;
    margin-bottom: 1rem;
}
.wp-hero .wp-hero-title {
    color: #fff;
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    margin-bottom: 1rem;
    text-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
}
.wp-hero .wp-hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

/* 3D showcase ──────────────────────────────────────────────── */
.wp-hero-showcase {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.wp-stack-stage {
    position: relative;
    width: 100%;
    height: clamp(220px, 34vh, 360px);
    perspective: 1700px;
    perspective-origin: 50% 60%;
    transform-style: preserve-3d;
}

.wp-stack-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(280px, 30vw, 480px);
    aspect-ratio: 16 / 10;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    transition: opacity 0.45s ease, box-shadow 0.45s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.wp-stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Glass overlay — static top-left sheen + cursor-following highlight
   that lights the screenshot via mix-blend-mode like real glass.       */
.wp-stack-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(
            220px circle at var(--mx, 50%) var(--my, 50%),
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.10) 35%,
            rgba(255, 255, 255, 0)    70%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.04) 22%,
            rgba(255, 255, 255, 0)    45%,
            rgba(0, 0, 0, 0)          70%,
            rgba(0, 0, 0, 0.22)      100%
        );
    mix-blend-mode: overlay;
    opacity: 0.65;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wp-stack-card.is-cursor-in::after { opacity: 1; }
.wp-stack-card.is-active::after    { opacity: 0.9; }
.wp-stack-card.is-active.is-cursor-in::after { opacity: 1; }
.wp-stack-card.is-active {
    box-shadow:
        0 36px 80px rgba(0, 0, 0, 0.6),
        0 0 26px 2px rgba(29, 205, 159, 0.22),
        0 0 60px 6px rgba(29, 205, 159, 0.12);
}

/* Rotating neon highlight that sweeps around the active card's edge.
   Uses @property so the conic-gradient's `from` angle can animate
   (the gradient itself rotates, not the element — so the border stays
    aligned to the card's rectangle).                                    */
@property --neon-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.wp-stack-card.is-active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.6px;
    background: conic-gradient(
        from var(--neon-angle),
        rgba(29, 205, 159, 0.25)  0%,
        rgba(29, 205, 159, 0.32) 14%,
        #7df3d4                  22%,
        #c8fff1                  26%,
        #7df3d4                  30%,
        rgba(29, 205, 159, 0.32) 40%,
        rgba(29, 205, 159, 0.22) 55%,
        rgba(29, 205, 159, 0.25) 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
            mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: neonSweep 4s linear infinite;
    pointer-events: none;
    z-index: 5;
}
@keyframes neonSweep {
    to { --neon-angle: 360deg; }
}
.wp-stack-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 4;
}
.wp-stack-card.is-active .wp-stack-info {
    opacity: 1;
    transform: translateY(0);
}
.wp-stack-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: #fff;
}
.wp-stack-info span {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

/* Progress indicator */
.wp-stack-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.wp-stack-count { color: var(--accent); }
.wp-stack-total { color: rgba(255, 255, 255, 0.4); font-weight: 600; }
.wp-stack-bar {
    position: relative;
    width: clamp(140px, 22vw, 260px);
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}
.wp-stack-bar-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #7df3d4);
    box-shadow: 0 0 10px rgba(29, 205, 159, 0.6);
    border-radius: 2px;
    transition: width 0.15s linear;
}

/* Responsive */
@media (max-width: 800px) {
    .wp-hero-outer { height: 240vh; }
    .wp-hero-content { padding: 28px 5% 18px; gap: 16px; }
    .wp-stack-stage { height: clamp(200px, 30vh, 290px); }
    .wp-stack-card { width: clamp(240px, 65vw, 360px); }
    .wp-hero .wp-hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .wp-hero .wp-hero-sub { font-size: 0.86rem; margin-bottom: 1rem; }
    .wp-hero .wp-currency-toggle { padding: 0.4rem 0.9rem; gap: 0.5rem; }
}
@media (max-width: 480px) {
    .wp-stack-stage { height: 210px; }
    .wp-stack-card { width: 230px; }
}

.wp-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(29, 205, 159, 0.1);
    color: var(--accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(29, 205, 159, 0.25);
    margin-bottom: 1.5rem;
}

.wp-hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.3rem;
    letter-spacing: -0.02em;
}

.wp-hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 2.4rem;
}

/* ── Currency toggle ─────────────────────────────────────────── */
.wp-currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.55rem 1.3rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    justify-content: center;
}

.wp-toggle-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.wp-toggle-pills {
    display: flex;
    background: var(--bg-primary);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}

.wp-toggle-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.38rem 1.1rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.wp-toggle-pill.active {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(29, 205, 159, 0.35);
}

.wp-toggle-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

/* ── Shared section wrappers ─────────────────────────────────── */
.wp-section-inner {
    max-width: 1100px;
    width: 100%;
}

.wp-packages-section,
.wp-addons-section,
.wp-maint-section {
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
}

.wp-packages-section          { background: var(--bg-primary); }
.wp-packages-section--alt     { background: #ffffff; }
.wp-addons-section            { background: var(--bg-primary); }
.wp-maint-section             { background: #ffffff; }

.wp-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.wp-section-head h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.wp-section-head p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

/* ── Package grid ────────────────────────────────────────────── */
.wp-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* ── Package card ────────────────────────────────────────────── */
.wp-card {
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease,
                box-shadow  0.35s ease,
                border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.wp-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(29, 205, 159, 0.1);
    border-color: rgba(29, 205, 159, 0.4);
}

.wp-card--popular {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(29, 205, 159, 0.14);
}

.wp-card--popular:hover {
    box-shadow: 0 26px 58px rgba(29, 205, 159, 0.22);
}

/* Popular badge */
.wp-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.28rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(29, 205, 159, 0.4);
}

/* Tier pill */
.wp-card-tier {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-dark);
    background: rgba(29, 205, 159, 0.1);
    border: 1px solid rgba(29, 205, 159, 0.22);
    border-radius: 50px;
    padding: 0.2rem 0.75rem;
    margin-bottom: 0.7rem;
}

.wp-card-tier--dyn {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
}

.wp-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.wp-card-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* ── Price block ─────────────────────────────────────────────── */
.wp-price-block {
    padding: 1.2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.wp-price-main {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.wp-sym {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.wp-amount {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.wp-price-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-top: 0.3rem;
}

/* Annual line */
.wp-price-annual {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.wp-annual-plus { color: var(--text-muted); }

.wp-price-annual .wp-sym   { font-size: 0.82rem; }
.wp-price-annual .wp-amount {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.wp-annual-per {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.wp-annual-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    width: 100%;
    margin-top: 2px;
}

/* ── Feature list ────────────────────────────────────────────── */
.wp-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.8rem;
    flex: 1;
}

.wp-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.wp-features li i {
    font-size: 0.72rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.wp-features li.on  i { color: var(--accent); }
.wp-features li.off   { opacity: 0.4; }
.wp-features li.off i { color: #94a3b8; }

/* ── Card buttons ────────────────────────────────────────────── */
.wp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background   0.3s ease,
                border-color 0.3s ease,
                color        0.3s ease,
                box-shadow   0.3s ease,
                transform    0.3s ease;
    background: var(--accent-gradient);
    color: #ffffff;
    border: 1.5px solid transparent;
    box-shadow: 0 6px 20px rgba(29, 205, 159, 0.3);
}

.wp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 205, 159, 0.45);
}

.wp-btn--outline {
    background: transparent;
    border-color: rgba(29, 205, 159, 0.35);
    color: var(--accent-dark);
    box-shadow: none;
}

.wp-btn--outline:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(29, 205, 159, 0.35);
}

/* ── Add-ons ─────────────────────────────────────────────────── */
.wp-addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wp-addon {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.wp-addon:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 22px rgba(29, 205, 159, 0.1);
    transform: translateX(4px);
}

.wp-addon--full { grid-column: 1 / -1; }

.wp-addon-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(29, 205, 159, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.wp-addon:hover .wp-addon-icon {
    background: var(--accent-gradient);
    color: #ffffff;
}

.wp-addon-body { flex: 1; }

.wp-addon-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wp-addon-tag {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(29, 205, 159, 0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(29, 205, 159, 0.2);
    border-radius: 50px;
    padding: 0.1rem 0.5rem;
}

.wp-addon-tag--dyn {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.2);
}

.wp-addon-desc {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.wp-addon-price {
    font-weight: 800;
    color: var(--accent-dark);
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}

.wp-addon-price .wp-sym   { font-size: 0.82rem; }
.wp-addon-price .wp-amount { font-size: 1.1rem; }

.wp-addon-per {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 2px;
}

/* ── Maintenance ─────────────────────────────────────────────── */
.wp-maint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wp-maint-card {
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: transform 0.35s ease,
                border-color 0.35s ease,
                box-shadow   0.35s ease;
}

.wp-maint-card:hover {
    transform: translateY(-7px);
    border-color: var(--accent);
    box-shadow: 0 18px 42px rgba(29, 205, 159, 0.1);
}

.wp-maint-card--mid {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 4px 22px rgba(29, 205, 159, 0.08);
}

.wp-maint-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 6px 18px rgba(29, 205, 159, 0.35);
}

.wp-maint-label {
    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-dark);
    margin-bottom: 0.7rem;
}

.wp-maint-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.wp-maint-price .wp-sym   { font-size: 1rem; }
.wp-maint-price .wp-amount { font-size: 2rem; }

.wp-maint-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    min-height: 44px;
}

.wp-maint-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wp-maint-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.wp-maint-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ── CTA ──────────────────────────────────────────────────────── */
.wp-cta {
    padding: 90px 8%;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
}

.wp-cta-inner {
    max-width: 580px;
    width: 100%;
    text-align: center;
}

.wp-cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    box-shadow: 0 10px 30px rgba(29, 205, 159, 0.38);
    animation: wpCtaPulse 2.6s ease-in-out infinite;
}

@keyframes wpCtaPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(29, 205, 159, 0.38); transform: scale(1);    }
    50%       { box-shadow: 0 10px 50px rgba(29, 205, 159, 0.58); transform: scale(1.06); }
}

.wp-cta-inner h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.wp-cta-inner p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.wp-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wp-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.wp-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

/* ── Inquiry Modal ───────────────────────────────────────────── */
.inq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.inq-overlay.inq-overlay--open {
    opacity: 1;
    pointer-events: auto;
}

.inq-modal {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 660px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
    padding: 2rem 2.2rem 2.2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.inq-overlay.inq-overlay--open .inq-modal {
    transform: translateY(0) scale(1);
}

.inq-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.inq-modal-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.inq-package-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 0.22rem 0.8rem;
    border-radius: 50px;
    width: fit-content;
}

.inq-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.inq-close {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.inq-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* Form layout */
.inq-form { display: flex; flex-direction: column; gap: 1.1rem; }

.inq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.inq-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.inq-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.inq-optional {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.inq-field input,
.inq-field textarea {
    padding: 0.7rem 0.95rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: vertical;
    outline: none;
    line-height: 1.5;
}

.inq-field input::placeholder,
.inq-field textarea::placeholder {
    color: #a0aec0;
}

.inq-field input:focus,
.inq-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(29, 205, 159, 0.12);
}

.inq-field input.inq-invalid,
.inq-field textarea.inq-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* WhatsApp icon inside input */
.inq-input-wrap { position: relative; }

.inq-input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #25D366;
    font-size: 0.95rem;
    pointer-events: none;
}

.inq-input-wrap input { padding-left: 2.4rem; }

/* Form footer */
.inq-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.inq-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.inq-disclaimer i { color: var(--accent); }

.inq-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(29, 205, 159, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.inq-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(29, 205, 159, 0.45);
}

.inq-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Error message */
.inq-error-msg {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.inq-error-msg.inq-error-msg--show {
    display: flex;
}

/* Success state */
.inq-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1rem;
}

.inq-success--show { display: flex; }

.inq-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(29, 205, 159, 0.1);
    color: var(--accent);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inq-success h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.inq-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
    .wp-packages-grid { grid-template-columns: repeat(2, 1fr); }
    .wp-maint-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
    .wp-packages-section,
    .wp-addons-section,
    .wp-maint-section   { padding: 60px 6%; }
    .wp-cta             { padding: 70px 6%; }

    .wp-packages-grid   { grid-template-columns: 1fr; }
    .wp-addons-grid     { grid-template-columns: 1fr; }
    .wp-maint-grid      { grid-template-columns: 1fr; }

    .wp-addon--full     { grid-column: auto; }

    .wp-currency-toggle { padding: 0.7rem 1.2rem; gap: 0.6rem; }

    .inq-modal  { padding: 1.5rem 1.3rem 1.8rem; border-radius: 18px; }
    .inq-row    { grid-template-columns: 1fr; }
    .inq-form-footer { flex-direction: column; align-items: stretch; }
    .inq-submit { justify-content: center; }
}
