:root {
    --primary: #18ad72;
    --primary-dark: #087c62;
    --primary-aqua: #57c7d4;
    --primary-soft: rgba(24, 173, 114, 0.12);
    --bg: #f7f8f4;
    --surface: #ffffff;
    --surface-soft: #edf7f2;
    --text: #172d35;
    --text-soft: #64777b;
    --border: rgba(23, 45, 53, 0.1);
    --shadow: 0 14px 35px rgba(20, 48, 52, 0.09);
    --muted: #78888a;
    --orange: #f2994a;
    --blue: #2e7df6;
    --purple: #a05bd8;
    --yellow: #f3c72d;
    --green: #27ae60;
    --dark: #101a31;
    --white: #ffffff;
    --montserrat: "Plus Jakarta Sans", sans-serif;
    --manrope: "Manrope", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--manrope);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.section-space {
    padding: 90px 0;
}

.soft-surface {
    background: #f6faf7;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    margin-bottom: 30px;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-grid,
.three-col-grid,
.pricing-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-col-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.info-card,
.pricing-card,
.contact-panel,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 26px 22px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.feature-card h3,
.info-card h3,
.pricing-card h3 {
    margin-bottom: 10px;
}

.feature-card p,
.info-card p,
.faq-item p,
.story-grid p,
.pricing-card p,
.contact-card li,
.contact-card a,
.contact-form label span {
    color: var(--text-soft);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(135deg, rgba(27, 184, 109, 0.08), rgba(255,255,255,0.94));
    border: 1px solid rgba(27, 184, 109, 0.12);
    border-radius: 30px;
    padding: 26px 30px;
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    font-size: clamp(1.7rem, 2vw, 2.5rem);
}

.page-main {
    min-height: 50vh;
}

.inner-hero {
    padding: 84px 0 56px;
    background:
        radial-gradient(circle at 88% 24%, rgba(87, 199, 212, 0.22), transparent 24%),
        linear-gradient(115deg, #101d38 0%, #14213d 46%, #087c62 100%);
    color: #ffffff;
}

.breadcrumb-wrap {
    margin-bottom: 32px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.inner-hero .breadcrumb,
.inner-hero .breadcrumb strong {
    color: #d8e3f3;
}

.inner-hero .breadcrumb span {
    color: var(--primary-aqua);
}

.inner-hero .eyebrow {
    color: var(--primary-aqua);
}

.inner-hero h1 {
    color: #ffffff;
}

.inner-hero p {
    color: #bdcbe0;
}

.breadcrumb span {
    color: var(--primary-aqua);
}

.breadcrumb strong {
    color: var(--text);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.small-hero {
    padding-top: 70px;
    padding-bottom: 54px;
}

.small-hero p{
    margin-top: 20px;
    color: white !important;
}

.inner-hero .narrow,
.story-grid,
.contact-grid {
    max-width: 1180px;
}

.narrow {
    max-width: 780px;
    margin: 0 auto;
}

.center-text {
    text-align: center;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: center;
}

.info-card {
    padding: 28px 24px;
}

.card-index {
    display: inline-block;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.nav-dropdown {
    position: relative;
}

.nav-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 20px;
    width: min(620px, 72vw);
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.has-menu:hover .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.menu-column a {
    color: var(--text-soft);
    font-weight: 600;
}

.catalog-page {
    padding: 54px 0 80px;
}

.category-group {
    margin-bottom: 54px;
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 286px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 24px rgba(15, 38, 29, 0.04);
}

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 7px 10px;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--text-soft);
    min-height: 78px;
    margin-bottom: 16px;
}

.tool-detail-card .btn-small {
    align-self: flex-start;
    margin-top: auto;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    font-weight: 800;
    color: var(--primary-dark);
}

.billing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.billing-toggle {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px;
    box-shadow: var(--shadow);
}

.billing-option {
    background: transparent;
    border: 0;
    min-width: 110px;
    min-height: 42px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 800;
    cursor: pointer;
}

.billing-option.active {
    background: var(--primary);
    color: var(--white);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    padding: 26px 22px;
    position: relative;
}

.featured-plan {
    background: linear-gradient(180deg, rgba(27, 184, 109, 0.06), #ffffff 35%);
    border-color: rgba(27, 184, 109, 0.2);
}

.plan-badge,
.plan-name {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.pricing-card h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    letter-spacing: -0.06em;
}

.pricing-card h3 small {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0 26px;
    color: var(--text-soft);
}

.pricing-card li::before {
    content: "✓";
    color: var(--primary-dark);
    font-weight: 800;
    margin-right: 10px;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 22px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.contact-panel,
.contact-card {
    padding: 28px 24px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 18px;
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    display: grid;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f9fbfa;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
}

.contact-card h3 {
    margin-bottom: 14px;
}

.contact-card ul {
    list-style: none;
    display: grid;
    gap: 16px;
}

.contact-card li {
    display: flex;
    align-items: start;
    gap: 12px;
}

.contact-card i {
    color: var(--primary);
    margin-top: 5px;
}

.btn-primary-light {
    background: rgba(27,184,109,0.06);
    border-color: rgba(27,184,109,0.18);
    color: var(--primary-dark);
}

.btn-primary-light:hover {
    background: rgba(27,184,109,0.12);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--montserrat);
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    /* letter-spacing: -0.06em; */
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    max-height: 52px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.92rem;
}

.main-nav a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary,
.btn-primary-header {
    background: linear-gradient(110deg, var(--primary), var(--primary-aqua));
    color: var(--white);
    box-shadow: 0 12px 20px rgba(27, 184, 109, 0.18);
}

.btn-primary:hover,
.btn-primary-header:hover {
    transform: translateY(-1px);
}

.btn-secondary-light {
    background: var(--surface);
    border-color: rgba(26, 46, 39, 0.08);
    color: var(--text);
}

.btn-secondary-light:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    border-radius: 2px;
}

.store-hero {
    padding: 100px 0 100px;
    background:
        radial-gradient(circle at 80% 18%, rgba(87, 199, 212, 0.22), transparent 30%),
        linear-gradient(135deg, #fbfdf9 0%, #eaf8f1 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: clamp(2.7rem, 4vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
    max-width: 700px;
}

.hero-copy p {
    color: var(--text-soft);
    font-size: 1.08rem;
    max-width: 680px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-side {
    display: flex;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1.15;
    border-radius: 30px;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    box-shadow: 0 24px 60px rgba(24, 173, 114, 0.2);
    transform: rotate(2deg);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(87, 199, 212, 0.26);
    border-radius: 30px;
    z-index: -1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    filter: saturate(0.85) contrast(1.04);
}

.visual-overlay {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 28px rgba(16, 45, 43, 0.15);
    transform: rotate(-2deg);
}

.visual-stat {
    left: -26px;
    bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 9px;
    border-radius: 16px;
    padding: 15px 18px;
}

.visual-stat strong {
    font-size: 2.2rem;
    letter-spacing: -0.06em;
    color: var(--text);
}

.visual-stat span,
.visual-status span:last-child {
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 700;
}

.visual-status {
    top: 22px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    padding: 11px 15px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(24, 173, 114, 0.13);
}

.signal-strip {
    background: #14213d;
    color: #e0eaff;
    padding: 18px 0;
}

.signal-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.signal-items i {
    color: var(--primary-aqua);
    margin-right: 7px;
}

.tutorial-section {
    background: #ffffff;
}

.tutorial-grid,
.inner-hero-grid,
.pricing-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.tutorial-media {
    position: relative;
    min-height: 410px;
    border-radius: 28px;
    overflow: hidden;
    background: #14213d;
    box-shadow: 0 22px 50px rgba(20, 35, 67, 0.16);
}

.tutorial-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.18), rgba(87, 199, 212, 0.28));
}

.tutorial-media img,
.content-image,
.inner-hero-image,
.contact-image,
.pricing-intro img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.tutorial-media img {
    height: 100%;
    position: absolute;
    inset: 0;
}

.play-button {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 12px 26px rgba(7, 140, 120, 0.32);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    color: #ffffff;
}

.video-label {
    position: absolute;
    z-index: 1;
    left: 20px;
    bottom: 18px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
}

.video-label i {
    color: var(--primary-aqua);
    margin-right: 7px;
}

.tutorial-copy h2 {
    max-width: 540px;
    margin-bottom: 18px;
}

.tutorial-copy > p {
    color: var(--text-soft);
    max-width: 540px;
    margin-bottom: 24px;
}

.tutorial-points {
    display: grid;
    gap: 15px;
    margin-bottom: 24px;
}

.tutorial-points div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-soft);
}

.tutorial-points strong {
    color: var(--primary-dark);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.inner-hero-grid h1 {
    max-width: 680px;
    margin-bottom: 18px;
}

.inner-hero-grid p {
    color: var(--text-soft);
    max-width: 680px;
}

.inner-hero-image {
    height: 270px;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.hero-link {
    margin-top: 24px;
}

.hero-photo-stack {
    position: relative;
    padding: 10px 0 0 10px;
}

.hero-photo-stack::before {
    content: "";
    position: absolute;
    inset: 0 18px 18px 0;
    border: 1px solid rgba(24, 173, 114, 0.28);
    border-radius: 26px;
    transform: rotate(-4deg);
}

.hero-photo-stack img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.photo-caption {
    position: absolute;
    z-index: 2;
    right: -18px;
    bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 9px;
    max-width: 230px;
    padding: 15px 17px;
    border-radius: 16px;
    background: rgba(18, 61, 58, 0.94);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.photo-caption strong {
    color: var(--primary-aqua);
    font-size: 1.8rem;
}

.photo-caption span {
    font-size: 0.74rem;
    line-height: 1.35;
}

.page-stat-strip {
    background: #14213d;
    color: #ffffff;
    padding: 24px 0;
}

.page-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-stat-grid div {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,0.14);
}

.page-stat-grid div:last-child {
    border-right: 0;
}

.page-stat-grid strong {
    color: var(--primary-aqua);
    font-size: 1.7rem;
}

.page-stat-grid span {
    color: #c9e8df;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.catalog-intro-bar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 54px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.catalog-intro-bar p {
    max-width: 390px;
    color: var(--text-soft);
}

.tools-banner {
    background:
        radial-gradient(circle at 88% 24%, rgba(87, 199, 212, 0.28), transparent 24%),
        linear-gradient(115deg, #101d38 0%, #14213d 46%, #087c62 100%);
    color: #ffffff;
}

.tools-banner .breadcrumb,
.tools-banner .breadcrumb strong {
    color: #d8e3f3;
}

.tools-banner .breadcrumb span {
    color: var(--primary-aqua);
}

.tools-banner .eyebrow {
    color: var(--primary-aqua);
}

.tools-banner .inner-hero-grid p {
    color: #bdcbe0;
}

.tools-banner .inner-hero-image {
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 24px 46px rgba(0,0,0,0.22);
    filter: saturate(0.75) contrast(1.08);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.hero-metrics span {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #bdcbe0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-metrics strong {
    color: #ffffff;
    font-size: 1.35rem;
}

.catalog-overview {
    align-items: center;
}

.catalog-count {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 180px;
    padding: 15px 18px;
    border-radius: 14px;
    background: #14213d;
    color: #ffffff;
}

.catalog-count strong {
    color: var(--primary-aqua);
    font-size: 2rem;
}

.catalog-count span {
    color: #c6d5e7;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-hero-note {
    display: grid;
    gap: 12px;
    padding: 26px;
    border-radius: 24px;
    background: #14213d;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(20, 35, 67, 0.16);
}

.contact-hero-note i {
    color: var(--primary-aqua);
    font-size: 1.5rem;
}

.contact-hero-note span {
    color: #c9e8df;
    font-size: 0.9rem;
}

.story-content {
    display: grid;
    gap: 16px;
}

.content-image {
    height: 220px;
    border-radius: 22px;
    margin-bottom: 8px;
}

.pricing-intro {
    margin-bottom: 44px;
}

.pricing-intro h2 {
    max-width: 560px;
}

.pricing-intro img {
    height: 210px;
    border-radius: 24px;
}

.contact-image {
    height: 190px;
    border-radius: 16px;
    margin-bottom: 22px;
}

.pricing-hero {
    background:
        radial-gradient(circle at 88% 24%, rgba(87, 199, 212, 0.22), transparent 24%),
        linear-gradient(115deg, #101d38 0%, #14213d 46%, #087c62 100%);
}

.section-lead {
    max-width: 650px;
    margin: 14px auto 0;
    color: var(--text-soft);
}

.pricing-plans-section {
    background: #fcfcf8;
}

.bundle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.bundle-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: 28px 24px 24px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bundle-card::before {
    content: "";
    display: block;
    height: 4px;
    margin: -28px -24px 24px;
    background: #dce7ee;
}

.bundle-card:nth-child(2)::before {
    background: var(--primary-aqua);
}

.bundle-card:nth-child(3)::before,
.featured-plan::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-aqua));
}

.bundle-card:nth-child(4)::before {
    background: #f1895b;
}

.bundle-card:nth-child(5)::before {
    background: #14213d;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 35, 67, 0.12);
}

.bundle-card:nth-child(4) {
    grid-column: 1 / 2;
}

.bundle-card .bundle-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.bundle-price strong {
    color: var(--text);
    font-family: var(--montserrat);
    font-size: 2.25rem;
    letter-spacing: -0.06em;
}

.bundle-price span {
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.bundle-card p {
    min-height: 52px;
}

.bundle-card ul {
    margin-top: 18px;
    margin-bottom: 26px;
}

.bundle-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.complete-bundle {
    background: linear-gradient(135deg, #edf8f1, #eaf6f7);
    border-color: rgba(24, 173, 114, 0.24);
}

.purchase-section {
    background: #eef3f1;
}

.purchase-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.purchase-copy h2 {
    max-width: 480px;
    margin-bottom: 14px;
}

.purchase-copy > p {
    max-width: 480px;
    color: var(--text-soft);
    margin-bottom: 24px;
}

.purchase-copy img {
    width: 100%;
    height: 245px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.process-list {
    display: grid;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 0 0 28px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    bottom: 0;
    left: 18px;
    width: 1px;
    background: rgba(24, 173, 114, 0.3);
}

.process-step > strong {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(24, 173, 114, 0.32);
    color: var(--primary-dark);
    font-size: 0.75rem;
}

.process-step h3 {
    margin-bottom: 6px;
}

.process-step p {
    color: var(--text-soft);
    max-width: 650px;
}

.process-step a {
    color: var(--primary-dark);
    font-weight: 800;
}

.delivery-section {
    background: #ffffff;
}

.delivery-panel {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
    padding: 30px;
    border-radius: 24px;
    background: #14213d;
    color: #ffffff;
    box-shadow: 0 22px 42px rgba(20, 35, 67, 0.14);
}

.delivery-panel h2 {
    margin-bottom: 10px;
}

.delivery-panel p {
    max-width: 850px;
    color: #c7d5e7;
}

.delivery-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(87, 199, 212, 0.15);
    color: var(--primary-aqua);
    font-size: 1.35rem;
}

.bundle-calculator-section {
    background: #ffffff;
}

.bundle-calculator {
    max-width: 1120px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, #f7fbf8, #f5f8fc);
    box-shadow: var(--shadow);
}

.calculator-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.calculator-heading h2 {
    margin-bottom: 8px;
}

.calculator-heading p {
    max-width: 420px;
    color: var(--text-soft);
}

.calculator-control {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 800;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.quantity-button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary-dark);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}

.quantity-button:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.quantity-control output {
    min-width: 34px;
    text-align: center;
    color: var(--text);
    font-size: 1.2rem;
}

.quantity-range {
    grid-column: 1 / -1;
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}

.calculator-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px 0;
}

.calculator-result div {
    display: grid;
    gap: 4px;
}

.calculator-result span {
    color: var(--text-soft);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calculator-result strong {
    color: var(--text);
    font-size: 1.35rem;
}

.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 12px 16px;
    text-align: right;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.86rem;
}

.price-table th:first-child,
.price-table td:first-child {
    text-align: left;
}

.price-table th {
    background: #14213d;
    color: #ffffff;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-table tbody tr {
    cursor: pointer;
    transition: background 0.2s ease;
}

.price-table tbody tr:hover,
.price-table tbody tr.selected {
    background: var(--primary-soft);
}

.price-table tbody tr.selected td {
    color: var(--primary-dark);
    font-weight: 800;
}

.price-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-hero h1 {
    max-width: 760px;
}

.pricing-plans-section .section-header {
    margin-bottom: 42px;
}

.pricing-plans-section .section-header h2 {
    margin-bottom: 0;
}

.pricing-plans-section .featured-plan {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(20, 35, 67, 0.14);
}

.pricing-plans-section .featured-plan:hover {
    transform: translateY(-13px);
}

.catalog-section {
    padding: 38px 0 80px;
}

.catalog-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.82rem;
}

.chip.active {
    background: var(--primary-soft);
    border-color: rgba(27, 184, 109, 0.2);
    color: var(--primary-dark);
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.tool-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tool-card:hover,
.product-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(15, 38, 29, 0.12);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 14px;
    /* min-height: 98px;
    padding: 18px 18px 16px; */
    background: linear-gradient(135deg, #e9f9f1, #e5f7f6);
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.tool-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(27,184,109,0.12);
    border: 1px solid rgba(27,184,109,0.15);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--primary-dark);
}

.tool-title-wrap {
    min-width: 0;
}

.tool-title-wrap h3 {
    font-size: 1.03rem;
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    white-space: normal;
}

.tool-title-wrap small {
    display: block;
    font-size: 0.78rem;
    opacity: 0.86;
    word-break: break-word;
}

.tool-body {
    padding: 18px;
    background: #ffffff;
}

.tool-body p {
    color: var(--text-soft);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.tool-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.btn-small {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 0.78rem;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.size {
    font-weight: 700;
    color: var(--text);
}

.package {
    font-size: 0.72rem;
    opacity: 0.8;
}

.site-footer {
    background: linear-gradient(135deg, #0d172b 0%, #14213d 58%, #101d38 100%);
    border-top: 1px solid rgba(87, 199, 212, 0.24);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 30px;
    padding-top: 46px;
    padding-bottom: 28px;
}

.footer-brand img {
    max-height: 52px;
    margin-bottom: 16px;
}

.footer-brand p,
.footer-column li,
.footer-column span {
    color: #b7c4dd;
    line-height: 1.9;
}

.footer-column h3 {
    font-size: 1.08rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    color: #aab8d2;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #e0eaff;
}

.social-links a:hover {
    border-color: var(--primary-aqua);
    background: rgba(87, 199, 212, 0.14);
    color: var(--primary-aqua);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
}

.loader-container img {
    max-height: 72px;
}

.loader-container i {
    font-size: 50px;
    color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    .tool-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .tool-grid,
    .footer-grid,
    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255,255,255,0.96);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .catalog-head,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .tool-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-actions .btn-primary-header {
        display: none;
    }

    .hero-copy h1 {
        font-size: 2.7rem;
    }

    .catalog-head {
        align-items: flex-start;
    }
}

.site-header {
    background: rgba(250, 250, 247, 0.92);
}

.main-nav a {
    position: relative;
}

.main-nav > a::after,
.nav-dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-aqua));
    transition: right 0.25s ease;
}

.main-nav > a:hover::after,
.nav-dropdown:hover > a::after {
    right: 0;
}

.catalog-section {
    background: #fcfcf8;
    padding-top: 92px;
}

.catalog-head {
    margin: 0 auto 34px;
}

.catalog-head h2 {
    max-width: 650px;
}

.tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    min-height: 266px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 38, 29, 0.06);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 38, 29, 0.12);
}

.tool-header {
    /* min-height: 86px;
    padding: 18px 20px; */
    background: linear-gradient(135deg, #edf8f1, #edf6f8);
}

.tool-title-wrap h3 {
    font-size: 1rem;
}

.tool-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.tool-body p {
    line-height: 1.65;
}

.tool-actions .text-link {
    font-size: 0.82rem;
}

.tool-actions .btn-small {
    min-width: 88px;
}

.section-header h2,
.catalog-head h2 {
    line-height: 1.12;
}

.btn {
    letter-spacing: 0.01em;
}

.feature-card,
.info-card,
.pricing-card,
.contact-panel,
.contact-card {
    box-shadow: 0 10px 26px rgba(15, 38, 29, 0.055);
}

.feature-card:hover,
.product-card:hover {
    transform: translateY(-4px);
}

.inner-hero h1 {
    max-width: 760px;
}

@media (max-width: 991px) {
    .tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tool-grid {
        grid-template-columns: 1fr;
    }

    .tool-card {
        min-height: 0;
    }
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(106, 169, 255, 0.14);
    color: #356fe8;
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(241, 137, 91, 0.14);
    color: #168e91;
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(91, 143, 214, 0.14);
    color: #3d72b3;
}

.feature-card:nth-child(3) .feature-icon i,
.feature-card:nth-child(4) .feature-icon i {
    color: inherit;
}


.pricing-card:nth-child(1) .plan-name {
    color: #3d72b3;
}

.pricing-card:nth-child(3) .plan-name {
    color: #c45a36;
}

.faq-item:nth-child(2) {
    border-left: 3px solid var(--primary-aqua);
}

.faq-item:nth-child(3) {
    border-left: 3px solid #f1895b;
}


/* Professional Calculator Styles */
.professional-calculator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-main-panel {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(20, 35, 67, 0.08);
}

.calculator-selector {
    margin-bottom: 36px;
}

.selector-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.label-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.label-hint {
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 600;
}

.quantity-display-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.quantity-btn {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: grid;
    place-items: center;
}

.quantity-btn:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 20px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(87, 199, 212, 0.08));
    border: 2px solid rgba(24, 173, 114, 0.2);
}

.quantity-display output {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.quantity-label {
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.range-slider-container {
    position: relative;
}

.professional-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 21.4%, #e0e7eb 21.4%, #e0e7eb 100%);
    outline: none;
    cursor: pointer;
    margin-bottom: 12px;
}

.professional-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(24, 173, 114, 0.4);
    transition: all 0.2s ease;
}

.professional-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(24, 173, 114, 0.4);
    border: none;
    transition: all 0.2s ease;
}

.professional-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 18px rgba(24, 173, 114, 0.5);
}

.professional-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 18px rgba(24, 173, 114, 0.5);
}

.range-marks {
    position: relative;
    width: 100%;
    height: 20px;
}

.range-marks span {
    position: absolute;
    font-size: 0.72rem;
    color: var(--text-soft);
    font-weight: 700;
    transform: translateX(-50%);
}

.range-marks span:nth-child(1) {
    left: 0%;
}

.range-marks span:nth-child(2) {
    left: 28.57%;
}

.range-marks span:nth-child(3) {
    left: 64.29%;
}

.range-marks span:nth-child(4) {
    left: 100%;
}

.pricing-summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.summary-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f9fbfa;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(20, 35, 67, 0.08);
}

.primary-card {
    background: linear-gradient(135deg, #14213d, #087c62);
    color: #ffffff;
    border: none;
    box-shadow: 0 16px 36px rgba(20, 35, 67, 0.18);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--primary-aqua);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.primary-card .card-icon {
    background: rgba(87, 199, 212, 0.2);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-soft);
}

.primary-card .card-label {
    color: rgba(255, 255, 255, 0.7);
}

.card-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.primary-card .card-value {
    color: #ffffff;
}

.card-note {
    font-size: 0.7rem;
    color: var(--text-soft);
    font-weight: 600;
}

.primary-card .card-note {
    color: rgba(255, 255, 255, 0.65);
}

.savings-indicator {
    color: var(--primary-dark);
    font-weight: 800;
}

.calculator-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-large {
    min-height: 58px;
    padding: 0 36px;
    font-size: 1.05rem;
    font-weight: 800;
}

.cta-subtext {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 600;
}

.cta-subtext i {
    color: var(--primary);
}

.calculator-pricing-table {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(20, 35, 67, 0.06);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
}

.table-header h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin: 0;
}

.table-subtitle {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 600;
}

.price-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table-modern th,
.price-table-modern td {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.9rem;
}

.price-table-modern th:nth-child(2),
.price-table-modern td:nth-child(2),
.price-table-modern th:nth-child(3),
.price-table-modern td:nth-child(3),
.price-table-modern th:nth-child(4),
.price-table-modern td:nth-child(4) {
    text-align: right;
}

.price-table-modern thead th {
    background: #14213d;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
}

.price-table-modern thead th:first-child {
    border-radius: 12px 0 0 0;
}

.price-table-modern thead th:last-child {
    border-radius: 0 12px 0 0;
}

.price-table-modern thead th i {
    color: var(--primary-aqua);
    margin-right: 6px;
}

.price-table-modern tbody tr {
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f2f4;
}

.price-table-modern tbody tr:hover {
    background: var(--primary-soft);
}

.price-table-modern tbody tr.selected {
    background: linear-gradient(90deg, rgba(24, 173, 114, 0.12), rgba(87, 199, 212, 0.08));
    border-left: 4px solid var(--primary);
}

.price-table-modern tbody tr.selected td {
    color: var(--text);
    font-weight: 700;
}

.price-table-modern tbody tr.recommended-row {
    background: linear-gradient(90deg, rgba(24, 173, 114, 0.05), rgba(87, 199, 212, 0.03));
}

.price-table-modern tbody tr td:first-child {
    color: var(--text);
    font-weight: 600;
}

.price-table-modern tbody tr td {
    color: var(--text-soft);
}

.savings-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(24, 173, 114, 0.12);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
}

.savings-badge.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
}

.no-savings {
    color: #c0c8cc;
    font-weight: 600;
}

.best-value-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

.calculator-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.calc-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    box-shadow: 0 4px 12px rgba(20, 35, 67, 0.04);
}

.calc-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-small {
    min-height: 38px;
    padding: 0 18px;
    font-size: 0.85rem;
}



.tool-header {
    padding: 20px;
    border-radius: 12px 12px 0 0;
    /* margin: -20px -20px 16px -20px; */
    transition: all 0.3s ease;
}

.tool-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.tool-title-wrap h3 {
    color: #ffffff;
    margin: 0;
}

.tool-card:hover .tool-header {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width:768px) {
    
    .pricing-summary-cards {
        grid-template-columns: 1fr;
    }

    .calculator-features {
        grid-template-columns: 1fr;
    }

    .calculator-main-panel {
        padding: 28px 20px;
    }

    .calculator-pricing-table {
        padding: 20px 16px;
    }

    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .quantity-display output {
        font-size: 2.5rem;
    }

    .card-value {
        font-size: 1.5rem;
    }
}


/* Colorful Tool Cards */
.tool-card:nth-child(9n + 2) .tool-header {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

.tool-card:nth-child(9n + 1) .tool-header {
    background: linear-gradient(135deg, #ff7a18, #c2410c);
}

 .tool-card:nth-child(9n + 3) .tool-header {    
    background: linear-gradient(135deg, #14b8a6, #115e59);
}

.tool-card:nth-child(9n + 4) .tool-header {
    background: linear-gradient(135deg, #a855f7, #581c87);
}

.tool-card:nth-child(9n + 5) .tool-header {
    background: linear-gradient(135deg, #f43f5e, #881337);
}

.tool-card:nth-child(9n + 6) .tool-header {
    background: linear-gradient(135deg, #22c55e, #14532d);
}

 .tool-card:nth-child(9n + 7) .tool-header {
    background: linear-gradient(135deg, #fbbf24, #92400e);
}

 .tool-card:nth-child(9n + 8) .tool-header {
    background: linear-gradient(135deg, #22d3ee, #155e75);
}

 .tool-card:nth-child(9n) .tool-header {
    background: linear-gradient(135deg, #6366f1, #312e81);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border-radius: 12px 12px 0 0;
    /* margin: -20px -20px 16px -20px; */
    transition: all 0.3s ease;
}

.tool-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    flex-shrink: 0;
}

.tool-title-wrap h3 {
    color: #ffffff !important;
    margin: 0;
    font-size: 1.05rem;
}

.tool-card:hover .tool-header {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Checkout Page Styles */
.checkout-page {
    background: #f7f8f4;
    padding: 40px 0 80px;
}

.checkout-content {
    padding: 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 32px;
    align-items: start;
}

.section-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(20, 35, 67, 0.06);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.card-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin: 0;
    color: var(--text);
}

.card-header i {
    color: var(--primary);
}

.selection-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-soft);
    border: 1px solid rgba(24, 173, 114, 0.2);
    border-radius: 8px;
    font-weight: 800;
    color: var(--primary-dark);
}

.selection-counter #selectedCount {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.quantity-selector-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f7fbf8, #f5f8fc);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 24px;
}

.quantity-selector-bar label {
    font-weight: 700;
    color: var(--text);
}

.quantity-control-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary-dark);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.quantity-control-inline input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}

.tools-grid-checkout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 10px 0;
    /* max-height: 620px; */
    overflow-y: auto;
    padding-right: 10px;
}

.tools-grid-checkout::-webkit-scrollbar {
    width: 6px;
}

.tools-grid-checkout::-webkit-scrollbar-track {
    background: #f0f2f4;
    border-radius: 10px;
}

.tools-grid-checkout::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.tool-card-select {
    position: relative;
    display: block;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

.tool-card-select:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(24, 173, 114, 0.12);
    transform: translateY(-3px);
}

.tool-card-select input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tool-card-select input[type="checkbox"]:checked ~ .tool-card-content {
    opacity: 1;
}

.tool-card-select input[type="checkbox"]:checked ~ .check-indicator {
    opacity: 1;
    transform: scale(1);
}

.tool-card-select.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.tool-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.tool-card-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 14px;
    font-size: 2rem;
    font-weight: 800;
    transition: all 0.25s ease;
}

.tool-card-select:hover .tool-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    transform: scale(1.05);
}

.tool-card-select input[type="checkbox"]:checked ~ .tool-card-content .tool-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
}

.tool-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
    min-height: 38px;
    display: flex;
    align-items: center;
}

.check-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(24, 173, 114, 0.3);
}

.check-indicator i {
    font-size: 0.85rem;
}

/* Summary Section */
.summary-sticky {
    position: sticky;
    top: 100px;
}

.summary-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(20, 35, 67, 0.1);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(135deg, #14213d, #087c62);
    color: #ffffff;
}

.summary-header h2 {
    margin: 0;
    font-size: 1.35rem;
    color: #ffffff;
}

.selection-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.selection-badge #selectedCount {
    font-size: 1.2rem;
    color: var(--primary-aqua);
}

.selected-tools-preview {
    padding: 20px 24px;
    min-height: 100px;
    max-height: 240px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
}

.selected-tools-preview::-webkit-scrollbar {
    width: 4px;
}

.selected-tools-preview::-webkit-scrollbar-track {
    background: transparent;
}

.selected-tools-preview::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.empty-state-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.empty-state-mini i {
    font-size: 2.5rem;
    color: #dce3e8;
    margin-bottom: 12px;
}

.empty-state-mini p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.selected-tools-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--primary-soft);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.compact-tool-item:hover {
    background: rgba(24, 173, 114, 0.15);
}

.compact-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.compact-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.pricing-details-card {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

.price-label {
    color: var(--text-soft);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-value {
    color: var(--text);
    font-weight: 700;
}

.price-row.subtotal {
    padding-top: 14px;
    margin-top: 8px;
    border-top: 1px dashed var(--border);
}

.price-row.discount {
    color: var(--primary-dark);
}

.discount-percent {
    display: inline-block;
    padding: 3px 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
}

.discount-value {
    color: var(--primary-dark) !important;
}

.total-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-row span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.total-row strong {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.savings-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(24, 173, 114, 0.1), rgba(87, 199, 212, 0.08));
    border: 1px solid rgba(24, 173, 114, 0.25);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.savings-banner i {
    color: var(--primary);
    font-size: 1rem;
}

.savings-banner strong {
    font-weight: 800;
}

.checkout-action {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.btn-checkout-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(24, 173, 114, 0.25);
}

.btn-checkout-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(24, 173, 114, 0.35);
}

.btn-checkout-modern:active {
    transform: translateY(0);
}

.btn-checkout-modern i {
    font-size: 1.2rem;
}

.whats-included {
    padding: 24px 28px;
}

.whats-included h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.whats-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whats-included li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.whats-included i {
    color: var(--primary);
    font-size: 0.9rem;
}

.trust-section {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(20, 35, 67, 0.04);
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f9fbfa;
    border-radius: 10px;
    text-align: center;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

.trust-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-soft);
}

.empty-state i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
}

.empty-state p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .summary-sticky {
        position: static;
    }

    .tools-grid-checkout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 30px 0 50px;
    }

    .quantity-selector-bar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tools-grid-checkout {
        grid-template-columns: 1fr;
        /* max-height: 500px; */
    }

    .tool-card-select {
        padding: 16px;
    }

    .tool-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .tool-card-name {
        font-size: 0.9rem;
    }
}


/* Checkout Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 33, 61, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    border-radius: 24px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    border-bottom: 2px solid var(--border);
    background: linear-gradient(135deg, #f7fbf8, #f5f8fc);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);   
}

.modal-body {
    padding: 32px;
}

.order-summary-mini {
    /* padding: 20px;
    background: linear-gradient(135deg, rgba(24, 173, 114, 0.08), rgba(87, 199, 212, 0.05));
    border: 1px solid rgba(24, 173, 114, 0.2); */
    border-radius: 14px;
    margin-bottom: 28px;
}

.order-summary-mini h3 {
    margin: 0 0 14px 0;
    font-size: 1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-mini-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}

.summary-mini-row span {
    color: var(--text-soft);
    font-weight: 600;
}

.summary-mini-row strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.required {
    color: #e53e3e;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24, 173, 114, 0.1);
}

.form-group input::placeholder {
    color: #c0c8cc;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: -4px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.45;
    cursor: pointer;
}

.consent-checkbox input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--primary);
    cursor: pointer;
}

.consent-checkbox a {
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-secondary {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f0f2f4;
    border-color: var(--text-soft);
}

.btn-primary-submit {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-aqua));
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(24, 173, 114, 0.25);
}

.btn-primary-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(24, 173, 114, 0.35);
}

.btn-primary-submit:active {
    transform: translateY(0);
}

.modal-footer-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    background: #f9fbfa;
    border-radius: 10px;
}

.modal-footer-note i {
    color: var(--primary);
    font-size: 1.2rem;
}

.modal-footer-note p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .modal-container {
        max-height: 95vh;
        margin: 10px;
    }

    .modal-header {
        padding: 20px 24px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 24px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary-submit {
        width: 100%;
    }
}
