/*
Theme Name: Noress Corp
Theme URI: https://example.com/noress-corp
Author: Noress Corp
Author URI: https://example.com
Description: A WordPress theme based on the NORESS Corporation one-page company website.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: noress-corp
*/

:root {
    --navy: #2a2c31;
    --navy-2: #3b3e45;
    --teal: #81142B;
    --teal-dark: #670f22;
    --amber: #818285;
    --amber-light: #ececef;
    --ink: #26282d;
    --muted: #6f7278;
    --paper: #f5f5f7;
    --white: #ffffff;
    --line: #dddddf;
    --shadow: 0 24px 70px rgba(42, 44, 49, 0.14);
    --radius: 22px;
    --max: 1180px;
    --success: #2f9e55;
    --success-bg: #e9f8ee;
    --red-soft: #f6e9ed;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 5px;
    background: var(--amber);
}

h1, h2, h3 {
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-copy {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 660px;
}

.section {
    padding: 104px 0;
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 1000;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--teal), var(--amber));
}

header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid rgba(219,228,232,0.8);
    backdrop-filter: blur(14px);
    transition: box-shadow .25s ease;
}

header.scrolled {
    box-shadow: 0 10px 35px rgba(11,31,51,.08);
}

nav {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo,
.custom-logo-link .custom-logo,
.custom-logo-link img {
    height: 78px;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
}

.footer-brand .brand-logo,
.footer-brand .custom-logo-link .custom-logo {
    height: 84px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: .94rem;
    font-weight: 700;
    color: #3a4d5f;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--teal);
    transition: right .25s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    right: 0;
}

.nav-links a.active {
    color: var(--navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--teal);
    color: white !important;
    box-shadow: 0 10px 25px rgba(129,20,43,.22);
}

.nav-cta::after {
    display: none;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px auto;
    transition: .25s;
}

.hero {
    min-height: 760px;
    padding: 160px 0 78px;
    display: grid;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, rgba(38,40,45,.97) 0%, rgba(38,40,45,.9) 45%, rgba(129,20,43,.52) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    right: -190px;
    top: 110px;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 0 0 78px rgba(255,255,255,.035), 0 0 0 156px rgba(255,255,255,.025);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
    align-items: end;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    color: #f3d6de;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.3rem);
    max-width: 840px;
}

.hero h1 span {
    color: #f0d4db;
}

.hero-lead {
    max-width: 680px;
    margin: 24px 0 34px;
    font-size: clamp(1rem, 2vw, 1.22rem);
    color: rgba(255,255,255,.82);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 14px 32px rgba(129,20,43,.28);
}

.btn-ghost {
    border-color: rgba(255,255,255,.3);
    color: white;
    background: rgba(255,255,255,.07);
}

.btn-dark {
    background: var(--teal);
    color: white;
}

.btn-outline {
    border-color: var(--line);
    color: var(--navy);
    background: white;
}

.arrow {
    width: 18px;
    height: 18px;
}

.hero-card {
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 24px;
    padding: 26px;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-card-icon {
    width: 49px;
    height: 49px;
    border-radius: 14px;
    background: var(--teal);
    display: grid;
    place-items: center;
    color: white;
}

.hero-card strong {
    display: block;
    font-size: 1.05rem;
}

.hero-card small {
    color: rgba(255,255,255,.68);
}

.hero-list {
    list-style: none;
    display: grid;
    gap: 13px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.86);
    font-size: .95rem;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(129,20,43,.18);
    display: grid;
    place-items: center;
    color: #f3d6de;
    flex: 0 0 auto;
}

.hero-meta {
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.16);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hero-meta strong {
    color: #f0d4db;
    font-size: 1.35rem;
}

.hero-meta span {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255,255,255,.55);
}

.trust-strip {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: white;
}

.trust-grid {
    min-height: 104px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-item {
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item:last-child {
    border: 0;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,.12);
    display: grid;
    place-items: center;
    color: var(--white);
    flex: 0 0 auto;
}

.trust-item strong {
    display: block;
    font-size: .94rem;
}

.trust-item span {
    color: rgba(255,255,255,.58);
    font-size: .76rem;
}

.services {
    background: var(--paper);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    right: -55px;
    top: -55px;
    background: rgba(129,20,43,.08);
    transition: transform .25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scale(1.45);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--red-soft);
    color: var(--teal);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: .94rem;
}

.service-link {
    margin-top: 22px;
    color: var(--teal-dark);
    font-weight: 800;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
    align-items: center;
}

.about-media {
    position: relative;
    min-height: 580px;
}

.about-main img {
    width: 86%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-small img {
    position: absolute;
    width: 48%;
    height: 255px;
    object-fit: cover;
    right: 0;
    bottom: 0;
    border: 9px solid white;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(11,31,51,.17);
}

.since-badge {
    position: absolute;
    left: -20px;
    bottom: 34px;
    background: var(--amber);
    color: var(--navy);
    width: 142px;
    height: 142px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(242,169,59,.35);
    border: 8px solid white;
}

.since-badge strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
}

.since-badge span {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 7px;
}

.about-copy h2 {
    margin-bottom: 22px;
}

.about-copy > p {
    color: var(--muted);
    margin-bottom: 17px;
}

.about-points {
    margin: 28px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.about-point {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-weight: 750;
    font-size: .93rem;
}

.about-point .check {
    background: var(--red-soft);
    color: var(--teal);
}

.process {
    background: linear-gradient(135deg, #2a2c31, #3b3e45);
    color: white;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 28px 28px;
}

.process .container {
    position: relative;
}

.process .eyebrow {
    color: #f1d2da;
}

.process .section-copy {
    color: rgba(255,255,255,.64);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.process-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.05);
}

.process-number {
    font-size: 3.4rem;
    font-weight: 900;
    color: rgba(255,255,255,.12);
    line-height: 1;
}

.process-card h3 {
    margin: 18px 0 10px;
    font-size: 1.2rem;
}

.process-card p {
    color: rgba(255,255,255,.6);
    font-size: .91rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.feature-panel {
    border-radius: 26px;
    overflow: hidden;
    min-height: 470px;
    position: relative;
    color: white;
    display: flex;
    align-items: end;
}

.feature-panel.image {
    background: linear-gradient(0deg, rgba(6,24,40,.95) 0%, rgba(6,24,40,.12) 78%), url('https://images.unsplash.com/photo-1709804945989-c8be542e04db?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=78&w=1600') center/cover;
}

.feature-panel.accent {
    background: linear-gradient(135deg, var(--navy-2), var(--teal));
}

.feature-content {
    padding: 38px;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    margin-bottom: 14px;
}

.feature-content p {
    color: rgba(255,255,255,.75);
    max-width: 540px;
}

.capability-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 27px;
}

.capability-list div {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 750;
    font-size: .9rem;
}

.quote-mini {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.quote-mini label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
    color: rgba(255,255,255,.72);
}

.quote-mini select {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: white;
    color: var(--navy);
    padding: 14px 15px;
    outline: none;
}

.fit-result {
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    font-size: .92rem;
    display: none;
}

.fit-result.show {
    display: block;
}

.faq {
    background: var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 13px;
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 800;
    color: var(--navy);
}

.faq-plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red-soft);
    display: grid;
    place-items: center;
    color: var(--teal);
    transition: transform .2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    max-height: 180px;
}

.faq-item.open .faq-plus {
    transform: rotate(45deg);
}

.contact {
    background: white;
}

.contact-shell {
    background: var(--navy);
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    box-shadow: var(--shadow);
}

.contact-info {
    color: white;
    padding: 54px;
    background: linear-gradient(180deg, rgba(129,20,43,.76), rgba(42,44,49,.98)), url('https://images.unsplash.com/photo-1715645948484-da40dd56bc93?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=72&w=1300') center/cover;
}

.contact-info h2 {
    margin-bottom: 18px;
}

.contact-info > p {
    color: rgba(255,255,255,.68);
}

.contact-details {
    display: grid;
    gap: 17px;
    margin: 34px 0;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item .trust-icon {
    background: rgba(255,255,255,.12);
}

.contact-item strong {
    display: block;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
}

.contact-item a, .contact-item span {
    font-weight: 700;
}

.contact-form {
    background: white;
    padding: 54px;
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--muted);
    margin-bottom: 26px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .79rem;
    font-weight: 800;
    color: #425466;
}

.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fbfcfd;
    border-radius: 11px;
    padding: 13px 14px;
    outline: none;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}

.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(129,20,43,.12);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 13px;
}

.form-status {
    margin-top: 14px;
    font-size: .92rem;
    font-weight: 700;
    min-height: 22px;
    color: var(--muted);
}

.form-status.success {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(47, 158, 85, 0.18);
}

.form-status strong {
    color: inherit;
}

.gform-styled .gform_wrapper.gform-theme {
    --gf-color-primary: var(--teal) !important;
    --gf-color-primary-rgb: 129, 20, 43 !important;
    --gf-color-primary-contrast: #fff !important;
    --gf-color-primary-darker: var(--teal-dark) !important;
    --gf-color-primary-lighter: #9c2e46 !important;
    --gf-color-in-ctrl: #fbfcfd !important;
    --gf-color-in-ctrl-contrast: var(--ink) !important;
    --gf-color-in-ctrl-primary: var(--teal) !important;
    --gf-ctrl-border-color: var(--line) !important;
    --gf-ctrl-label-color-primary: #425466 !important;
    --gf-ctrl-label-color-secondary: #425466 !important;
    --gf-radius: 11px !important;
    color-scheme: light !important;
    margin: 0;
    max-width: none;
}

.gform-styled .gform_heading,
.gform-styled .gform_description {
    display: none;
}

.gform-styled .gform_fields {
    /* Gravity Forms' Orbital theme already renders this as a native 12-column
       grid (gravity-forms-orbital-theme.min.css, loaded after this stylesheet,
       so it wins any equal-specificity rule) — work with that grid rather
       than redefine it. Fields below are placed using span-of-12 values. */
    gap: 17px !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gform-styled .gfield {
    grid-column: 1 / -1;
    max-width: none;
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

@media (min-width: 681px) {
    /* Name, Company, Email, Phone pair up (span 6 of 12 = half-width);
       Service and Message stay full-width (unset, keeping GF's own span 12) */
    .gform-styled #field_1_1,
    .gform-styled #field_1_4,
    .gform-styled #field_1_2,
    .gform-styled #field_1_5 {
        grid-column: span 6;
    }
}

.gform-styled .gform-field-label,
.gform-styled legend.gfield_label {
    display: block;
    font-size: .79rem;
    font-weight: 800;
    color: #425466;
    margin: 0;
}

.gform-styled .gform-field-label--type-sub {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
}

.gform-styled .gfield_required {
    color: var(--muted);
    font-weight: 600;
}

.gform-styled .ginput_container,
.gform-styled .ginput_complex,
.gform-styled .gfield_description {
    margin-top: 7px;
}

.gform-styled .gfield_description {
    font-size: .85rem;
    color: var(--muted);
}

.gform-styled .ginput_complex,
.gform-styled .gform-grid-row {
    gap: 12px;
}

.gform-styled input[type="text"],
.gform-styled input[type="email"],
.gform-styled input[type="tel"],
.gform-styled input[type="number"],
.gform-styled select,
.gform-styled textarea,
.gform-styled .gform-phone__input {
    width: 100%;
    border: 1px solid var(--line) !important;
    /* background-color (not the `background` shorthand) so this doesn't wipe
       out the select's native dropdown-arrow background-image */
    background-color: #fbfcfd !important;
    border-radius: 11px !important;
    padding: 13px 14px !important;
    outline: none;
    color: var(--ink) !important;
    font: inherit;
    transition: border-color .2s, box-shadow .2s;
    /* GF fixes these controls at a 38px block-size with a matching 38px
       line-height (assuming zero padding, for its own centering math). Our
       13px vertical padding on top of that leaves no room, so text (and a
       select's displayed value) renders clipped down to invisible. Resetting
       line-height to a normal ratio lets `height: auto` compute a sane total,
       with min-height as a floor (a separate property, so it doesn't fight
       GF's cascade over height/block-size directly). */
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 47px !important;
    block-size: auto !important;
    min-block-size: 47px !important;
}

.gform-styled input:focus,
.gform-styled select:focus,
.gform-styled textarea:focus,
.gform-styled .gform-phone__input:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 4px rgba(129,20,43,.12);
    outline: none;
}

.gform-styled select {
    /* extra clearance so the value text doesn't sit flush against GF's
       native dropdown-arrow icon */
    padding-right: 34px !important;
}

.gform-styled textarea {
    resize: vertical;
    min-height: 120px;
}

.gform-styled .gform-phone__input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.gform-styled .gform-phone__country-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    min-height: 47px;
    padding: 0 12px !important;
    border: 1px solid var(--line) !important;
    background: #fbfcfd !important;
    border-radius: 11px !important;
}

.gform-styled .ginput_container_phone {
    width: 100%;
}

.gform-styled .gform_footer,
.gform-styled .gform-footer {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

.gform-styled .gform_button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px !important;
    padding: 0 22px !important;
    border: 1px solid transparent;
    border-radius: 13px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    background: var(--teal) !important;
    color: white !important;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.gform-styled .gform_button:hover {
    transform: translateY(-2px);
}

.gform-styled .gform_ajax_spinner {
    margin-left: 10px;
}

.gform-styled .validation_error {
    grid-column: 1 / -1;
    margin: 0 0 14px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--teal);
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(129,20,43,.06);
    border: 1px solid rgba(129,20,43,.18);
}

.gform-styled .gfield_validation_message,
.gform-styled .validation_message {
    font-size: .8rem;
    font-weight: 700;
    color: var(--teal);
}

.gform-styled .gfield_error input,
.gform-styled .gfield_error select,
.gform-styled .gfield_error textarea {
    border-color: var(--teal) !important;
}

.gform-styled .gform_confirmation_message {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(47, 158, 85, 0.18);
    font-size: .92rem;
    font-weight: 700;
}

.gform-styled .gfield--type-text.gfield--no-description {
    margin-top: auto;
}

/* footer limit logo to 280px width */
.footer-brand img {
    max-width: 280px;
}

.toast {
    position: fixed;
    top: 104px;
    right: 20px;
    z-index: 1200;
    max-width: 360px;
    padding: 15px 18px;
    border-radius: 16px;
    background: var(--success);
    color: white;
    box-shadow: 0 16px 34px rgba(47,158,85,.24);
    font-weight: 800;
    font-size: .95rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .25s;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background: #23252a;
    color: white;
    padding: 42px 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
    max-width: 440px;
    color: rgba(255,255,255,.57);
    margin-top: 16px;
    font-size: .9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.7);
    font-weight: 700;
    font-size: .9rem;
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.45);
    font-size: .76rem;
}

.photo-credit a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--teal);
    color: white;
    box-shadow: 0 15px 30px rgba(129,20,43,.24);
    z-index: 700;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .25s;
}

.back-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .nav-links {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0;
        padding: 10px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: .25s;
    }

    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li a {
        display: block;
        padding: 13px 14px;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 560px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        max-width: 720px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .section {
        padding: 78px 0;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        height: 58px;
    }

    .hero {
        padding-top: 150px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.5rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-meta {
        flex-direction: column;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item, .trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading .section-copy {
        margin-top: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        min-height: 470px;
    }

    .about-main img {
        height: 420px;
        width: 90%;
    }

    .about-small img {
        height: 205px;
        width: 53%;
        border-width: 6px;
    }

    .since-badge {
        width: 112px;
        height: 112px;
        left: -8px;
        bottom: 18px;
        border-width: 6px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-panel {
        min-height: 440px;
    }

    .capability-list {
        grid-template-columns: 1fr;
    }

    .contact-info, .contact-form {
        padding: 34px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

    .footer-main, .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}