/* v2 preview CSS
   Base from current sinqlabs.com styles.css (lightly adapted) */

:root {
    --bg: #f5f8ff;
    --card: rgba(255, 255, 255, 0.85);
    --border: rgba(11, 27, 51, 0.10);
    --text: #0b1b33;
    --muted: rgba(11, 27, 51, 0.72);
    --accent: #2f6bff;
    --accent2: #19c2ff;
    --shadow: 0 14px 32px rgba(7, 24, 52, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background:
        radial-gradient(1100px 700px at 12% 0%, rgba(25, 194, 255, 0.20), transparent 55%),
        radial-gradient(900px 650px at 92% 8%, rgba(47, 107, 255, 0.18), transparent 55%),
        radial-gradient(900px 600px at 50% 100%, rgba(25, 194, 255, 0.10), transparent 55%),
        var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(6, 18, 38, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

/* Match current site: larger logo */
.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.menu-toggle {
    display: none;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(47, 107, 255, 0.18);
    border: none;
}

.btn-secondary {
    border: 1px solid rgba(11, 27, 51, 0.18);
    color: var(--text);
    background: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
    border-color: rgba(11, 27, 51, 0.28);
}

/* Hero */
.hero {
    position: relative;
    padding: 82px 0 40px;
    overflow: hidden;
}

.hero--v2 h1 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.06;
    margin: 10px 0 14px;
}

.hero--v2 p {
    max-width: 820px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-kicker {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(11, 27, 51, 0.14);
    border-radius: 999px;
    color: rgba(11, 27, 51, 0.82);
    background: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-bullets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(11, 27, 51, 0.12);
    color: rgba(11, 27, 51, 0.82);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 18% 10%, rgba(245, 248, 255, 0.15), rgba(245, 248, 255, 0.85)),
        linear-gradient(180deg, rgba(245, 248, 255, 0.35), rgba(245, 248, 255, 0.92));
}

/* Sections */
section {
    padding: 72px 0;
}

/* Light/Dark section theming (to match prior site feel) */
.section--light {
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(47, 107, 255, 0.08), transparent 55%),
        radial-gradient(900px 520px at 90% 20%, rgba(25, 194, 255, 0.07), transparent 55%),
        #f5f8ff;
    color: var(--text);
}

.section--dark {
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.98), rgba(6, 18, 38, 0.92));
    color: #eaf2ff;
}

.section--dark .section-header h2 {
    color: #eaf2ff;
}

.section--dark .card,
.section--dark .step,
.section--dark .offering-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.section--dark .card p,
.section--dark .card ul,
.section--dark .step p,
.section--dark .offering-card p,
.section--dark .muted,
.section--dark .note {
    color: rgba(234, 242, 255, 0.78);
}

.section--dark .note {
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.20);
}

.section--dark .badge {
    background: rgba(25, 194, 255, 0.14);
    border: 1px solid rgba(25, 194, 255, 0.28);
    color: rgba(234, 242, 255, 0.85);
}

.section-header {
    margin-bottom: 18px;
}

.section-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.section-header h2 i {
    margin-right: 10px;
    color: var(--accent);
}

.card h3 i {
    margin-right: 10px;
    color: var(--accent);
}

.section-line {
    width: 54px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 999px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
}

.card ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

/* Nicer bullet lists for Partner Model */
.fancy-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.fancy-list li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
    line-height: 1.35;
}

.fancy-list li::before {
    content: "\f058";
    /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.05em;
    color: rgba(25, 194, 255, 0.95);
}

.section--dark .fancy-list li::before {
    color: rgba(25, 194, 255, 0.95);
}

.fancy-list strong {
    color: rgba(255, 255, 255, 0.92);
}

.section--light .fancy-list strong {
    color: rgba(11, 27, 51, 0.92);
}

.card p {
    color: var(--muted);
}

.partner-model-card {
    position: relative;
    overflow: hidden;
}

.partner-model-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.model-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.10);
    border: 1px solid rgba(47, 107, 255, 0.18);
    color: rgba(11, 27, 51, 0.90);
    font-weight: 800;
}

.model-tag span {
    color: rgba(11, 27, 51, 0.66);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Partner model cards: add visual interest */
.card-head {
    margin: -18px -18px 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(11, 27, 51, 0.10);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card--bring .card-head {
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.14), rgba(25, 194, 255, 0.08));
}

.card--sinq .card-head {
    background: linear-gradient(90deg, rgba(25, 194, 255, 0.14), rgba(47, 107, 255, 0.08));
}

.card--bring .card-head h3,
.card--sinq .card-head h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* On dark sections, keep the card-head readable */
.section--dark .card-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.section--dark .card--bring .card-head {
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.22), rgba(25, 194, 255, 0.10));
}

.section--dark .card--sinq .card-head {
    background: linear-gradient(90deg, rgba(25, 194, 255, 0.22), rgba(47, 107, 255, 0.10));
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px dashed rgba(11, 27, 51, 0.22);
    color: rgba(11, 27, 51, 0.78);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.steps--contact {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
}

.step {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(11, 27, 51, 0.12);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h3 {
    margin: 10px 0 8px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

/* Portfolio */
.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.offering-card {
    display: block;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(11, 27, 51, 0.12);
    border-radius: 16px;
    padding: 18px;
    transition: transform 0.15s ease, border-color 0.15s ease;
    box-shadow: var(--shadow);
}

.offering-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 27, 51, 0.20);
}

/* Keep the top “header” area consistent height across tiles */
.logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(6, 18, 38, 0.92), rgba(6, 18, 38, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 10px;
    width: 100%;
    min-height: 88px;
}

.logo-wrap img {
    width: 170px;
    max-width: 100%;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

/* Ensure the service tile header matches portfolio logo tiles */
.offering-card--more .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 88px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.offering-card--more .logo-wrap {
    padding: 0;
    overflow: hidden;
}

.offering-card--more .logo-wrap img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    filter: none;
}

/* Vary logo header backgrounds by card (closer to old site feel) */
/* Portfolio header backgrounds (match old site assets) */
.offering-card--health .logo-wrap {
    background-image: url('assets/sinqhealth-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offering-card--ops .logo-wrap {
    background-image: url('assets/ops-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offering-card--fit .logo-wrap {
    background-image: url('assets/fit-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ontide mark is dark; keep the header lighter so it reads on dark cards */
.offering-card--ontide .logo-wrap {
    background:
        linear-gradient(180deg, rgba(247, 250, 255, 0.86), rgba(221, 232, 244, 0.88)),
        url('assets/ontide-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Romina Day was a dark/black tab; keep it dark */
.offering-card--romina .logo-wrap {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(10, 10, 10, 0.92));
}

/* Add subtle overlays so text/logos read consistently */
.offering-card--fit .logo-wrap,
.offering-card--ontide .logo-wrap,
.offering-card--health .logo-wrap,
.offering-card--ops .logo-wrap {
    position: relative;
    overflow: hidden;
}

.offering-card--fit .logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
}

.offering-card--ontide .logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
}

.offering-card--health .logo-wrap::before,
.offering-card--ops .logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.offering-card--health .logo-wrap img,
.offering-card--ops .logo-wrap img,
.offering-card--fit .logo-wrap img,
.offering-card--ontide .logo-wrap img {
    position: relative;
    z-index: 1;
}

.offering-card--ontide .logo-wrap img {
    filter: none;
    width: 145px;
    height: 36px;
}

.offering-card--romina .logo-wrap img {
    width: 150px;
    height: 36px;
}

.offering-card--fit .logo-wrap img {
    height: 44px;
}

.offering-card h3 {
    margin: 0 0 8px;
    text-transform: none;
}

.offering-card p {
    margin: 0;
    color: var(--muted);
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.10);
    border: 1px solid rgba(47, 107, 255, 0.20);
    color: rgba(11, 27, 51, 0.75);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.contact-grid > .card {
    height: 100%;
}

.muted {
    color: var(--muted);
}

footer {
    background:
        radial-gradient(700px 420px at 12% 0%, rgba(47, 107, 255, 0.16), transparent 60%),
        linear-gradient(180deg, rgba(6, 18, 38, 0.98), rgba(0, 18, 51, 0.98));
    color: #eaf2ff;
    padding: 76px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    flex: 2;
    min-width: 280px;
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-logo p {
    margin: 0;
    max-width: 420px;
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    line-height: 1.45;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    margin: 0 0 18px;
    color: #68cdf9;
    font-size: 1.12rem;
    font-weight: 800;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: rgba(234, 242, 255, 0.76);
}

.footer-column a:hover {
    color: #68cdf9;
}

.footer-social {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #000000;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.footer-social:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

.footer-bottom {
    padding-top: 28px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    margin: 0;
    color: rgba(234, 242, 255, 0.50);
    font-size: 0.92rem;
    font-weight: 300;
}

/* Contact form styling (pulled into v2) */
.form-intro {
    margin: -2px 0 18px;
    color: var(--muted);
    max-width: 640px;
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(11, 27, 51, 0.14);
    background: rgba(255, 255, 255, 0.75);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    border: none;
    outline: none;
}

.form-success {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(25, 194, 255, 0.12);
    border: 1px solid rgba(25, 194, 255, 0.22);
    color: rgba(11, 27, 51, 0.85);
    font-weight: 600;
}

.section--dark .contact-form input,
.section--dark .contact-form textarea {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(234, 242, 255, 0.92);
}

.section--dark .contact-form input::placeholder,
.section--dark .contact-form textarea::placeholder {
    color: rgba(234, 242, 255, 0.64);
}

.section--dark .form-success {
    color: rgba(234, 242, 255, 0.92);
}

/* Make the left side more visually interesting */
.cover-card {
    border: 1px solid rgba(11, 27, 51, 0.12);
    background:
        radial-gradient(900px 380px at 12% 0%, rgba(25, 194, 255, 0.18), transparent 55%),
        radial-gradient(700px 320px at 88% 20%, rgba(47, 107, 255, 0.14), transparent 55%),
        rgba(255, 255, 255, 0.82);
}

.cover-kicker {
    font-weight: 700;
    color: rgba(11, 27, 51, 0.84);
    margin-bottom: 12px;
}

.cover-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.cover-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(11, 27, 51, 0.10);
}

.cover-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.18), rgba(25, 194, 255, 0.12));
    color: rgba(11, 27, 51, 0.80);
}

.cover-title {
    font-weight: 800;
    margin-bottom: 2px;
}

.cover-desc {
    color: rgba(11, 27, 51, 0.72);
}

.cover-outcome {
    margin-top: 14px;
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.10), rgba(25, 194, 255, 0.08));
    border-color: rgba(11, 27, 51, 0.10);
}

@media (min-width: 980px) {
    .cover-grid {
        grid-template-columns: 1fr;
    }
}

.ams-pricing-page .ams-hero-classic {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.ams-pricing-page .ams-hero-classic h1 {
    max-width: 780px;
}

.ams-pricing-page .ams-hero-classic p {
    max-width: 850px;
}

.ams-section-intro {
    max-width: 860px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
    margin: 0 0 20px;
}

.pricing-grid-classic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    margin: 18px 0 14px;
}

.pricing-card-classic {
    position: relative;
    overflow: hidden;
    padding-top: 22px;
}

.pricing-card-classic::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.45), rgba(25, 194, 255, 0.35));
}

.pricing-card-classic--featured {
    border-color: rgba(47, 107, 255, 0.30);
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(47, 107, 255, 0.14);
}

.pricing-card-classic--featured::before {
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.recommended-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
}

.pricing-card-classic h3 {
    margin: 12px 0 6px;
    font-size: 1.8rem;
    line-height: 1.1;
}

.price-line {
    color: var(--accent);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-card-classic .fancy-list strong,
.pricing-card-classic .fancy-list li {
    color: rgba(11, 27, 51, 0.76);
}

.section--dark .pricing-card-classic .fancy-list strong,
.section--dark .pricing-card-classic .fancy-list li {
    color: rgba(234, 242, 255, 0.78);
}

.section--dark .integration-pills-classic span {
    background: rgba(25, 194, 255, 0.12);
    border-color: rgba(25, 194, 255, 0.24);
    color: rgba(234, 242, 255, 0.78);
}

.ams-detail-grid-classic {
    margin-top: 14px;
    align-items: stretch;
}

.integration-pills-classic {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 16px 0;
}

.integration-pills-classic span {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.09);
    border: 1px solid rgba(47, 107, 255, 0.16);
    color: rgba(11, 27, 51, 0.78);
    font-weight: 700;
    font-size: 0.9rem;
}

.zoeos-agent-grid {
    align-items: stretch;
}

.agent-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.agent-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.45), rgba(25, 194, 255, 0.35));
}

.agent-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(25, 194, 255, 0.12));
    color: var(--accent);
}

.agent-card h3 {
    margin-bottom: 8px;
}

.agent-card p {
    margin: 0 0 14px;
}

.agent-card span {
    display: block;
    margin-top: auto;
    color: rgba(11, 27, 51, 0.62);
    font-size: 0.9rem;
    font-weight: 700;
}

.agent-card--cta {
    background:
        radial-gradient(420px 220px at 10% 0%, rgba(25, 194, 255, 0.16), transparent 60%),
        radial-gradient(420px 220px at 90% 20%, rgba(47, 107, 255, 0.14), transparent 60%),
        rgba(255, 255, 255, 0.88);
}

.agent-card--cta .btn-primary {
    width: fit-content;
    margin-top: auto;
}

.section--dark .ams-section-intro,
.section--dark .agent-card span {
    color: rgba(234, 242, 255, 0.72);
}

.section--dark .agent-card--cta {
    background:
        radial-gradient(420px 220px at 10% 0%, rgba(25, 194, 255, 0.16), transparent 60%),
        radial-gradient(420px 220px at 90% 20%, rgba(47, 107, 255, 0.18), transparent 60%),
        rgba(255, 255, 255, 0.08);
}

.section--dark .model-tag {
    background: rgba(25, 194, 255, 0.12);
    border-color: rgba(25, 194, 255, 0.26);
    color: rgba(234, 242, 255, 0.94);
}

.section--dark .model-tag span {
    color: rgba(234, 242, 255, 0.68);
}

.contact-block-classic {
    margin-top: 34px;
}

.contact-block-classic .section-header {
    margin-top: 8px;
}

@media (max-width: 980px) {
    .pricing-grid-classic {
        grid-template-columns: 1fr;
    }

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

/* Responsive */
@media (max-width: 980px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    section {
        padding: 56px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: absolute;
        right: 20px;
        top: 74px;
        padding: 14px;
        background: rgba(6, 18, 38, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 14px;
    }

    .menu-toggle {
        display: block;
        width: 34px;
        height: 28px;
    }

    .menu-toggle span {
        display: block;
        height: 2px;
        background: rgba(255, 255, 255, 0.82);
        margin: 6px 0;
        border-radius: 999px;
    }

    .logo img {
        height: 60px;
        width: auto;
    }
}

/* Mobile: make portfolio header logos fit reliably */
@media (max-width: 520px) {
    .logo-wrap {
        min-height: 78px;
        padding: 10px;
    }

    .logo-wrap img {
        width: 132px;
        height: 34px;
    }

    .offering-card--more .logo-wrap img {
        width: 100%;
        height: 78px;
    }

    .offering-card--romina .logo-wrap img {
        width: 128px;
        height: 32px;
    }

    .offering-card--ontide .logo-wrap img {
        width: 128px;
        height: 32px;
    }
}

@media (max-width: 390px) {
    .logo-wrap {
        min-height: 74px;
    }

    .logo-wrap img {
        width: 118px;
        height: 30px;
    }

    .offering-card--more .logo-wrap img {
        width: 100%;
        height: 74px;
    }

    .offering-card--romina .logo-wrap img {
        width: 112px;
        height: 28px;
    }

    .offering-card--ontide .logo-wrap img {
        width: 112px;
        height: 28px;
    }
}

.section--dark .cover-kicker,
.section--dark .cover-title {
    color: rgba(234, 242, 255, 0.92);
}
