:root {
    --navy: #16243d;
    --navy-2: #1e3054;
    --blue: #2f6fed;
    --blue-soft: #e8f0fe;
    --orange: #f59e0b;
    --text: #26303f;
    --muted: #687386;
    --line: #e8ebf0;
    --bg-alt: #f6f8fb;
    --white: #fff;
}
.page-template-services .site-wide-header {
    background-color: var(--white);
    position: relative;
}
.page-template-services .site-logo img {
    content: url("/wp-content/uploads/2025/09/Optsy_logo_225w.png");
}
.page-template-services .main-nav .menu > li > a {
    color: var(--black);
}
.page-template-services .submenu-toggle {
    color: var(--black);
}
.frame {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(22, 36, 61, 0.18);
}
.pill-btn, .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-weight: 750;
    border-radius: 8px;
}
.pill-btn {
    font-size: 12px;
    padding: 9px 16px;
}
.op-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    padding: 0 30px;
}
.hero {
    color: #fff;
    padding: 58px 0;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 42px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    color: #a9c4ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -1.5px;
}
.hero p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
    max-width: 620px;
}
.cta {
    font-size: 14px;
    padding: 13px 24px;
    margin-top: 24px;
}
.hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}
.hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0e1728;
}
.hero-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.op-below-hero {
    background-color: var(--navy-2);
    padding: 28px 30px;
}
.dd {
    position: relative;
    max-width: 570px;
}
.dd-all-services {
    font-weight: 800;
    color: var(--blue);
}
.dd-btn {
    width: 100%;
    background-color: var(--light-olive-green);
    border: none;
    border-radius: 8px;
    padding: 20px 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.dd-btn::after {
    content: "▾";
    color: var(--black);
    transition: transform 0.2s ease;
	font-size: 22px;
	line-height: 0;
}
.dd.open .dd-btn::after {
    transform: rotate(180deg);
}
.dd-panel {
    display: none;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(22, 36, 61, 0.25);
    padding: 10px;
    z-index: 20;
    max-height: 300px;
    overflow-y: auto;
}
.dd.open .dd-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.dd-panel a {
    display: block;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
}
.dd-panel a:hover {
    background: var(--blue-soft);
    color: var(--blue);
}
.dd-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 10px;
}
section {
    padding: 54px 48px;
}
.op-customer {
    padding: 54px 30px;
}
section.alt {
    background: var(--bg-alt);
    padding-left: 30px;
    padding-right: 30px;
}
.kicker {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.h2 {
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 850;
    color: var(--navy);
    margin-top: 7px;
    letter-spacing: -0.7px;
}
.section-intro {
    max-width: 760px;
    margin: 15px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}
.center {
    text-align: center;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.fcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 1px 4px rgba(22, 36, 61, 0.05);
}
.icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    margin-bottom: 13px;
}
.fcard h3 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 9px;
}
.fcard p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
}
.fcard a {
    display: inline-block;
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.car-wrap {
    position: relative;
    margin-top: 30px;
}
.car {
    overflow: hidden;
    border-radius: 14px;
}
.car-track {
    display: flex;
    transition: transform 0.4s ease;
    touch-action: pan-y;
}
.slide {
    min-width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 34px 38px;
    text-align: center;
}
.slide .icon {
    margin: 0 auto 13px;
    width: 48px;
    height: 48px;
    font-size: 21px;
}
.slide h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}
.slide p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}
.slide .more {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue);
    font-weight: 750;
    font-size: 13.5px;
    text-decoration: none;
}
.car-btn {
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(22, 36, 61, 0.12);
    color: var(--blue);
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
}
.car-btn.prev {
    left: -50px;
}
.car-btn.next {
    right: -50px;
}
.dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 17px;
}
.dot-i {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cfd6e0;
    cursor: pointer;
}
.dot-i.on {
    background: var(--blue);
    width: 20px;
    border-radius: 5px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 26px;
}
.chip {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
.chip:hover {
    border-color: #b8c9ef;
    color: var(--blue);
}
.chip .dot {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--blue-soft);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 10px;
}

.op-faq-list {
    max-width: 820px;
    margin: 28px auto 0;
    border: unset;
    background-color: unset;
}
.op-faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.op-faq-question {
    width: 100%;
    background: none;
    border: 0;
    padding: 17px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    color: var(--navy);
    font-weight: 750;
    cursor: pointer;
}
.op-faq-toggle {
	font-size: 18px;
	line-height: 1;
	transition: transform 0.2s ease;
	background-color: var(--black);
	border: 1px solid var(--black);
	color: var(--white);
	padding: 4.5px;
	width: 22px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.op-faq-item.open .op-faq-toggle {
	color: var(--white);
    background-color: var(--light-olive-green);
    border-color: var(--light-olive-green);
}
.op-faq-item.open span.op-faq-heading {
	color: var(--light-olive-green);
}
.op-faq-answer {
    display: none;
    padding: 0 19px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.op-faq-item.open .op-faq-answer {
    display: block;
}

.demo {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}
.demo .h2 {
    color: #fff;
}
.demo .section-intro {
    color: rgba(255, 255, 255, 0.7);
}
.demo-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    max-width: 900px;
    margin: 26px auto 0;
}
.field {
    width: 100%;
    min-width: 0;
    height: 46px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 14px;
    color: var(--text);
}
.field:focus {
    outline: 3px solid rgba(245, 158, 11, 0.3);
    border-color: var(--orange);
}
.submit-btn {
    border: 0;
    margin: 0;
    cursor: pointer;
    white-space: nowrap;
    padding-inline: 22px;
}

.dd-btn:focus-visible,
.car-btn:focus-visible,
.dot-i:focus-visible,
.faq-question:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(245, 158, 11, 0.5);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .hero {
        padding: 48px 0 38px;
        gap: 30px;
    }
    section {
        padding: 48px 34px;
    }
    .slide {
        padding: 32px 0 36px;
    }
    .demo-form {
        grid-template-columns: 1fr 1fr;
    }
    .submit-btn {
        min-height: 46px;
    }
    .op-hero,
    .op-below-hero,
    .op-customer,
    section.alt {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 700px) {
    .frame {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    .logo {
        font-size: 22px;
    }
    .pill-btn {
        white-space: nowrap;
    }

    .hero {
        padding: 44px 0 30px;
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }
    .hero h1 {
        font-size: clamp(31px, 9vw, 42px);
    }
    .hero p {
        font-size: 15px;
    }
    .hero-panel {
        width: min(100%, 680px);
        margin: 0 auto;
    }
    .cta {
        margin-top: 20px;
    }

    .dd {
        max-width: none;
    }
    .dd-btn {
        min-height: 48px;
        text-align: left;
    }
    .dd-panel {
        position: relative;
        top: auto;
        margin-top: 7px;
        max-height: 340px;
    }
    .dd.open .dd-panel {
        grid-template-columns: 1fr;
    }

    section {
        padding: 43px 20px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .fcard {
        padding: 19px;
    }

    .slide {
        padding: 30px 42px 32px;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .car-btn {
        width: 35px;
        height: 35px;
    }
    .car-btn.prev {
        left: 4px;
    }
    .car-btn.next {
        right: 4px;
    }
    .dots {
        flex-wrap: wrap;
    }

    .chips {
        gap: 8px;
    }
    .chip {
        padding: 9px 14px;
    }
    .op-faq-question {
        padding: 16px;
    }
    .op-faq-answer {
        padding: 0 16px 16px;
    }
    .demo-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 390px) {
    /*.hero,
    .dd-wrap,
    section {
        padding-left: 16px;
        padding-right: 16px;
    }*/
	.about-page-content {
		padding-left: 20px;
        padding-right: 20px;
	}
    .slide {
        padding-left: 38px;
        padding-right: 38px;
    }
    .chip {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .car-track,
    .plus,
    .dd-btn::after {
        transition: none;
    }
}

/* =========================================================
   OPTSY DEMO GRAVITY FORM
========================================================= */

.page-template-services .menu-toggle {
    color: var(--black);
}
/* Main form area */
.demo .service-form {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 28px auto 0;
}

.demo .optsy-form_wrapper,
.demo .gform_wrapper.optsy-form_wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Hide Gravity Forms heading */
.demo .optsy-form_wrapper .gform_heading,
.demo .optsy-form_wrapper .gform_required_legend {
    display: none;
}

.demo .optsy-form_wrapper form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    width: 100%;
    margin: 0;
}

.demo .optsy-form_wrapper .gform-body,
.demo .optsy-form_wrapper .gform_body {
    min-width: 0;
    width: 100%;
    margin: 0;
}

/* Three fields in one row */
.demo .optsy-form_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}
.gform-theme--foundation .gfield {
    grid-column: auto !important;
}

/* Individual fields */
.demo .optsy-form_wrapper .gfield {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide honeypot */
.demo .optsy-form_wrapper .gform_validation_container,
.demo .optsy-form_wrapper .gfield--type-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Keep hidden labels accessible */
.demo .optsy-form_wrapper .hidden_label .gfield_label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.demo .optsy-form_wrapper .ginput_container {
    width: 100%;
    margin: 0 !important;
}

/* Inputs */
.demo .optsy-form_wrapper input[type="text"],
.demo .optsy-form_wrapper input[type="email"],
.demo .optsy-form_wrapper input[type="tel"] {
    display: block;
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 15px !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    color: #26303f !important;
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 8px !important;
    box-shadow: none !important;

    -webkit-appearance: none;
    appearance: none;
    text-align: left;
}

.demo .optsy-form_wrapper input::placeholder {
    color: #737b88 !important;
    opacity: 1;
}

.demo .optsy-form_wrapper input[type="text"]:focus,
.demo .optsy-form_wrapper input[type="email"]:focus,
.demo .optsy-form_wrapper input[type="tel"]:focus {
    outline: none !important;
    border-color: #2f6fed !important;
    box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.25) !important;
}

/* Submit area */
.demo .optsy-form_wrapper .gform-footer,
.demo .optsy-form_wrapper .gform_footer {
    display: flex !important;
    align-items: stretch;
    margin: 0 !important;
    padding: 0 !important;
}

/* Submit button */
.demo .optsy-form_wrapper input[type="submit"],
.demo .optsy-form_wrapper .gform_button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 142px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 18px !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    color: var(--black) !important;
    background: var(--mustard-yellow) !important;
    border: 1px solid var(--mustard-yellow) !important;
    border-radius: 8px !important;
    box-shadow: none !important;

    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.demo .optsy-form_wrapper input[type="submit"]:hover,
.demo .optsy-form_wrapper .gform_button:hover {
    border-color: var(--dark-olive-green) !important;
    background: var(--dark-olive-green) !important;
    color: var(--white) !important ;
    transform: translateY(-1px);
}
.hero-form .gform-theme--foundation .gform_fields {
    grid-template-columns: repeat(1, 1fr);
}

/* Validation */
.demo .optsy-form_wrapper .gfield_validation_message,
.demo .optsy-form_wrapper .validation_message {
    margin: 6px 0 0 !important;
    padding: 0 !important;
    color: #ffd1d1 !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 12px !important;
    text-align: left;
}

.demo .optsy-form_wrapper .gfield_error input {
    border-color: #ef4444 !important;
}

.demo .optsy-form_wrapper .gform_validation_errors {
    grid-column: 1 / -1;
    margin: 0 0 14px !important;
    padding: 12px 15px !important;
    text-align: left;
    border-radius: 8px !important;
}

/* Spinner */
.demo .optsy-form_wrapper .gform_ajax_spinner {
    align-self: center;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .demo .optsy-form_wrapper form {
        grid-template-columns: 1fr;
    }

    .demo .optsy-form_wrapper .gform-footer,
    .demo .optsy-form_wrapper .gform_footer {
        justify-content: center;
    }

    .demo .optsy-form_wrapper input[type="submit"],
    .demo .optsy-form_wrapper .gform_button {
        width: 180px !important;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {
    .demo {
        padding: 42px 20px;
    }

    .demo .h2 {
        font-size: 27px;
    }

    .demo .section-intro {
        margin-top: 13px;
    }

    .demo .section-intro p {
        font-size: 14px;
    }

    .demo .service-form {
        margin-top: 24px;
    }

    .demo .optsy-form_wrapper .gform_fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .demo .optsy-form_wrapper input[type="text"],
    .demo .optsy-form_wrapper input[type="email"],
    .demo .optsy-form_wrapper input[type="tel"] {
        height: 48px !important;
        min-height: 48px !important;
        font-size: 16px !important;
    }

    .demo .optsy-form_wrapper input[type="submit"],
    .demo .optsy-form_wrapper .gform_button {
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
    }
}

/* ---- About-page content section (tabbed) ---- */
.about-page-content {
    background: var(--white);
}
.apc-intro {
    max-width: 780px;
    margin: 0 auto;
}
.apc-video {
    margin-top: 28px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(22, 36, 61, 0.12);
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0e1728;
}
.apc-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.apc-copy {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}
.apc-copy p + p {
    margin-top: 16px;
}

.apc-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 36px 0 34px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0;
}
.apc-tab {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 750;
    color: var(--muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}
.apc-tab:hover {
    color: var(--navy);
}
.apc-tab.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.apc-panel {
    display: none;
}
.apc-panel.active {
    display: block;
    animation: apcFade 0.25s ease;
}
@keyframes apcFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apc-panel-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 26px;
}
.apc-panel-head h3 {
    font-size: clamp(20px, 2.4vw, 25px);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.4px;
}
.apc-panel-head p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.apc-copy h4 {
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 7px;
}
.apc-copy p {
    color: var(--muted);
    line-height: 1.65;
}
.apc-copy p a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}
.op-industry {
    background-color: var(--bg-alt);
    padding-right: 30px;
    padding-left: 30px;
}
section.op-faqs {
    background-color: var(--white);
}

@media (max-width: 900px) {
    .apc-grid, .apc-grid.cols-3 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .apc-grid, .apc-grid.cols-3 {
        grid-template-columns: 1fr;
    }
    .op-industry {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================================================
   OPTSY INDUSTRIES SLICK SLIDER
========================================================= */

.op-industries-slider-section {
    overflow: hidden;
    padding: 72px 20px;
    background: #f6f8fb;
}

.op-industries-slider-section .site-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.op-industries-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.op-industries-heading .kicker {
    margin-bottom: 8px;
    color: #2f6fed;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

.op-industries-heading .h2 {
    margin: 0;
    color: #16243d;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.op-industries-intro {
    margin: 14px auto 0;
    color: #697386;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   SLIDER WRAPPER
========================================================= */

.op-industries-slider-wrap {
    position: relative;
    width: 100%;
}

/* Leave room for side arrows on larger screens */
.op-industries-slider {
    margin: 0 -10px;
}

.op-industries-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.op-industries-slider:not(.slick-initialized) .op-industry-slide {
    flex: 0 0 33.333%;
}

.op-industries-slider .slick-list {
    overflow: hidden;
}

.op-industries-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.op-industries-slider .slick-slide {
    height: auto;
}

.op-industries-slider .slick-slide > div {
    height: 100%;
}

.op-industry-slide {
    height: 100%;
    padding: 10px;
}

/* =========================================================
   INDUSTRY CARD
========================================================= */

.op-industry-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 14px;
}

.op-industry-card-content h3 a {
    color: inherit;
    text-decoration: none;
}

.op-industry-card-content h3 a:hover {
    color: #2f6fed;
}

/* =========================================================
   IMAGE
========================================================= */

.op-industry-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e8f0fe;
}

.op-industry-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(22, 36, 61, 0.25), transparent);
}

.op-industry-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.op-industry-card:hover .op-industry-image img {
    transform: scale(1.04);
}

/* =========================================================
   CONTENT
========================================================= */

.op-industry-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 23px;
}

.op-industry-card-content h3 {
    margin: 0;
    color: #16243d;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.op-industry-description {
    margin-top: 11px;
    color: #697386;
    font-size: 14px;
    line-height: 1.65;
}

.op-industry-description p {
    margin: 0 0 10px;
}

.op-industry-description p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   READ MORE LINK
========================================================= */

.op-industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 19px;
    color: #2f6fed;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.op-industry-link svg {
    display: block;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.op-industry-link:hover {
    gap: 12px;
    color: #16243d;
}

/* =========================================================
   SIDE ARROWS
========================================================= */

.op-industries-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    padding: 0;

    color: #2f6fed;
    background: #ffffff;
    border: 1px solid #dce3ed;
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(22, 36, 61, 0.14);

    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.op-industries-prev {
    left: -58px;
}

.op-industries-next {
    right: -58px;
}

.op-industries-arrow svg {
    display: block;
    width: 21px;
    height: 21px;
}

.op-industries-arrow:hover {
    color: #ffffff;
    background: #2f6fed;
    border-color: #2f6fed;
    transform: translateY(-50%) scale(1.05);
}

.op-industries-arrow:focus-visible {
    outline: 3px solid rgba(47, 111, 237, 0.25);
    outline-offset: 3px;
}

.op-industries-arrow.slick-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
    transform: translateY(-50%);
}

/* Remove Slick default arrow pseudo-elements */
.op-industries-arrow::before,
.op-industries-arrow::after {
    display: none;
    content: none;
}

/* =========================================================
   DOTS
========================================================= */

.op-industries-dots .slick-dots, .platform-carousel .slick-dots {
    position: relative;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.op-industries-dots, .platform-carousel .slick-dots {
    margin-top: 22px;
}
.op-industries-dots .slick-dots li, .platform-carousel .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.op-industries-dots .slick-dots button, .platform-carousel .slick-dots button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    background: #cbd3df;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}
.op-industries-dots .slick-dots button::before, .platform-carousel .slick-dots button::before {
    display: none;
    content: none;
}

.op-industries-dots .slick-dots li.slick-active button, .platform-carousel .slick-dots li.slick-active button {
    width: 22px;
    background: #2f6fed;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1300px) {
    .op-industries-slider-section .site-container {
        max-width: 1120px;
    }

    .op-industries-prev {
        left: -24px;
    }

    .op-industries-next {
        right: -24px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .op-industries-slider-section {
        padding: 60px 20px;
    }

    .op-industries-heading .h2 {
        font-size: 30px;
    }

    .op-industries-slider:not(.slick-initialized) .op-industry-slide {
        flex-basis: 50%;
    }

    .op-industries-prev {
        left: -8px;
    }

    .op-industries-next {
        right: -8px;
    }

    .op-industries-arrow {
        width: 42px;
        height: 42px;
    }

    .op-industries-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width:767px) {
	.grid-3 {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 600px) {
    .op-industries-slider-section {
        padding: 48px 10px;
    }

    .op-industries-heading {
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .op-industries-heading .h2 {
        font-size: 27px;
    }

    .op-industries-intro {
        font-size: 14px;
    }

    .op-industries-slider-wrap {
        padding: 0 2px;
    }

    .op-industries-slider {
        margin: 0 -4px;
    }

    .op-industry-slide {
        padding: 8px;
    }

    .op-industries-slider:not(.slick-initialized) .op-industry-slide {
        flex-basis: 88%;
    }

    .op-industry-card-content {
        padding: 20px;
    }

    .op-industry-card-content h3 {
        font-size: 19px;
    }

    .op-industries-arrow {
        width: 38px;
        height: 38px;
    }

    .op-industries-prev {
        left: 4px;
    }

    .op-industries-next {
        right: 4px;
    }

    .op-industries-arrow svg {
        width: 18px;
        height: 18px;
    }

    .op-industries-dots {
        margin-top: 18px;
    }
}
.hero-form {
    margin-bottom: 0;
}
.eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;
    background-color: rgb(169 196 255 / 10%);
    padding: 10px 20px;
    border-radius: 50px;
}
.kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: rgb(47 111 237 / 10%);
    padding: 10px 20px;
    border-radius: 50px;
}

/* Pulsing dot */
.eyebrow::before, .kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	flex: 0 0 8px;
	background: #a9c4ff;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(47, 111, 237, 0.45);
	animation: eyebrowPulse 2s ease-out infinite;
}

@keyframes eyebrowPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(47, 111, 237, 0.45);
	}

	70% {
		box-shadow: 0 0 0 9px rgba(47, 111, 237, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(47, 111, 237, 0);
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	.eyebrow::before {
		animation: none;
	}
}

/* =========================================================
   CLEANER ABOUT PAGE TABS
========================================================= */

.about-page-content .apc-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;

	width: fit-content;
	max-width: 100%;
	margin: 34px auto 32px;
	padding: 5px;

	background: #f3f6fa;
	border: 1px solid #e3e8ef;
	border-radius: 10px;

	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.about-page-content .apc-tabs::-webkit-scrollbar {
	display: none;
}

.about-page-content .apc-tab {
	position: relative;
	flex: 0 0 auto;

	min-height: 42px;
	margin: 0;
	padding: 10px 18px;

	color: #687386;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 7px;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;

	cursor: pointer;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.about-page-content .apc-tab:hover {
	color: #16243d;
	background: rgba(255, 255, 255, 0.65);
}

.about-page-content .apc-tab.active,
.about-page-content .apc-tab[aria-selected="true"] {
	color: #2f6fed;
	background: #ffffff;
	border-color: #dce4ef;
}

.about-page-content .apc-tab:focus-visible {
	outline: 3px solid rgba(47, 111, 237, 0.18);
	outline-offset: 2px;
}

/* Remove the old underline tab style */
.about-page-content .apc-tab::before,
.about-page-content .apc-tab::after {
	display: none;
	content: none;
}

/* Panels */
.about-page-content .apc-panel {
	display: none;
}

.about-page-content .apc-panel.active {
	display: block;
	animation: apcCleanFade 0.22s ease;
}

@keyframes apcCleanFade {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Panel heading */
.about-page-content .apc-panel-head {
	max-width: 720px;
	margin: 0 auto 28px;
	text-align: center;
}

.about-page-content .apc-panel-head h3 {
	margin: 0;
	color: #16243d;
	font-size: clamp(21px, 2.4vw, 27px);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.4px;
}

.about-page-content .apc-panel-head p {
	max-width: 650px;
	margin: 10px auto 0;
	color: #687386;
	font-size: 15px;
	line-height: 1.7;
}

/* Tablet */
@media (max-width: 900px) {
	.about-page-content .apc-tabs {
		justify-content: flex-start;
		width: 100%;
		margin-top: 28px;
		margin-bottom: 28px;
	}

	.about-page-content .apc-tab {
		padding: 10px 16px;
	}
}
.platform-carousel .slick-slide {
    padding: 0 10px 0 0;
}
/* Mobile */
@media (max-width: 600px) {
	.about-page-content .apc-tabs {
		gap: 4px;
		padding: 4px;
		border-radius: 9px;
	}

	.about-page-content .apc-tab {
		min-height: 40px;
		padding: 9px 14px;
		font-size: 13px;
		border-radius: 6px;
	}

	.about-page-content .apc-panel-head {
		margin-bottom: 22px;
	}

	.about-page-content .apc-panel-head h3 {
		font-size: 22px;
	}

	.about-page-content .apc-panel-head p {
		font-size: 14px;
	}
	.platform-carousel .slick-slide {
		padding: 0;
	}
}