/*
Theme Name: Seven Oceans Child
Theme URI: https://sevenoceans.local/
Template: hello-elementor
Author: Seven Oceans Services
Author URI: https://sevenoceans.local/
Description: Pixel-perfect child theme for Hello Elementor. Ports the Seven Oceans React design system (dark premium aesthetic, glass morphism, section-divider glow lines, scroll reveal, parallax) so that content remains fully editable in Elementor Pro while the premium styling is locked in the stylesheet.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seven-oceans-child
*/

/* ══════════════════════════════════════════════════════════════
   1. DESIGN SYSTEM — CSS VARIABLES
   Ported verbatim from src/index.css
   ══════════════════════════════════════════════════════════════ */

:root {
  --text: #f5f7fb;
  --muted: #c9d1dc;
  --subtle: #8d99ad;
  --accent: #76a7ff;
  --accent-2: #9ec4ff;
  --bg: #05070b;
  --bg-soft: #0a0f17;
  --line: rgba(106, 152, 255, 0.22);
  --line-strong: rgba(111, 164, 255, 0.55);
  --page-max: 1400px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   2. RESET + GLOBAL BODY
   ══════════════════════════════════════════════════════════════ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(40,60,100,.22), transparent 28%),
    linear-gradient(180deg, #030508 0%, #060a10 20%, #05070b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(118,167,255,.04), transparent 18%, transparent 82%, rgba(118,167,255,.03)),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

::selection {
  background: rgba(118, 167, 255, 0.3);
  color: #fff;
}

a { color: var(--accent); }
a:hover { color: var(--accent-2); }

/* ══════════════════════════════════════════════════════════════
   3. SITE FRAME WRAPPER
   ══════════════════════════════════════════════════════════════ */

.site-frame {
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(4,6,10,.9), rgba(6,9,14,.96));
  box-shadow: 0 25px 70px rgba(0,0,0,.45);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.site-outer {
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 14px 28px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   4. SECTION DIVIDERS (glow line + soft bloom)
   ══════════════════════════════════════════════════════════════ */

.section-divider {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(108,161,255,.55) 25%,
    rgba(130,185,255,.8) 50%,
    rgba(108,161,255,.55) 75%,
    transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.section-divider::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -3px;
  height: 8px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(108,161,255,.12) 25%,
    rgba(130,185,255,.22) 50%,
    rgba(108,161,255,.12) 75%,
    transparent 100%);
  filter: blur(5px);
  z-index: 10;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   5. SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal-fb 0s 1.2s forwards; }
  .reveal.visible { animation: none; }
}
@keyframes reveal-fb {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-down { animation: slide-down 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ══════════════════════════════════════════════════════════════
   6. NAVBAR (.so-navbar)
   ══════════════════════════════════════════════════════════════ */

.so-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5,9,16,.9), rgba(7,11,18,.78));
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 25px rgba(0,0,0,.24);
  transition: background 0.4s ease;
}

.so-navbar.scrolled {
  background: linear-gradient(180deg, rgba(5,9,16,.95), rgba(7,11,18,.88));
}

.so-navbar .so-navbar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
}

.so-navbar a,
.so-navbar .elementor-nav-menu a {
  color: rgba(245,247,251,.82);
  text-decoration: none;
  font-size: .86rem;
  letter-spacing: .02em;
  transition: color .25s ease;
}
.so-navbar a:hover,
.so-navbar .elementor-nav-menu a:hover {
  color: #fff;
}

.so-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.so-brand img {
  width: 62px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(118,167,255,.12));
}
.so-brand-text {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .16em;
  font-weight: 600;
  white-space: nowrap;
}
.so-brand-text .suffix {
  font-weight: 300;
  color: rgba(255,255,255,.78);
}

/* ══════════════════════════════════════════════════════════════
   7. HERO SECTION
   ══════════════════════════════════════════════════════════════ */

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  z-index: 0;
}

.hero-content-grid {
  position: relative;
  z-index: 3;
  max-width: var(--page-max);
  margin: 0 auto;
  min-height: 680px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 24px;
  padding: 120px 24px 60px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(158,196,255,.85);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
}

.hero-heading {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: .97;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-weight: 760;
  color: #fff;
  font-family: var(--font-display);
  text-wrap: balance;
}

.hero-desc {
  margin: 22px 0 0;
  max-width: 500px;
  color: rgba(235,240,248,.88);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   8. BUTTONS (hero + reusable)
   ══════════════════════════════════════════════════════════════ */

.hero-btn-primary,
.hero-btn-secondary,
.so-btn {
  appearance: none;
  color: #fff !important;
  padding: 15px 22px;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.hero-btn-primary,
.so-btn.primary {
  border: 1px solid rgba(126,176,255,.55);
  background: linear-gradient(180deg, rgba(79,132,255,.24), rgba(36,71,148,.18));
  box-shadow: inset 0 0 0 1px rgba(159,198,255,.08), 0 0 0 1px rgba(126,176,255,.12);
}
.hero-btn-primary:hover,
.so-btn.primary:hover {
  transform: translateY(-3px);
  border-color: rgba(158,196,255,.75);
  box-shadow: inset 0 0 0 1px rgba(159,198,255,.12), 0 0 20px rgba(118,167,255,.25), 0 12px 28px rgba(15,23,43,.36);
}

.hero-btn-secondary,
.so-btn.secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,12,18,.52);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.hero-btn-secondary:hover,
.so-btn.secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(158,196,255,.45);
  background: rgba(30,45,75,.4);
  box-shadow: 0 12px 28px rgba(15,23,43,.36), 0 0 14px rgba(118,167,255,.12);
}

/* ══════════════════════════════════════════════════════════════
   9. FEATURE CARDS GRID (glass cards under hero)
   ══════════════════════════════════════════════════════════════ */

.feature-cards-grid {
  position: relative;
  z-index: 3;
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-bottom: 30px;
}

.so-feature-card {
  position: relative;
  padding: 28px 22px 24px;
  background: rgba(8, 12, 19, 0.38);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-right: 1px solid rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.06);
  min-height: 185px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  cursor: default;
}
.so-feature-card:first-child {
  border-left: 1px solid rgba(255,255,255,.07);
}
.so-feature-card:last-child {
  border-right: none;
}
.so-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(10, 16, 26, 0.55);
  box-shadow: inset 0 0 0 1px rgba(132,183,255,.08), 0 20px 35px rgba(0,0,0,.24);
}

.so-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126,176,255,.8), transparent);
  opacity: .55;
}

.so-feature-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(145,189,255,.28);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(119,170,255,.2), rgba(255,255,255,.02));
  box-shadow: inset 0 0 18px rgba(118,167,255,.08);
  color: var(--accent-2);
}
.so-feature-icon-ring svg,
.so-feature-icon-ring i {
  width: 18px;
  height: 18px;
  font-size: 18px;
  stroke-width: 1.5;
}

.so-feature-title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  font-family: var(--font-display);
}

.so-feature-desc {
  margin: 0;
  color: rgba(220,228,240,.72);
  line-height: 1.5;
  font-size: .92rem;
  max-width: 200px;
}

/* ══════════════════════════════════════════════════════════════
   10. IMAGE/TEXT SPLIT SECTION
   ══════════════════════════════════════════════════════════════ */

.split-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.split-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.34));
}

.split-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: stretch;
  min-height: 470px;
  position: relative;
}

.split-image-col {
  position: relative;
  min-height: 470px;
}
.split-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,7,12,.06), rgba(4,7,12,0) 38%);
  pointer-events: none;
}

.split-text-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 44px 42px 44px 34px;
  background: rgba(8, 12, 19, 0.34);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), inset 24px 0 42px rgba(0,0,0,.12);
}

.split-text-col .split-inner {
  max-width: 520px;
}

.so-section-heading {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-display);
  text-wrap: balance;
}

.so-section-copy {
  margin-top: 18px;
  color: rgba(230,236,245,.82);
  font-size: 1.03rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   11. ENGINES SECTION
   ══════════════════════════════════════════════════════════════ */

.engines-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.engines-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.34));
}

.so-engines {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════════
   12. COVERAGE SECTION
   ══════════════════════════════════════════════════════════════ */

.coverage-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.coverage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(118,167,255,.16), transparent 12%),
    linear-gradient(180deg, rgba(4,7,11,.24), rgba(6,9,14,.88));
}

.so-coverage {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.so-coverage .coverage-inner {
  padding: 58px 24px 62px;
  position: relative;
  z-index: 2;
}
.so-coverage .so-section-heading {
  margin: 0 auto;
  max-width: 900px;
}
.so-coverage .regions {
  margin-top: 18px;
  color: rgba(240,244,250,.85);
  letter-spacing: .06em;
  font-size: .95rem;
  text-transform: uppercase;
}

.so-coverage::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 34%;
  height: 120px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    radial-gradient(circle at 50% 50%, rgba(205,235,255,.14), transparent 24%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   13. FOOTER
   ══════════════════════════════════════════════════════════════ */

.so-footer {
  background: linear-gradient(180deg, rgba(7,10,15,.96), rgba(3,5,8,.98));
  position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
}

.so-footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding: 28px 24px;
}

.so-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,247,251,.86);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .9rem;
  opacity: .92;
}
.so-footer-brand img {
  width: 42px;
  height: 20px;
  object-fit: contain;
  opacity: .95;
}

.so-footer-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.1);
}

/* ══════════════════════════════════════════════════════════════
   14. BLOG (archive + single)
   ══════════════════════════════════════════════════════════════ */

.so-blog-hero {
  position: relative;
  padding: 110px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(4,7,11,.35), rgba(6,9,14,.92));
  overflow: hidden;
}
.so-blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.so-blog-hero p {
  margin-top: 14px;
  color: rgba(230,236,245,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .86rem;
}

.so-blog-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 60px 24px 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.so-blog-card {
  position: relative;
  background: rgba(8,12,19,0.38);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.so-blog-card:hover {
  transform: translateY(-4px);
  background: rgba(10,16,26,0.55);
  box-shadow: 0 20px 35px rgba(0,0,0,.24), inset 0 0 0 1px rgba(132,183,255,.08);
}

.so-blog-card .card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.so-blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.so-blog-card:hover .card-image img {
  transform: scale(1.04);
}

.so-blog-card .card-body {
  padding: 22px 22px 24px;
}

.so-blog-card .card-meta {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.so-blog-card .card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 10px;
}
.so-blog-card .card-title a {
  color: inherit;
  text-decoration: none;
}

.so-blog-card .card-excerpt {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

/* Single post */
.so-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.so-post h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.so-post .post-meta {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 38px;
}
.so-post-content {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}
.so-post-content h2,
.so-post-content h3,
.so-post-content h4,
.so-post-content h5,
.so-post-content h6 {
  font-family: var(--font-display);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 2em 0 0.6em;
}
.so-post-content h2 { font-size: 1.7rem; }
.so-post-content h3 { font-size: 1.35rem; }
.so-post-content h4 { font-size: 1.15rem; }
.so-post-content p { margin: 0 0 1.1em; }
.so-post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.so-post-content a:hover { color: var(--accent-2); }
.so-post-content blockquote {
  margin: 1.6em 0;
  padding: 16px 22px;
  border-left: 2px solid var(--accent);
  background: rgba(118,167,255,.06);
  color: rgba(235,240,248,.92);
  font-style: italic;
}
.so-post-content pre,
.so-post-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.so-post-content code {
  background: rgba(10,16,26,.6);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .92em;
}
.so-post-content pre {
  background: rgba(10,16,26,.6);
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px 20px;
  border-radius: 8px;
  overflow-x: auto;
}
.so-post-content pre code {
  background: transparent;
  border: none;
  padding: 0;
}
.so-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  margin: 1.4em 0;
}

/* ══════════════════════════════════════════════════════════════
   15. ELEMENTOR PRO FORM WIDGET DARK THEME
   ══════════════════════════════════════════════════════════════ */

.so-form-card {
  background: rgba(8,12,19,0.38);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 34px 30px;
}

.so-form-card .elementor-field-label,
.so-form-card label {
  font-size: .82rem !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted) !important;
  font-weight: 600;
}

.so-form-card input[type="text"],
.so-form-card input[type="email"],
.so-form-card input[type="tel"],
.so-form-card input[type="url"],
.so-form-card input[type="number"],
.so-form-card textarea,
.so-form-card select,
.so-form-card .elementor-field {
  background: rgba(8,12,19,.5) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: var(--text) !important;
  font-family: var(--font-sans) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}

.so-form-card input:focus,
.so-form-card textarea:focus,
.so-form-card select:focus,
.so-form-card .elementor-field:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(118,167,255,.15) !important;
}

.so-form-card button[type="submit"],
.so-form-card .elementor-button {
  /* Inherit .hero-btn-primary look */
  border: 1px solid rgba(126,176,255,.55) !important;
  background: linear-gradient(180deg, rgba(79,132,255,.24), rgba(36,71,148,.18)) !important;
  color: #fff !important;
  padding: 15px 22px !important;
  min-height: 52px;
  border-radius: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem !important;
  box-shadow: inset 0 0 0 1px rgba(159,198,255,.08), 0 0 0 1px rgba(126,176,255,.12);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.so-form-card button[type="submit"]:hover,
.so-form-card .elementor-button:hover {
  transform: translateY(-3px);
  border-color: rgba(158,196,255,.75) !important;
  box-shadow: inset 0 0 0 1px rgba(159,198,255,.12), 0 0 20px rgba(118,167,255,.25), 0 12px 28px rgba(15,23,43,.36);
}

.so-form-card .elementor-message-success {
  color: var(--accent-2);
  border: 1px solid rgba(118,167,255,.25);
  background: rgba(118,167,255,.08);
  padding: 12px 16px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════════════
   16. MOBILE RESPONSIVE
   Ported from src/index.css @media blocks
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  .hero-content-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 50px 20px 30px !important;
  }

  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .feature-cards-grid .so-feature-card,
  .feature-cards-grid article {
    min-height: 160px !important;
    padding: 22px 16px 20px !important;
    background: rgba(8, 12, 19, 0.22) !important;
    backdrop-filter: blur(6px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(6px) saturate(110%) !important;
  }

  .split-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .split-image-col {
    min-height: 320px !important;
  }

  .split-text-col {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    padding: 32px 20px !important;
  }

  .hero-bg-image {
    object-position: 78% 55% !important;
  }

  .split-bg {
    background-position: 30% center !important;
    background-size: cover !important;
  }

  .engines-bg { background-size: cover !important; }
  .coverage-bg { background-size: cover !important; }

  .so-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 40px 20px 70px;
  }

  .so-navbar .so-navbar-inner {
    height: 64px;
    padding: 0 14px;
  }
}

@media (max-width: 480px) {
  .feature-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .so-blog-grid {
    grid-template-columns: 1fr;
  }
  .so-post {
    padding: 60px 20px 80px;
  }
}
