:root {
    --tig-green: #0a7d44;
    --tig-green-dark: #056035;
    --tig-green-deep: #043f28;
    --tig-yellow: #e3cf1c;
    --tig-white: #ffffff;
    --tig-off-white: #f7f7f5;
    --tig-text: #202020;
    --tig-muted: #5f5f5f;
    --tig-border: #dedede;
    --tig-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    --tig-radius: 12px;
    --tig-container: 1360px;
    --tig-font: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--tig-text);
    background: var(--tig-off-white);
    font-family: var(--tig-font);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.tig-container {
    width: min(calc(100% - 48px), var(--tig-container));
    margin: 0 auto;
}

.tig-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.tig-site-header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tig-branding,
.tig-branding__link,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.tig-branding img,
.custom-logo {
    width: auto;
    height: 64px;
}

.tig-header-actions-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tig-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
}

.tig-menu a {
    font-size: 21px;
    font-weight: 500;
    color: #262626;
}

.tig-header-utility {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tig-search-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
}

.tig-search-link svg {
    width: 24px;
    height: 24px;
}

.tig-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 24px;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.tig-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.tig-button--brand {
    background: var(--tig-green);
    color: var(--tig-white);
}

.tig-button--secondary {
    padding-inline: 20px;
}

.tig-button--large {
    min-width: 220px;
    font-size: 22px;
    padding: 18px 34px;
    border-radius: 10px;
}

.tig-button--light {
    background: #f2f2ec;
    color: #202020;
    min-width: 170px;
    justify-content: space-between;
    padding: 14px 18px;
}

.tig-button__arrow {
    font-size: 30px;
    line-height: 0.8;
}

.tig-main {
    overflow: clip;
}

.tig-hero {
    position: relative;
    min-height: 600px;
}

.tig-hero__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.tig-hero__content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.tig-hero__copy {
    max-width: 520px;
    color: var(--tig-white);
    padding-block: 90px;
}

.tig-hero__copy h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0.02em;
}

.tig-hero__copy p {
    margin: 34px 0 18px;
    font-size: 27px;
    font-weight: 500;
}

.tig-hero__underline {
    display: block;
    width: 360px;
    max-width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

/* Hero slider */
.tig-hero-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.tig-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.tig-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tig-hero-slide__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tig-hero-slider .tig-hero__content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.tig-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.tig-hero-slider__arrow--prev {
    left: 24px;
}

.tig-hero-slider__arrow--next {
    right: 24px;
}

.tig-hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.tig-hero-slider__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}

.tig-hero-slider__dot.is-active {
    background: #ffffff;
}

.tig-location-strip {
    background: #fafafa;
    padding: 8px 0 10px;
    border-bottom: 1px solid #e8e8e8;
}

.tig-location-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.tig-location-strip {
    background: #fafafa;
    padding: 8px 0 10px;
    border-bottom: 1px solid #e8e8e8;
}

.tig-location-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.tig-location-pill {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: #20201E;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tig-location-pill:hover,
.tig-location-pill:focus {
    background: #00833E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.tig-location-pill__label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.tig-section {
    padding: 42px 0 18px;
}

.tig-section--products-page {
    padding-top: 52px;
    padding-bottom: 18px;
}

.tig-product-grid {
    display: grid;
    gap: 24px;
}

.tig-product-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.tig-product-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.tig-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(180deg, #0b8c46 0%, #0b6d3e 55%, #07532f 100%);
    box-shadow: var(--tig-shadow);
    min-height: 480px;
}

.tig-products-page .tig-product-card,
.tig-main--products .tig-product-card {
    min-height: 548px;
    border-radius: 10px;
}

.tig-product-card::before,
.tig-product-card::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.tig-product-card::before {
    width: 380px;
    height: 380px;
    right: -210px;
    bottom: -190px;
    border: 10px solid rgba(231, 209, 23, 0.9);
}

.tig-product-card::after {
    width: 320px;
    height: 320px;
    right: -160px;
    bottom: -160px;
    border: 8px solid rgba(27, 155, 71, 0.85);
}

.tig-card--home::before {
    top: -170px;
    right: -80px;
    bottom: auto;
}

.tig-card--home::after {
    top: -120px;
    right: -22px;
    bottom: auto;
}

.tig-card--life-person::before {
    border-color: rgba(31, 152, 88, 0.95);
}

.tig-card--life-person::after {
    border-color: rgba(11, 102, 64, 0.95);
}

.tig-product-card__image-wrap {
    height: 255px;
    position: relative;
    z-index: 2;
}

.tig-main--products .tig-product-card__image-wrap {
    height: 290px;
}

.tig-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tig-product-card__content {
    position: relative;
    z-index: 2;
    color: var(--tig-white);
    padding: 22px 24px 28px;
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 255px);
}

.tig-main--products .tig-product-card__content {
    min-height: calc(100% - 290px);
}

.tig-product-card__content h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}

.tig-product-card__content p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
}

.tig-product-card .tig-button {
    margin-top: auto;
    align-self: flex-start;
}

.tig-products-heading {
    text-align: center;
    margin-bottom: 44px;
}

.tig-products-heading h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(44px, 4vw, 74px);
    line-height: 1.04;
    font-weight: 800;
}

.tig-products-heading__subline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.tig-products-heading__subline span {
    width: 140px;
    height: 3px;
    background: rgba(10, 125, 68, 0.7);
}

.tig-products-heading__subline p {
    margin: 0;
    font-size: 28px;
    color: #3a3a3a;
}

/* FAQ accordion */
.tig-section--faq {
    padding: 26px 0 40px;
}

.tig-faq-box {
    background: #f1f4f0;
    border: 1px solid #d8ddd7;
    border-radius: 34px;
    padding: 26px 26px 20px;
}

.tig-faq-box__header {
    margin-bottom: 18px;
}

.tig-faq-box__header h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.tig-faq-box__header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #54657e;
}

.tig-faq-accordion {
    margin-top: 12px;
}

.tig-faq-item {
    border-top: 1px solid #d8ddd7;
}

.tig-faq-item:first-child {
    border-top: 0;
}

.tig-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: #0f172a;
}

.tig-faq-item summary::-webkit-details-marker {
    display: none;
}

.tig-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: var(--tig-green);
}

.tig-faq-item[open] summary::after {
    content: "−";
}

.tig-faq-answer {
    padding: 0 40px 18px 0;
}

.tig-faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.tig-cta-section {
    padding: 14px 0 36px;
}

.tig-cta-section--products {
    padding-top: 0;
}

.tig-cta-box {
    text-align: center;
    padding: 10px 0 28px;
}

.tig-cta-box--lines {
    position: relative;
}

.tig-cta-box--lines::before,
.tig-cta-box--lines::after {
    content: '';
    position: absolute;
    top: 30px;
    width: min(32%, 420px);
    height: 2px;
    background: #d8d8d8;
}

.tig-cta-box--lines::before {
    left: 0;
}

.tig-cta-box--lines::after {
    right: 0;
}

.tig-cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(44px, 4vw, 56px);
    color: var(--tig-green-dark);
    font-weight: 800;
}

.tig-cta-box p {
    margin: 0 0 24px;
    font-size: clamp(24px, 2.2vw, 30px);
    color: #313131;
}

.tig-site-footer {
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(6, 101, 58, 0.98) 0%, rgba(3, 66, 40, 1) 100%);
    color: var(--tig-white);
}

.tig-site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 28px;
    padding: 36px 0 28px;
}

.tig-footer-col h3 {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 800;
}

.tig-link-list,
.tig-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tig-link-list li,
.tig-contact-list li {
    margin-bottom: 14px;
    font-size: 18px;
}

.tig-link-list li::before {
    content: '▸';
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.tig-link-list--locations li::before {
    content: '•';
}

.tig-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tig-contact-list__icon {
    width: 24px;
    display: inline-flex;
    justify-content: center;
}

.tig-footer-col--image {
    display: flex;
    align-items: center;
}

.tig-footer-image-frame {
    width: 100%;
    max-width: 470px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.tig-footer-image-frame img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tig-site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    min-height: 96px;
    display: grid;
    grid-template-columns: 1.6fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0 24px;
}

.tig-footer-copy,
.tig-footer-meta {
    font-size: 18px;
}

.tig-footer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tig-social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tig-social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.tig-page-default__content {
    padding: 60px 0;
}

.tig-page-default__header h1 {
    margin-top: 0;
    font-size: clamp(36px, 4vw, 52px);
}

.tig-page-default__body {
    font-size: 18px;
    line-height: 1.65;
}

.tig-product-page {
    background: #ffffff;
}

.tig-product-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.tig-product-hero__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tig-product-hero__content {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.tig-product-hero__copy {
    max-width: 560px;
    color: #ffffff;
}

.tig-product-hero__copy h1 {
    margin: 0 0 18px;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 800;
}

.tig-product-hero__copy p {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1.45;
}

.tig-product-section {
    padding: 72px 0;
}

.tig-product-section--alt {
    background: #f7f7f7;
}

.tig-product-section__intro {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.tig-product-section__intro h2 {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.15;
    color: #0b8f3a;
}

.tig-product-section__intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

.tig-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.tig-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tig-feature-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #111827;
}

.tig-feature-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.65;
}

.tig-two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.tig-two-col__media img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.tig-two-col__content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.15;
    color: #0b8f3a;
}

.tig-check-list {
    margin: 0 0 28px;
    padding-left: 20px;
}

.tig-check-list li {
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.65;
}

.tig-product-cta {
    padding: 72px 0 90px;
    text-align: center;
}

.tig-product-cta h2 {
    margin: 0 0 14px;
    font-size: 42px;
    color: #0b8f3a;
}

.tig-product-cta p {
    margin: 0 0 26px;
    font-size: 20px;
    color: #374151;
}

.tig-main--products .tig-product-grid--four {
    align-items: stretch;
}

.tig-main--products .tig-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tig-main--products .tig-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.tig-main--products .tig-product-card__content {
    gap: 10px;
}

.tig-main--products .tig-product-card__content h3 {
    min-height: 64px;
}

.tig-main--products .tig-product-card__content p {
    min-height: 78px;
}

.tig-main--products .tig-product-card .tig-button {
    min-width: 190px;
}

.tig-main--products .tig-products-heading {
    margin-bottom: 52px;
}

.tig-main--products .tig-cta-box {
    padding-top: 22px;
}

.tig-primary-nav {
    display: flex;
    align-items: center;
}

.tig-menu,
.tig-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tig-menu > li {
    position: relative;
}

.tig-menu li a {
    display: block;
}

.tig-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tig-menu .menu-item-has-children > a::after {
    content: "▼";
    font-size: 11px;
    line-height: 1;
}

.tig-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    z-index: 9999;
}

.tig-menu .sub-menu li {
    width: 100%;
}

.tig-menu .sub-menu li a {
    padding: 10px 18px;
    white-space: nowrap;
    color: #111827;
    font-size: 15px;
}

.tig-menu .sub-menu li a:hover {
    background: #f3f4f6;
    color: #0B8F3A;
}

.tig-menu li:hover > .sub-menu,
.tig-menu li:focus-within > .sub-menu {
    display: block;
}

.tig-contact-main {
    padding: 72px 0;
    background: #f8faf8;
}

.tig-contact-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.tig-contact-info {
    display: grid;
    gap: 20px;
}

.tig-contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tig-contact-card h2,
.tig-contact-card h3 {
    margin: 0 0 12px;
    color: #0b8f3a;
}

.tig-contact-card p {
    margin: 0;
    color: #374151;
    line-height: 1.7;
}

.tig-contact-card a {
    color: #0b8f3a;
    text-decoration: none;
}

.tig-contact-card a:hover {
    text-decoration: underline;
}

.tig-contact-card--form {
    min-height: 100%;
}

.tig-contact-form-wrap .tig-contact-card {
    padding: 34px 30px;
}

.tig-contact-editor-content {
    margin-top: 24px;
}

.tig-contact-editor-content p {
    margin-bottom: 18px;
}

.tig-contact-editor-content input,
.tig-contact-editor-content textarea,
.tig-contact-editor-content select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
    background: #fff;
}

.tig-contact-editor-content textarea {
    min-height: 160px;
    resize: vertical;
}

.tig-contact-editor-content input[type="submit"],
.tig-contact-editor-content button,
.tig-contact-editor-content .wp-element-button {
    display: inline-block;
    width: auto;
    border: 0;
    border-radius: 999px;
    background: #0b8f3a;
    color: #ffffff;
    padding: 14px 24px;
    cursor: pointer;
}

.tig-contact-cta {
    background: #ffffff;
}

.tig-menu .sub-menu .menu-item-has-children {
    position: relative;
}

.tig-primary-nav,
.tig-main-nav {
    display: flex;
    align-items: center;
}

.tig-menu,
.tig-menu ul,
.tig-nav-menu,
.tig-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tig-menu > li,
.tig-nav-menu > li {
    position: relative;
}

.tig-menu li a,
.tig-nav-menu li a {
    display: block;
}

.tig-menu .menu-item-has-children > a,
.tig-nav-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tig-menu .menu-item-has-children > a::after,
.tig-nav-menu .menu-item-has-children > a::after {
    content: "▾";
    font-size: 16px;
    line-height: 1;
}

.tig-menu .sub-menu,
.tig-nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    z-index: 9999;
}

.tig-menu .sub-menu li,
.tig-nav-menu .sub-menu li {
    width: 100%;
}

.tig-menu .sub-menu li a,
.tig-nav-menu .sub-menu li a {
    padding: 10px 18px;
    white-space: nowrap;
    color: #111827;
    font-size: 15px;
}

.tig-menu .sub-menu li a:hover,
.tig-nav-menu .sub-menu li a:hover {
    background: #f3f4f6;
    color: #0B8F3A;
}

.tig-menu li:hover > .sub-menu,
.tig-menu li:focus-within > .sub-menu,
.tig-nav-menu li:hover > .sub-menu,
.tig-nav-menu li:focus-within > .sub-menu {
    display: block;
}

/* Mega Menu */

.tig-primary-nav--mega {
    position: relative;
    display: flex;
    align-items: center;
}

.tig-menu--mega {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tig-menu--mega > .tig-menu-item--mega {
    position: static;
}

.tig-menu--mega > .tig-menu-item--mega > .tig-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: #151515;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tig-menu--mega > .tig-menu-item--mega:hover > .tig-menu-link,
.tig-menu--mega > .tig-menu-item--mega:focus-within > .tig-menu-link {
    background: #f5f5f5;
    border-color: #d5d5d5;
}

.tig-mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(980px, calc(100vw - 96px));
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 9999;
}

.tig-menu--mega > .tig-menu-item--mega:hover > .tig-mega-menu,
.tig-menu--mega > .tig-menu-item--mega:focus-within > .tig-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.tig-mega-menu__panel {
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
    padding: 46px 40px 40px;
}

.tig-mega-menu__grid {
    display: grid;
    grid-template-columns: minmax(360px, 400px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.tig-mega-menu__primary {
    min-width: 0;
}

.tig-mega-menu__secondary {
    min-width: 0;
    padding-top: 16px;
}

.tig-mega-card {
    background: #edf0ea;
    border-radius: 20px;
    overflow: hidden;
}

.tig-mega-card__hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 24px 22px;
    background: #ffffff;
    border: 1px solid #9f9f9f;
    border-radius: 18px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}

.tig-mega-card__icon {
    width: 62px;
    min-width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
}

.tig-mega-card__icon svg {
    width: 54px;
    height: 54px;
}

.tig-mega-card__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tig-mega-card__title {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.tig-mega-card__subtitle {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #717171;
}

.tig-mega-card__list {
    list-style: none;
    margin: 0;
    padding: 20px 24px 22px;
}

.tig-mega-card__list li + li {
    margin-top: 16px;
}

.tig-mega-card__list a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
}

.tig-mega-card__list a:hover {
    text-decoration: underline;
}

.tig-mega-card__list-mark {
    width: 12px;
    min-width: 12px;
    height: 12px;
    margin-top: 4px;
    border-left: 2px solid #111111;
    border-bottom: 2px solid #111111;
    border-bottom-left-radius: 2px;
}

.tig-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tig-mega-links li + li {
    margin-top: 24px;
}

.tig-mega-links__item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #111111;
}

.tig-mega-links__item:hover .tig-mega-links__label {
    text-decoration: underline;
}

.tig-mega-links__icon {
    width: 68px;
    min-width: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
}

.tig-mega-links__svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tig-mega-links__svg svg {
    width: 44px;
    height: 44px;
}

.tig-mega-links__label {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #111111;
}

.tig-mega-plate {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 36px;
    padding: 4px 6px 3px;
    border: 2px solid #111111;
    border-radius: 6px;
    background: #ffffff;
    color: #111111;
    line-height: 1;
    text-align: center;
}

.tig-mega-plate__top {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.tig-mega-plate__bottom {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (max-width: 1280px) {
    .tig-menu {
        gap: 24px;
    }

    .tig-menu a {
        font-size: 18px;
    }

    .tig-product-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }

    .tig-site-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .tig-menu--mega {
        gap: 12px;
    }

    .tig-menu--mega > .tig-menu-item--mega > .tig-menu-link {
        font-size: 18px;
        padding: 10px 16px;
    }

    .tig-mega-menu {
        width: min(920px, calc(100vw - 56px));
    }

    .tig-mega-menu__panel {
        padding: 36px 28px 30px;
    }

    .tig-mega-menu__grid {
        grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
        gap: 28px;
    }
}

@media (max-width: 1199px) {
    .tig-product-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .tig-site-header__inner,
    .tig-header-actions-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tig-hero,
    .tig-hero__content {
        min-height: 520px;
    }

    .tig-location-strip__grid,
    .tig-product-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .tig-cta-box--lines::before,
    .tig-cta-box--lines::after {
        display: none;
    }

    .tig-site-footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .tig-menu .menu-item-has-children.open > .sub-menu,
    .tig-nav-menu .menu-item-has-children.open > .sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        background: #f9fafb;
        margin-top: 8px;
        border-radius: 8px;
    }

    .tig-primary-nav--mega {
        width: 100%;
        justify-content: center;
    }

    .tig-menu--mega {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tig-mega-menu {
        width: min(860px, calc(100vw - 40px));
    }

    .tig-mega-menu__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tig-mega-menu__secondary {
        padding-top: 0;
    }
}

@media (max-width: 991px) {
    .tig-hero-slider__arrow {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .tig-hero-slider__arrow--prev {
        left: 14px;
    }

    .tig-hero-slider__arrow--next {
        right: 14px;
    }

    .tig-product-hero__copy h1 {
        font-size: 48px;
    }

    .tig-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tig-two-col {
        grid-template-columns: 1fr;
    }

    .tig-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tig-container {
        width: min(calc(100% - 28px), var(--tig-container));
    }

    .tig-branding img,
    .custom-logo {
        height: 52px;
    }

    .tig-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 18px;
    }

    .tig-menu a {
        font-size: 17px;
    }

    .tig-header-utility {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tig-button {
        width: auto;
    }

    .tig-hero,
    .tig-hero__content {
        min-height: 430px;
    }

    .tig-hero__copy {
        padding-block: 54px;
    }

    .tig-hero__copy p {
        font-size: 22px;
    }

    .tig-hero-slider,
    .tig-hero-slider .tig-hero__content {
        min-height: 460px;
    }

    .tig-hero-slider__dots {
        bottom: 18px;
    }

    .tig-location-strip__grid,
    .tig-product-grid--three,
    .tig-product-grid--four,
    .tig-site-footer__top {
        grid-template-columns: 1fr;
    }

    .tig-location-pill {
        min-height: 68px;
        font-size: 20px;
    }

    .tig-location-pill--flag {
        aspect-ratio: 3 / 1;
    }

    .tig-location-pill__label {
        font-size: 18px;
    }

    .tig-product-card,
    .tig-main--products .tig-product-card {
        min-height: 450px;
    }

    .tig-product-card__image-wrap,
    .tig-main--products .tig-product-card__image-wrap {
        height: 240px;
    }

    .tig-product-card__content h3 {
        font-size: 30px;
    }

    .tig-product-card__content p,
    .tig-link-list li,
    .tig-contact-list li,
    .tig-footer-copy,
    .tig-footer-meta {
        font-size: 17px;
    }

    .tig-products-heading__subline {
        flex-direction: column;
        gap: 12px;
    }

    .tig-products-heading__subline span {
        width: 120px;
    }

    .tig-products-heading__subline p {
        font-size: 22px;
    }

    .tig-section--faq {
        padding: 20px 0 34px;
    }

    .tig-faq-box {
        border-radius: 24px;
        padding: 22px 18px 16px;
    }

    .tig-faq-box__header h2 {
        font-size: 24px;
    }

    .tig-faq-item summary {
        font-size: 17px;
        padding: 16px 0;
    }

    .tig-faq-item summary::after {
        font-size: 30px;
    }

    .tig-faq-answer {
        padding: 0 8px 16px 0;
    }

    .tig-cta-box h2 {
        font-size: 38px;
    }

    .tig-cta-box p {
        font-size: 22px;
    }

    .tig-button--large {
        width: 100%;
        max-width: 320px;
    }

    .tig-product-hero,
    .tig-product-hero__content {
        min-height: 460px;
    }

    .tig-product-hero__copy h1 {
        font-size: 38px;
    }

    .tig-product-hero__copy p {
        font-size: 19px;
    }

    .tig-product-section,
    .tig-product-cta {
        padding: 52px 0;
    }

    .tig-feature-grid {
        grid-template-columns: 1fr;
    }

    .tig-product-section__intro h2,
    .tig-two-col__content h2,
    .tig-product-cta h2 {
        font-size: 30px;
    }

    .tig-main--products .tig-product-card__content h3,
    .tig-main--products .tig-product-card__content p {
        min-height: auto;
    }

    .tig-main--products .tig-product-card .tig-button {
        width: 100%;
    }

    .tig-contact-main {
        padding: 52px 0;
    }

    .tig-contact-form-wrap .tig-contact-card,
    .tig-contact-card {
        padding: 24px 20px;
    }

    .tig-primary-nav--mega {
        width: 100%;
    }

    .tig-menu--mega {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .tig-menu--mega > .tig-menu-item--mega {
        position: relative;
        width: 100%;
    }

    .tig-menu--mega > .tig-menu-item--mega > .tig-menu-link {
        width: 100%;
        justify-content: space-between;
        padding: 14px 18px;
        border: 1px solid #dedede;
        border-radius: 14px;
        background: #ffffff;
        font-size: 17px;
    }

    .tig-menu--mega > .tig-menu-item--mega > .tig-menu-link::after {
        content: "▾";
        font-size: 16px;
        line-height: 1;
    }

    .tig-mega-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .tig-menu--mega > .tig-menu-item--mega:hover > .tig-mega-menu,
    .tig-menu--mega > .tig-menu-item--mega:focus-within > .tig-mega-menu {
        display: block;
    }

    .tig-mega-menu__panel {
        padding: 18px;
        border-radius: 20px;
    }

    .tig-mega-card__hero {
        padding: 18px;
    }

    .tig-mega-card__icon {
        width: 52px;
        min-width: 52px;
        height: 52px;
    }

    .tig-mega-card__icon svg {
        width: 42px;
        height: 42px;
    }

    .tig-mega-card__title {
        font-size: 18px;
    }

    .tig-mega-card__subtitle,
    .tig-mega-card__list a,
    .tig-mega-links__label {
        font-size: 15px;
    }

    .tig-mega-card__list {
        padding: 18px;
    }

    .tig-mega-links li + li {
        margin-top: 18px;
    }

    .tig-mega-links__icon {
        width: 56px;
        min-width: 56px;
    }

    .tig-mega-links__svg svg {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 1024px) {
    .tig-location-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tig-location-strip__grid {
        grid-template-columns: 1fr;
    }

    .tig-location-pill--flag {
        aspect-ratio: 3 / 1;
    }

    .tig-location-pill__label {
        font-size: 18px;
    }
}

/* =========================================================
   CAREERS PAGE
   File: tig-theme.css
   ========================================================= */

.tig-careers-page {
    background: #f6f8f7;
}

.tig-careers-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(2, 35, 24, 0.88) 0%, rgba(5, 83, 52, 0.72) 45%, rgba(5, 83, 52, 0.34) 72%, rgba(5, 83, 52, 0.12) 100%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tig-careers-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 96px 0;
}

.tig-careers-hero__content {
    max-width: 700px;
}

.tig-careers-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tig-careers-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    color: #fff;
}

.tig-careers-hero p {
    margin: 0 0 26px;
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.94);
}

.tig-careers-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tig-careers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tig-careers-btn--primary {
    background: #ffffff;
    color: #055734;
}

.tig-careers-btn--primary:hover {
    background: #f0f4f2;
    color: #043f28;
}

.tig-careers-btn--ghost {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.tig-careers-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.tig-careers-section {
    padding: 72px 0;
}

.tig-careers-section--tight {
    padding-top: 52px;
}

.tig-careers-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.tig-careers-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    color: #16342a;
}

.tig-careers-heading p {
    margin: 0;
    color: #586963;
    line-height: 1.8;
}

.tig-careers-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.tig-careers-benefit {
    background: #fff;
    border: 1px solid #e4ebe7;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 16px 40px rgba(20, 45, 34, 0.06);
}

.tig-careers-benefit__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #e9f4ee;
    color: #055734;
    font-size: 1.1rem;
    font-weight: 800;
}

.tig-careers-benefit h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #16342a;
}

.tig-careers-benefit p {
    margin: 0;
    line-height: 1.7;
    color: #5b6c66;
}

.tig-careers-openings {
    display: grid;
    gap: 26px;
}

.tig-job-card {
    background: #fff;
    border: 1px solid #e4ebe7;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(20, 45, 34, 0.07);
    overflow: hidden;
}

.tig-job-card__top {
    padding: 28px 28px 22px;
}

.tig-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.tig-job-card__pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eef5f1;
    color: #1c4a39;
    font-size: 0.9rem;
    font-weight: 700;
}

.tig-job-card h3 {
    margin: 0 0 12px;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: #16342a;
}

.tig-job-card__summary {
    margin: 0 0 18px;
    line-height: 1.8;
    color: #556761;
}

.tig-job-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tig-job-card details {
    border-top: 1px solid #edf2ef;
    background: #fbfcfb;
}

.tig-job-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 28px;
    font-weight: 700;
    color: #055734;
}

.tig-job-card summary::-webkit-details-marker {
    display: none;
}

.tig-job-card summary span:last-child {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e9f4ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.tig-job-card details[open] summary span:last-child {
    transform: rotate(45deg);
}

.tig-job-card__content {
    padding: 0 28px 28px;
}

.tig-job-card__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.tig-job-card__block h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #16342a;
}

.tig-job-card__block p {
    margin: 0 0 14px;
    line-height: 1.8;
    color: #566763;
}

.tig-job-card__block ul {
    margin: 0;
    padding-left: 20px;
    color: #566763;
}

.tig-job-card__block li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.tig-careers-apply {
    background: linear-gradient(135deg, #055734 0%, #0a6b43 100%);
    color: #fff;
    border-radius: 30px;
    padding: 38px 32px;
    box-shadow: 0 20px 48px rgba(5, 87, 52, 0.18);
}

.tig-careers-apply h2 {
    margin: 0 0 12px;
    color: #fff;
}

.tig-careers-apply p {
    margin: 0 0 18px;
    max-width: 760px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.tig-careers-email {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .tig-careers-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tig-job-card__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tig-careers-hero {
        min-height: auto;
    }

    .tig-careers-hero__inner,
    .tig-careers-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .tig-careers-benefits {
        grid-template-columns: 1fr;
    }

    .tig-job-card__top,
    .tig-job-card summary,
    .tig-job-card__content,
    .tig-careers-apply {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* TISA Medical Promotional Landing Page */

.tig-medical-promo-page {
    background: var(--tig-off-white, #f7f7f5);
}

.tig-medical-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(4, 63, 40, 0.95), rgba(10, 125, 68, 0.9)),
        url("../images/medical-hero-placeholder.jpg");
    background-size: cover;
    background-position: center;
    color: var(--tig-white, #ffffff);
}

.tig-medical-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(227, 207, 28, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent);
    pointer-events: none;
}

.tig-medical-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 42px;
    align-items: center;
    min-height: 620px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.tig-medical-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tig-medical-hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 88px);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.tig-medical-hero__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.65;
}

.tig-medical-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.tig-medical-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tig-medical-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.tig-medical-btn--primary {
    background: var(--tig-yellow, #e3cf1c);
    color: var(--tig-green-deep, #043f28);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.tig-medical-btn--secondary {
    background: var(--tig-white, #ffffff);
    color: var(--tig-green-deep, #043f28);
}

.tig-medical-btn--youtube {
    background: #111111;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.tig-medical-hero__card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.tig-medical-hero__card h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 30px;
}

.tig-medical-cover-list {
    display: grid;
    gap: 16px;
}

.tig-medical-cover-list div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
}

.tig-medical-cover-list span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--tig-yellow, #e3cf1c);
    color: var(--tig-green-deep, #043f28);
    font-size: 13px;
    font-weight: 800;
}

.tig-medical-cover-list strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.tig-medical-cover-list p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.tig-medical-alert {
    max-width: 620px;
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
}

.tig-medical-alert--success {
    background: rgba(255, 255, 255, 0.94);
    color: var(--tig-green-deep, #043f28);
}

.tig-medical-alert--error {
    background: #ffe8e8;
    color: #8a1515;
}

.tig-medical-info {
    padding: 72px 0;
}

.tig-medical-info__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.tig-medical-info-card {
    padding: 34px;
    border: 1px solid var(--tig-border, #dedede);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--tig-shadow, 0 10px 24px rgba(0, 0, 0, 0.08));
}

.tig-medical-info-card h2 {
    margin: 0 0 14px;
    color: var(--tig-green-deep, #043f28);
    font-size: 28px;
}

.tig-medical-info-card p {
    margin: 0;
    color: var(--tig-muted, #5f5f5f);
    line-height: 1.7;
}

.tig-medical-contact-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tig-medical-contact-list li {
    margin-bottom: 8px;
    color: var(--tig-text, #202020);
}

.tig-medical-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.tig-medical-modal.is-open {
    display: flex;
}

.tig-medical-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.tig-medical-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: 92vh;
    overflow: auto;
    padding: 34px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.tig-medical-modal__panel h2 {
    margin: 0 0 8px;
    color: var(--tig-green-deep, #043f28);
    font-size: 32px;
}

.tig-medical-modal__panel p {
    margin: 0 0 22px;
    color: var(--tig-muted, #5f5f5f);
}

.tig-medical-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--tig-off-white, #f7f7f5);
    color: var(--tig-green-deep, #043f28);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.tig-medical-form {
    display: grid;
    gap: 16px;
}

.tig-medical-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tig-medical-form__field label {
    display: block;
    margin-bottom: 7px;
    color: var(--tig-text, #202020);
    font-weight: 700;
}

.tig-medical-form__field input,
.tig-medical-form__field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--tig-border, #dedede);
    border-radius: 14px;
    background: #ffffff;
    color: var(--tig-text, #202020);
    font: inherit;
}

.tig-medical-form__field input:focus,
.tig-medical-form__field textarea:focus {
    outline: 3px solid rgba(10, 125, 68, 0.16);
    border-color: var(--tig-green, #0a7d44);
}

.tig-medical-form__hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.tig-medical-form__submit {
    width: fit-content;
    margin-top: 6px;
}

.tig-medical-modal__panel--video {
    width: min(100%, 980px);
    padding: 18px;
    background: #111111;
}

.tig-medical-video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 18px;
    background: #000000;
}

.tig-medical-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tig-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .tig-medical-hero__content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .tig-medical-info__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tig-medical-actions {
        flex-direction: column;
    }

    .tig-medical-btn {
        width: 100%;
    }

    .tig-medical-form__row {
        grid-template-columns: 1fr;
    }

    .tig-medical-modal__panel {
        padding: 26px 20px;
    }

    .tig-medical-hero__card,
    .tig-medical-info-card {
        padding: 24px;
    }
    
    .tig-medical-contact-list a {
    color: var(--tig-green, #0a7d44);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    }
    
    .tig-medical-contact-list a:hover,
    .tig-medical-contact-list a:focus {
        color: var(--tig-green-deep, #043f28);
    }
}
