:root {
    --terago-navy: #0f1023;
    --terago-ink: #050819;
    --terago-muted: #59627b;
    --terago-soft: #f4f8f7;
    --terago-card: #ffffff;
    --terago-border: #dfe7ec;
    --terago-green: #35d000;
    --terago-green-dark: #28a900;
    --terago-radius: 24px;
    --terago-shadow: 0 22px 55px rgba(8, 16, 34, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--terago-ink);
    background: #fff;
    font-size: 16px;
    line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

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

.terago-site-header {
    background: #fff;
    border-bottom: 1px solid var(--terago-border);
    position: sticky;
    top: 0;
    z-index: 20;
}
.terago-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.terago-brand { display: inline-flex; align-items: center; text-decoration: none; }
.terago-brand-logo { width: 178px; display: block; }
.terago-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 750;
    font-size: 15px;
}
.terago-menu a { text-decoration: none; }
.terago-menu a:hover { color: var(--terago-green-dark); }

.terago-main { min-height: 60vh; }
.terago-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
    padding: 70px 0 54px;
}
.terago-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}
.terago-eyebrow {
    margin: 0 0 12px;
    color: var(--terago-green-dark);
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
}
h1, h2, h3 {
    color: var(--terago-ink);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -0.04em;
}
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 800px; }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: 24px; }
.terago-lead {
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.5;
    color: #30384f;
    margin: 0 0 28px;
    max-width: 700px;
}
.terago-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.terago-button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 22px;
    background: var(--terago-green);
    color: var(--terago-ink) !important;
    font-weight: 850;
    text-decoration: none;
    border: 2px solid var(--terago-green);
    min-height: 50px;
}
.terago-button:hover,
.wp-block-button__link:hover { transform: translateY(-1px); }
.terago-button-secondary,
.is-style-outline .wp-block-button__link {
    background: #fff;
    border-color: var(--terago-border);
}
.terago-hero-media {
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--terago-shadow);
}
.terago-hero-img,
.terago-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.terago-hero-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 8px;
    padding: 40px;
    background: var(--terago-soft);
}
.terago-hero-placeholder-icon { width: 92px; }

.terago-trust-strip {
    background: var(--terago-navy);
    color: #fff;
}
.terago-trust-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.terago-trust-list span {
    padding: 18px 20px;
    text-align: center;
    font-weight: 850;
    border-left: 1px solid rgba(255,255,255,.12);
}
.terago-trust-list span:first-child { border-left: 0; }

.terago-section { padding: 74px 0; }
.terago-section-muted { background: var(--terago-soft); }
.terago-two-column {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 56px;
    align-items: start;
}
.terago-copy {
    color: #30384f;
    font-size: 19px;
}
.terago-copy p:first-child { margin-top: 0; }
.terago-service-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.terago-service-list li {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--terago-border);
    border-radius: 18px;
    font-weight: 780;
    color: var(--terago-ink);
}
.terago-section-muted .terago-service-list li { background: #fff; }

.terago-cta {
    padding: 74px 0;
    background: #fff;
}
.terago-cta-box {
    background: var(--terago-navy);
    color: #fff;
    border-radius: 32px;
    padding: clamp(28px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.terago-cta-box h2,
.terago-cta-box .terago-eyebrow { color: #fff; }
.terago-cta-box p { margin-bottom: 0; color: rgba(255,255,255,.86); }
.terago-cta-box a:not(.terago-button) { color: #fff; }


.terago-page-header {
    margin-bottom: 34px;
}
.terago-featured-image {
    margin: 30px 0 38px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--terago-shadow);
    background: var(--terago-soft);
}
.terago-featured-img {
    display: block;
    width: 100%;
    max-height: 520px;
    height: auto;
    object-fit: cover;
    border-radius: 0 !important;
}

.terago-page-content {
    padding: 56px 0 80px;
    max-width: 960px;
}
.terago-page-content h1 { font-size: clamp(38px, 6vw, 64px); }
.terago-page-content h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 36px; }
.terago-page-content p,
.terago-page-content li { font-size: 18px; }
.terago-page-content a { color: var(--terago-green-dark); font-weight: 750; }
.terago-page-content img { border-radius: 18px; }

.terago-legacy { max-width: 960px; margin: 0 auto; }
.terago-legacy-row,
.terago-legacy-vc_row { margin-bottom: 24px; }
.terago-legacy-heading { margin-top: 24px; }
.terago-legacy-image { margin: 24px 0; }
.terago-separator { border: 0; border-top: 1px solid var(--terago-border); margin: 28px 0; }

.terago-site-footer {
    background: var(--terago-navy);
    color: #fff;
    padding: 48px 0 54px;
}
.terago-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(170px, .75fr));
    gap: 42px;
    align-items: start;
}
.terago-footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}
.terago-footer-logo {
    width: 150px;
    max-width: 100%;
    display: block;
    height: auto;
}
.terago-company-info {
    color: rgba(255,255,255,.86);
    font-style: normal;
    line-height: 1.7;
    margin: 0;
}
.terago-company-info strong {
    color: #fff;
}
.terago-footer-nav { min-width: 0; }
.terago-site-footer h2 {
    color: #fff;
    font-size: 15px;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.terago-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.terago-footer-menu a,
.terago-site-footer a {
    color: #fff;
    text-decoration: none;
}
.terago-footer-menu a:hover,
.terago-site-footer a:hover { color: var(--terago-green); }

.terago-pattern-home {
    padding: 56px 0;
}
.terago-pattern-home > * {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.terago-trust-grid {
    margin: 34px auto !important;
    gap: 12px !important;
}
.terago-trust-grid .wp-block-column {
    background: var(--terago-navy);
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
}
.terago-trust-grid p { margin: 0; }

@media (max-width: 900px) {
    .terago-header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
    .terago-menu { flex-wrap: wrap; gap: 14px 20px; }
    .terago-hero { padding-top: 42px; }
    .terago-hero-grid,
    .terago-two-column,
    .terago-footer-grid { grid-template-columns: 1fr 1fr; }
    .terago-trust-list { grid-template-columns: 1fr 1fr; }
    .terago-trust-list span:nth-child(odd) { border-left: 0; }
    .terago-cta-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
    .terago-container { width: min(100% - 28px, 1180px); }
    .terago-brand-logo { width: 150px; }
    .terago-menu { font-size: 14px; }
    .terago-trust-list { grid-template-columns: 1fr; }
    .terago-trust-list span { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
    .terago-trust-list span:first-child { border-top: 0; }
    .terago-section, .terago-cta { padding: 52px 0; }
}


@media (max-width: 700px) {
    .terago-footer-grid { grid-template-columns: 1fr; }
}


.terago-featured-image img,
.terago-featured-img {
    display: block;
    width: 100%;
}
.terago-primary-nav .terago-menu a {
    white-space: nowrap;
}
