/*
Theme Name: Om Digital Neon
Theme URI: https://omdigital.co.uk
Author: Om Digital
Author URI: https://omdigital.co.uk
Description: Bold dark-mode WordPress theme for Om Digital. Features a lime-green & violet neon palette, animated blob backgrounds, custom cursor, tilted marquee strip, glowing service cards and transparent sticky navigation — faithfully converted from a bespoke HTML design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: omdigital
Tags: dark, neon, business, e-commerce, seo, responsive, animation, custom-cursor
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
    --lime:   #C8F135;
    --violet: #6E2FFF;
    --pink:   #FF3DA6;
    --navy:   #0B0D1A;
    --white:  #FAFFF0;
    --card:   #13152A;
    --muted:  rgba(250,255,240,0.5);
    --border: rgba(200,241,53,0.1);

    --font-display: 'Righteous', cursive;
    --font-body:    'DM Sans', sans-serif;

    --r-sm:   10px;
    --r-md:   16px;
    --r-lg:   24px;
    --r-pill: 100px;

    --nav-h:  72px;
    --max-w:  1200px;

    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
    font-family: var(--font-body);
    background:  var(--navy);
    color:       var(--white);
    overflow-x:  hidden;
    cursor:      none;
    -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--lime); text-decoration: none; transition: color .2s; }
a:hover { color: #a8e040; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.05;
    color: var(--white);
}
h1 { font-size: clamp(3.5rem, 9vw, 9rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: 1.5rem; }
p  { color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.2rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; list-style: initial; }
.entry-content ol { list-style: decimal; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
    border-left: 3px solid var(--lime);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    color: var(--muted);
    font-style: italic;
    background: rgba(200,241,53,0.04);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* =============================================
   LAYOUT
============================================= */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 7rem 0; }

/* =============================================
   CUSTOM CURSOR
============================================= */
.om-cursor {
    width: 18px; height: 18px;
    background: var(--lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s var(--ease-spring), height .2s var(--ease-spring);
    mix-blend-mode: difference;
    will-change: left, top;
}
.om-cursor.big { width: 50px; height: 50px; }

/* =============================================
   BACKGROUND BLOBS
============================================= */
.blob-wrap {
    position: fixed; inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .20;
    animation: blobFloat 12s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--violet); top: -150px;  left: -150px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--pink);   bottom: -100px; right: -100px; animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: var(--lime);   top: 40%; left: 40%; animation-delay: -8s; }

@keyframes blobFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(25px,-25px) scale(1.05); }
}

/* =============================================
   SECTION TAGS & TITLES
============================================= */
.s-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1rem;
}
.s-tag::before { content: '◆'; font-size: .5rem; }

/* =============================================
   NAVIGATION
============================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--nav-h);
    background: rgba(11,13,26,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

/* Logo */
.site-logo {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--white) !important;
    text-decoration: none !important;
    flex-shrink: 0;
}
.site-logo .logo-accent { color: var(--lime); }

/* Nav menu */
#primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
#primary-nav a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted) !important;
    text-decoration: none !important;
    transition: color .2s;
    white-space: nowrap;
    cursor: none;
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a,
#primary-nav .current_page_item > a { color: var(--lime) !important; }

.nav-cta-link {
    background: var(--lime) !important;
    color: var(--navy) !important;
    padding: .6rem 1.5rem !important;
    border-radius: var(--r-pill) !important;
    font-weight: 700 !important;
    transition: transform .2s, box-shadow .2s !important;
}
.nav-cta-link:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 0 24px rgba(200,241,53,.45) !important;
    color: var(--navy) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: .5rem;
    z-index: 600;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   SKIP LINK
============================================= */
.skip-link {
    position: absolute; top: -100px; left: 1rem;
    background: var(--lime); color: var(--navy);
    padding: .5rem 1rem; border-radius: var(--r-sm);
    font-weight: 700; font-size: .85rem;
    z-index: 9999; text-decoration: none;
    transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: .95rem;
    cursor: none;
    text-decoration: none !important;
    border: none;
    transition: transform .2s var(--ease-spring), box-shadow .2s;
    white-space: nowrap;
}
.btn-lime {
    background: var(--lime);
    color: var(--navy) !important;
}
.btn-lime:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 0 30px rgba(200,241,53,.5);
    color: var(--navy) !important;
}
.btn-ghost {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(250,255,240,.25);
}
.btn-ghost:hover {
    border-color: var(--lime);
    color: var(--lime) !important;
}
.btn-gradient {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    color: #fff !important;
}
.btn-gradient:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(110,47,255,.4);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* =============================================
   HERO
============================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(110,47,255,.2);
    border: 1px solid rgba(110,47,255,.4);
    color: #c4aaff;
    padding: .4rem 1.2rem;
    border-radius: var(--r-pill);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: popIn .6s var(--ease-spring) both;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(.8) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: slideUp .8s var(--ease) .2s both;
}
.hero-title .outline {
    -webkit-text-stroke: 2px var(--lime);
    color: transparent;
    display: block;
}
.hero-title .filled {
    color: var(--lime);
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: slideUp .8s var(--ease) .4s both;
}

.hero-btns {
    animation: slideUp .8s var(--ease) .6s both;
}

/* =============================================
   PRICE PILLS
============================================= */
.price-pills {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 1;
    animation: slideUp .8s var(--ease) .8s both;
}

.price-pill {
    background: var(--card);
    border: 1px solid rgba(200,241,53,.15);
    border-radius: var(--r-md);
    padding: 1.2rem 2rem;
    text-align: center;
    transition: transform .2s var(--ease-spring), border-color .2s, box-shadow .2s;
    cursor: none;
}
.price-pill:hover {
    transform: translateY(-4px);
    border-color: var(--lime);
    box-shadow: 0 10px 40px rgba(200,241,53,.1);
}
.price-pill .amt {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--lime);
    line-height: 1;
}
.price-pill .lbl {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-wrap {
    background: var(--lime);
    padding: .9rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transform: rotate(-1.5deg) scaleX(1.05);
    margin: 2rem 0;
}
.marquee-inner {
    display: inline-block;
    animation: marqueeScroll 22s linear infinite;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: .05em;
    color: var(--navy);
}
.marquee-inner .dot { margin: 0 1.5rem; opacity: .4; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-text p { margin-bottom: 1.5rem; font-size: 1.05rem; }

.about-visual { position: relative; }

.about-card {
    background: var(--card);
    border-radius: var(--r-lg);
    padding: 3rem;
    border: 1px solid rgba(110,47,255,.2);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--pink), var(--lime));
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.about-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.03);
    border-radius: var(--r-sm);
}
.about-stat .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--lime), #a8e040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.about-stat .lbl {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: .3rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.spin-badge {
    position: absolute;
    top: -1.5rem; right: -1.5rem;
    background: var(--pink);
    color: #fff;
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .7rem;
    text-align: center;
    line-height: 1.3;
    animation: spinSlow 15s linear infinite;
    box-shadow: 0 0 30px rgba(255,61,166,.4);
    z-index: 2;
    cursor: none;
}
.spin-badge .big { font-size: 1.4rem; display: block; }

@keyframes spinSlow { to { transform: rotate(360deg); } }

/* =============================================
   SERVICES SECTION
============================================= */
.services-section {
    padding: 7rem 0;
    background: rgba(255,255,255,.015);
    position: relative;
    z-index: 1;
}
.services-header { text-align: center; margin-bottom: 4rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-8px) rotate(.4deg); }

/* Per-card accent colours */
.service-card.card-violet:hover { border-color: var(--violet); box-shadow: 0 20px 60px rgba(110,47,255,.2); }
.service-card.card-pink:hover   { border-color: var(--pink);   box-shadow: 0 20px 60px rgba(255,61,166,.2); }
.service-card.card-lime:hover   { border-color: var(--lime);   box-shadow: 0 20px 60px rgba(200,241,53,.15); }

.service-card .glow-blob {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    opacity: .1;
    transition: opacity .3s;
    pointer-events: none;
}
.service-card:hover .glow-blob { opacity: .25; }
.card-violet .glow-blob { background: var(--violet); }
.card-pink   .glow-blob { background: var(--pink); }
.card-lime   .glow-blob { background: var(--lime); }

.service-card .sc-emoji { font-size: 3rem; display: block; margin-bottom: 1.5rem; }
.service-card .sc-name  {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: .8rem;
}
.service-card .sc-desc  { font-size: .9rem; line-height: 1.7; margin-bottom: 0; }

.sc-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.sc-list-item {
    font-size: .82rem;
    color: rgba(250,255,240,.6);
    display: flex;
    align-items: center;
    gap: .6rem;
}
.sc-list-item::before { content: '→'; color: var(--lime); font-weight: 700; }

/* =============================================
   HOSTING / PRICING SECTION
============================================= */
.hosting-section {
    padding: 7rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hosting-header { margin-bottom: 4rem; }

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hosting-card {
    background: var(--card);
    border-radius: var(--r-lg);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,.06);
    position: relative;
    transition: transform .3s var(--ease-spring);
    cursor: none;
}
.hosting-card:hover               { transform: translateY(-6px); }
.hosting-card.featured {
    border-color: var(--lime);
    background: #12152e;
    box-shadow: 0 0 60px rgba(200,241,53,.1);
    transform: scale(1.05);
}
.hosting-card.featured:hover      { transform: scale(1.05) translateY(-6px); }

.hosting-popular-tag {
    position: absolute;
    top: -1rem; left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.h-icon    { font-size: 2.5rem; margin-bottom: 1.2rem; }
.h-name    { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: .5rem; }
.h-price   { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: var(--lime); margin-bottom: .3rem; }
.h-price sup { font-size: 1.5rem; vertical-align: super; }
.h-price sub { font-size: .9rem; color: var(--muted); }
.h-period  { font-size: .8rem; color: var(--muted); margin-bottom: 2rem; }

.h-feats { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .7rem; }
.h-feats li {
    font-size: .85rem;
    color: rgba(250,255,240,.7);
    display: flex;
    align-items: center;
    gap: .6rem;
}
.h-feats li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }

.h-btn {
    display: block;
    padding: .9rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s;
    cursor: none;
    text-align: center;
    font-family: var(--font-body);
    border: none;
}
.h-btn-outline { border: 1px solid rgba(200,241,53,.3); color: var(--lime) !important; }
.h-btn-outline:hover { border-color: var(--lime); box-shadow: 0 0 20px rgba(200,241,53,.15); }
.h-btn-fill { background: var(--lime); color: var(--navy) !important; }
.h-btn-fill:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(200,241,53,.4); }

.hosting-note { margin-top: 2rem; color: var(--muted); font-size: .85rem; }

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
    padding: 7rem 0;
    background: rgba(255,255,255,.015);
    position: relative;
    z-index: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-left p { font-size: 1rem; margin-bottom: 2.5rem; margin-top: .5rem; }

.contact-chips { display: flex; flex-direction: column; gap: 1rem; }
.contact-chip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border: 1px solid rgba(200,241,53,.1);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    transition: border-color .2s;
    cursor: none;
}
.contact-chip:hover { border-color: var(--lime); }
.cc-icon  { font-size: 1.5rem; flex-shrink: 0; }
.cc-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.cc-value { font-size: .95rem; font-weight: 600; color: var(--white); }

.contact-form-card {
    background: var(--card);
    border-radius: var(--r-lg);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,.06);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* =============================================
   FORMS
============================================= */
.om-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(250,255,240,.4);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    padding: .9rem 1.1rem;
    font-size: .95rem;
    outline: none;
    border-radius: var(--r-sm);
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    cursor: none;
    -webkit-appearance: none;
    font-family: var(--font-body);
}
input::placeholder, textarea::placeholder { color: rgba(250,255,240,.2); }
input:focus, select:focus, textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(200,241,53,.1);
}
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 110px; }

/* =============================================
   PAGE HEADER (inner pages)
============================================= */
.page-header {
    padding: calc(var(--nav-h) + 5rem) 0 5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-header h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
.page-header p { max-width: 520px; margin: 1rem auto 0; font-size: 1.05rem; }
.page-header .ph-tag { margin-bottom: 1rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-top: 1.5rem;
    font-size: .8rem;
    color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { opacity: .4; }

/* =============================================
   FOOTER
============================================= */
#site-footer {
    background: #060810;
    padding: 3rem 0;
    border-top: 1px solid rgba(200,241,53,.08);
    position: relative;
    z-index: 1;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white) !important;
    text-decoration: none !important;
}
.footer-logo .logo-accent { color: var(--lime); }
.footer-copy { font-size: .78rem; color: rgba(250,255,240,.25); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
    font-size: .78rem;
    color: rgba(250,255,240,.35) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color .2s;
}
.footer-links a:hover { color: var(--lime) !important; }

/* =============================================
   SCROLL REVEAL
============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }

/* =============================================
   WORDPRESS UTILITIES
============================================= */
.alignleft  { float: left;  margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.aligncenter { display: block; margin: 1.5rem auto; }

.pagination {
    display: flex; justify-content: center; gap: .5rem; margin-top: 3rem;
}
.pagination .page-numbers {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(200,241,53,.2);
    font-size: .88rem; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: all .2s;
}
.pagination .page-numbers:hover,
.pagination .current { background: var(--lime); color: var(--navy); border-color: var(--lime); }

/* CF7 overrides */
.wpcf7 .wpcf7-not-valid-tip { font-size: .78rem; color: var(--pink); margin-top: .25rem; }
.wpcf7 .wpcf7-response-output {
    padding: .75rem 1rem; border-radius: var(--r-sm); font-size: .85rem;
    margin-top: .5rem; border: 1px solid;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .about-grid   { grid-template-columns: 1fr; gap: 4rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .hosting-grid { grid-template-columns: 1fr 1fr; max-width: 640px; }
    .hosting-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .om-cursor { display: none; }

    .nav-toggle { display: flex; }
    #primary-nav {
        display: none;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(11,13,26,.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: .5rem;
        border-bottom: 1px solid var(--border);
    }
    #primary-nav.open { display: flex; }
    #primary-nav a { padding: .75rem 1rem; font-size: 1rem; }
    .nav-cta-link { margin-top: .5rem; text-align: center; }

    .services-grid { grid-template-columns: 1fr; }
    .hosting-grid  { grid-template-columns: 1fr; max-width: 380px; }
    .form-row      { grid-template-columns: 1fr; }
    .footer-inner  { flex-direction: column; text-align: center; }
    .price-pills   { gap: 1rem; }
    .spin-badge    { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .about-card { padding: 2rem; }
    .contact-form-card { padding: 2rem; }
    .btn-group { flex-direction: column; align-items: center; }
}
