/* Supreme Golden Elementor Native Widgets */
.sgn-hero,
.sgn-quote-card,
.sgn-service-menu,
.sgn-info-box,
.sgn-overview,
.sgn-benefits,
.sgn-list-card,
.sgn-process-card,
.sgn-faq-card,
.sgn-cta,
.sgn-stats {
    box-sizing: border-box;
    font-family: inherit;
}

.sgn-hero *,
.sgn-quote-card *,
.sgn-service-menu *,
.sgn-info-box *,
.sgn-overview *,
.sgn-benefits *,
.sgn-list-card *,
.sgn-process-card *,
.sgn-faq-card *,
.sgn-cta *,
.sgn-stats * {
    box-sizing: border-box;
}

/* Hero */
.sgn-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 570px;
    color: #fff;
}

.sgn-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.86) 42%, rgba(0,0,0,.30) 72%, rgba(0,0,0,.08) 100%);
}

.sgn-hero:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 390px;
    height: 390px;
    border: 2px solid rgba(212,160,23,.55);
    transform: rotate(45deg);
    pointer-events: none;
}

.sgn-hero-inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 78px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sgn-hero-copy {
    max-width: 58%;
}

.sgn-hero-badge {
    color: #d4a017;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sgn-hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(42px, 5.1vw, 72px);
    line-height: .98;
    letter-spacing: -.035em;
    font-weight: 900;
    text-transform: uppercase;
}

.sgn-hero-title .plain { color: #fff; }
.sgn-hero-title .gold { color: #d4a017; }

.sgn-hero-subtitle {
    margin-top: 20px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: #f4f4f4;
}

.sgn-hero-features {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sgn-hero-feature {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.sgn-hero-feature .sgn-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #d4a017;
    font-size: 14px;
}

.sgn-hero-actions {
    margin-top: 28px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 14px;
}

.sgn-primary-btn,
.sgn-call-btn,
.sgn-info-button,
.sgn-cta-button,
.sgn-cta-phone {
    text-decoration: none !important;
}

.sgn-primary-btn {
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #d4a017;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.sgn-primary-btn:hover {
    background: #b9850a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.sgn-call-btn {
    min-height: 58px;
    padding: 8px 20px;
    border: 1px solid #d4a017;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    background: rgba(0,0,0,.34);
    transition: background .25s ease, transform .25s ease;
}

.sgn-call-btn:hover {
    color: #fff;
    background: rgba(0,0,0,.68);
    transform: translateY(-2px);
}

.sgn-call-btn > i { color: #d4a017; font-size: 21px; }
.sgn-call-btn span { display: flex; flex-direction: column; line-height: 1.15; }
.sgn-call-btn small { font-size: 9px; letter-spacing: .08em; opacity: .85; }
.sgn-call-btn strong { margin-top: 4px; font-size: 15px; }

.sgn-rating-card {
    align-self: flex-start;
    min-width: 155px;
    margin-top: 0;
    padding: 18px 18px;
    text-align: center;
    background: rgba(10,10,10,.84);
    border: 1px solid rgba(212,160,23,.78);
    border-radius: 12px;
    backdrop-filter: blur(7px);
    box-shadow: 0 14px 38px rgba(0,0,0,.25);
}

.sgn-rating-card small {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.sgn-rating-card .sgn-stars {
    margin: 7px 0;
    color: #d4a017;
    font-size: 17px;
    letter-spacing: 2px;
}

.sgn-rating-card span {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    color: #e6e6e6;
}

/* Shared card animation */
.sgn-quote-card,
.sgn-service-menu,
.sgn-info-box,
.sgn-overview,
.sgn-benefit-card,
.sgn-list-card,
.sgn-process-card,
.sgn-faq-card,
.sgn-cta,
.sgn-stats {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.sgn-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(15,15,15,.08);
    border-color: rgba(212,160,23,.45);
}

/* Quote form */
.sgn-quote-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15,15,15,.06);
}

.sgn-quote-heading {
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0a0a0a;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
}

.sgn-quote-heading i { color: #d4a017; }
.sgn-quote-form { padding: 16px; }

.sgn-field {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 0 11px;
    min-height: 45px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
}

.sgn-field-icon {
    width: 17px;
    flex: 0 0 17px;
    margin-top: 14px;
    color: #111;
    font-size: 12px;
    text-align: center;
}

.sgn-field input,
.sgn-field select,
.sgn-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 43px;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #222;
    font: inherit;
    font-size: 13px;
}

.sgn-field textarea {
    padding-top: 12px !important;
    min-height: 78px;
    resize: vertical;
}

.sgn-submit {
    width: 100%;
    min-height: 48px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    border-radius: 6px;
    background: #d4a017;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.sgn-submit:hover { background: #b9850a; transform: translateY(-1px); }
.sgn-submit[disabled] { opacity: .65; cursor: wait; }
.sgn-form-status { display: none; margin-top: 10px; font-size: 12px; line-height: 1.45; }
.sgn-form-status.is-success { display: block; color: #16843f; }
.sgn-form-status.is-error { display: block; color: #b42318; }

/* Sidebar menu */
.sgn-service-menu {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15,15,15,.06);
}

.sgn-service-heading {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.sgn-service-item {
    position: relative;
    min-height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #1a1a1a;
    text-decoration: none !important;
    border-top: 1px solid #eee;
    font-size: 13px;
    transition: background .22s ease, color .22s ease, padding-left .22s ease;
}

.sgn-service-item .sgn-icon {
    width: 20px;
    display: grid;
    place-items: center;
    color: #111;
    font-size: 13px;
}

.sgn-service-item > span:not(.sgn-icon) { flex: 1; }
.sgn-service-arrow { font-size: 10px; opacity: .7; }
.sgn-service-item:hover { color: #111; background: #fff8e7; padding-left: 20px; }
.sgn-service-item.is-active { background: #d4a017; color: #fff; border-top-color: transparent; }
.sgn-service-item.is-active .sgn-icon { color: #fff; }
.sgn-service-item.is-active:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0a0a0a;
}

/* Generic info box */
.sgn-info-box {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: #0a0a0a;
    color: #fff;
    border-radius: 16px;
    border: 1px solid rgba(212,160,23,.4);
    box-shadow: 0 10px 28px rgba(15,15,15,.08);
}

.sgn-info-box:after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(212,160,23,.18);
}

.sgn-info-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(212,160,23,.12);
    color: #d4a017;
    font-size: 21px;
    margin-bottom: 15px;
}

.sgn-info-title { position: relative; z-index: 1; color: #fff; font-weight: 900; font-size: 16px; line-height: 1.3; }
.sgn-info-description { position: relative; z-index: 1; margin-top: 8px; color: #e5e5e5; font-size: 13px; line-height: 1.6; }
.sgn-info-secondary { position: relative; z-index: 1; margin-top: 13px; color: #d4a017; font-size: 20px; font-weight: 900; }
.sgn-info-button {
    position: relative;
    z-index: 1;
    margin-top: 17px;
    min-height: 46px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 6px;
    background: #d4a017;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: transform .22s ease, filter .22s ease;
}
.sgn-info-button:hover { color: #fff; filter: brightness(.93); transform: translateY(-2px); }

/* Overview */
.sgn-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr);
    gap: 28px;
    align-items: stretch;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15,15,15,.05);
}

.sgn-overview-copy { padding: 5px 0; }
.sgn-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4a017;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.sgn-kicker span { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.sgn-overview-title { margin: 10px 0 12px; color: #111; font-size: clamp(25px, 2.4vw, 38px); line-height: 1.12; font-weight: 900; letter-spacing: -.025em; }
.sgn-overview-description { color: #444; font-size: 14px; line-height: 1.75; }
.sgn-overview-list { list-style: none; margin: 18px 0 0 !important; padding: 0 !important; display: grid; gap: 9px; color: #444; }
.sgn-overview-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.5; }
.sgn-overview-list i { color: #d4a017; margin-top: 3px; }
.sgn-overview-image { position: relative; min-height: 320px; overflow: hidden; border-radius: 14px; }
.sgn-overview-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; border-radius: 14px; }
.sgn-target-ring {
    position: absolute;
    left: 25px;
    bottom: 22px;
    width: 92px;
    height: 92px;
    border: 5px solid #fff;
    outline: 5px solid #d4a017;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.85);
    color: #b62418;
    font-size: 42px;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* Benefits */
.sgn-benefits { width: 100%; }
.sgn-section-heading {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #111;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .02em;
    text-align: center;
}
.sgn-section-heading:before,
.sgn-section-heading:after { content: ""; width: 42px; height: 2px; background: #d4a017; }
.sgn-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.sgn-benefit-card {
    min-height: 215px;
    padding: 24px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
}
.sgn-benefit-icon { width: 62px; height: 62px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: #fff7e4; color: #d4a017; font-size: 24px; }
.sgn-benefit-card h3 { margin: 0 0 8px; color: #111; font-size: 15px; font-weight: 800; line-height: 1.3; }
.sgn-benefit-card p { margin: 0; color: #555; font-size: 12.5px; line-height: 1.65; }

/* List card */
.sgn-list-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15,15,15,.05);
}
.sgn-list-title { margin: 0 0 12px; color: #111; font-size: 15px; font-weight: 900; line-height: 1.35; }
.sgn-list-description { margin-bottom: 12px; color: #444; font-size: 13px; line-height: 1.6; }
.sgn-list-items { position: relative; z-index: 1; list-style: none; margin: 0 !important; padding: 0 !important; display: grid; gap: 10px; }
.sgn-list-item { display: flex; align-items: flex-start; gap: 9px; color: #444; font-size: 13px; line-height: 1.5; }
.sgn-list-item .sgn-icon { color: #d4a017; margin-top: 2px; flex: 0 0 16px; }
.sgn-list-image { position: absolute; right: -30px; bottom: -25px; width: 190px; opacity: .13; pointer-events: none; }
.sgn-list-image img { width: 100%; height: auto; display: block; }

/* Process */
.sgn-process-card {
    width: 100%;
    min-height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15,15,15,.05);
}
.sgn-process-title { margin: 0 0 20px; color: #111; font-size: 15px; font-weight: 900; line-height: 1.35; }
.sgn-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.sgn-process-item { position: relative; min-width: 0; }
.sgn-process-item:not(:last-child):after {
    content: "";
    position: absolute;
    top: 29px;
    right: -12px;
    width: 25px;
    border-top: 1px dashed #aaa;
}
.sgn-process-top { position: relative; display: inline-flex; align-items: center; margin-bottom: 12px; }
.sgn-process-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #e6e6e6; border-radius: 50%; color: #d4a017; font-size: 20px; background: #fff; }
.sgn-step-number { position: absolute; right: -5px; bottom: -2px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: #d4a017; color: #fff; font-size: 10px; font-weight: 900; border: 2px solid #fff; }
.sgn-process-item h4 { margin: 0 0 7px; color: #111; font-size: 13px; line-height: 1.35; font-weight: 800; }
.sgn-process-item p { margin: 0; color: #555; font-size: 12px; line-height: 1.55; }

/* FAQ */
.sgn-faq-card { width: 100%; padding: 28px; background: #fff; border: 1px solid #ececec; border-radius: 16px; box-shadow: 0 10px 28px rgba(15,15,15,.05); }
.sgn-faq-title { margin: 0 0 16px; color: #111; font-size: 15px; font-weight: 900; }
.sgn-faq-items { display: grid; gap: 9px; }
.sgn-faq-item { overflow: hidden; border: 1px solid #e7e7e7; border-radius: 8px; }
.sgn-faq-question { width: 100%; min-height: 46px; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; gap: 15px; background: #fafafa; color: #222; border: 0; text-align: left; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.sgn-faq-plus { color: #d4a017; font-size: 19px; font-style: normal; font-weight: 500; transition: transform .25s ease; }
.sgn-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; color: #555; font-size: 13px; line-height: 1.65; }
.sgn-faq-answer > div { overflow: hidden; padding: 0 15px; transition: padding .28s ease; }
.sgn-faq-item.is-open .sgn-faq-answer { grid-template-rows: 1fr; }
.sgn-faq-item.is-open .sgn-faq-answer > div { padding: 13px 15px 15px; }
.sgn-faq-item.is-open .sgn-faq-plus { transform: rotate(45deg); }

/* CTA */
.sgn-cta {
    position: relative;
    overflow: hidden;
    padding: 25px 28px;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto auto;
    align-items: center;
    gap: 18px;
    border-radius: 14px;
    background: #080808;
    color: #fff;
    box-shadow: 0 13px 34px rgba(0,0,0,.12);
}
.sgn-cta:after { content: ""; position: absolute; right: -70px; top: -120px; width: 230px; height: 230px; border-radius: 50%; border: 1px solid rgba(212,160,23,.24); pointer-events: none; }
.sgn-cta-icon { position: relative; z-index: 1; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #d4a017; border-radius: 50%; color: #d4a017; font-size: 20px; }
.sgn-cta-copy { position: relative; z-index: 1; min-width: 0; }
.sgn-cta-title { color: #fff; font-size: 16px; font-weight: 900; line-height: 1.3; }
.sgn-cta-text { margin-top: 4px; color: #ddd; font-size: 12px; line-height: 1.5; }
.sgn-cta-button { position: relative; z-index: 1; min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border-radius: 7px; background: #d4a017; color: #fff; font-size: 12px; font-weight: 800; white-space: nowrap; transition: transform .22s ease, filter .22s ease; }
.sgn-cta-button:hover { color: #fff; filter: brightness(.94); transform: translateY(-2px); }
.sgn-cta-phone { position: relative; z-index: 1; min-height: 48px; padding: 6px 15px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid #d4a017; border-radius: 7px; color: #fff; white-space: nowrap; }
.sgn-cta-phone:hover { color: #fff; }
.sgn-cta-phone > i { color: #d4a017; }
.sgn-cta-phone span { display: flex; flex-direction: column; line-height: 1.1; }
.sgn-cta-phone small { font-size: 8px; opacity: .8; }
.sgn-cta-phone strong { margin-top: 4px; font-size: 13px; }

/* Stats */
.sgn-stats { padding: 20px 10px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); align-items: stretch; background: #fff; border-radius: 12px; }
.sgn-stat-item { padding: 7px 18px; display: flex; align-items: center; justify-content: center; gap: 12px; border-right: 1px solid #e8e8e8; }
.sgn-stat-item:last-child { border-right: 0; }
.sgn-stat-icon { color: #d4a017; font-size: 23px; }
.sgn-stat-value { color: #111; font-size: 18px; font-weight: 900; line-height: 1.15; }
.sgn-stat-label { margin-top: 3px; color: #666; font-size: 10px; line-height: 1.25; }

@media (max-width: 1024px) {
    .sgn-hero-copy { max-width: 68%; }
    .sgn-hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sgn-overview { grid-template-columns: 1fr; }
    .sgn-overview-image { min-height: 300px; }
    .sgn-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sgn-process-item:not(:last-child):after { display: none; }
    .sgn-cta { grid-template-columns: auto 1fr auto; }
    .sgn-cta-phone { grid-column: 2 / 4; width: max-content; }
    .sgn-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sgn-stat-item:nth-child(2) { border-right: 0; }
    .sgn-stat-item:nth-child(-n+2) { border-bottom: 1px solid #e8e8e8; }
}

@media (max-width: 767px) {
    .sgn-hero { min-height: 640px; background-position: 62% center; }
    .sgn-hero:before { background: linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.82) 63%, rgba(0,0,0,.52) 100%) !important; }
    .sgn-hero-inner { padding: 55px 22px; align-items: flex-end; }
    .sgn-hero-copy { max-width: 100% !important; }
    .sgn-hero-title { font-size: clamp(38px, 12vw, 58px); }
    .sgn-hero-subtitle { font-size: 15px; }
    .sgn-hero-features { grid-template-columns: 1fr 1fr; }
    .sgn-hero-actions { display: grid; grid-template-columns: 1fr; }
    .sgn-primary-btn, .sgn-call-btn { width: 100%; }
    .sgn-rating-card { display: none; }
    .sgn-overview { padding: 20px; gap: 20px; }
    .sgn-overview-image, .sgn-overview-image img { min-height: 240px; }
    .sgn-benefit-grid { grid-template-columns: 1fr; }
    .sgn-process-grid { grid-template-columns: 1fr; }
    .sgn-cta { padding: 22px; grid-template-columns: 1fr; text-align: center; }
    .sgn-cta-icon { margin: 0 auto; }
    .sgn-cta-button, .sgn-cta-phone { grid-column: auto; width: 100%; justify-content: center; }
    .sgn-stats { grid-template-columns: 1fr 1fr; }
    .sgn-stat-item { padding: 12px 8px; flex-direction: column; text-align: center; }
}
