:root {
    --pr-accent: #155dee;
    --pr-accent-2: #4f46e5;
    --pr-ink: #0f172a;
    --pr-slate: #475569;
    --pr-muted: #64748b;
    --pr-border: #e7ebf3;
    --pr-surface: #ffffff;
    --pr-soft: #f5f8ff;
    --pr-green: #16a34a;
    --pr-green-soft: #dcfce7;
    --pr-radius: 18px;
    --pr-radius-sm: 12px;
    --pr-shadow-sm: 0 1px 3px rgba(15,23,42,.06);
    --pr-shadow-md: 0 8px 24px rgba(15,23,42,.08);
    --pr-shadow-lg: 0 20px 48px rgba(15,23,42,.12);
}

/* ===== HERO ===== */
.pricing-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 7rem 20px 9rem;
    background: linear-gradient(135deg, #0a1628 0%, #132347 45%, #1a3a7a 100%);
}

.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 420px at 20% 80%, rgba(21,93,238,.32), transparent),
               radial-gradient(ellipse 600px 520px at 82% 12%, rgba(124,58,237,.20), transparent);
    pointer-events: none;
}

.pricing-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 2.5rem;
}

/* GST Toggle */
.gst-toggle-container {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: .55rem 1.25rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.gst-toggle-label {
    font-size: .92rem;
    color: rgba(255,255,255,.8);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background-color: rgba(255,255,255,.25);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 100px;
    transition: .3s;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .toggle-slider {
    background-color: var(--pr-accent);
    border-color: var(--pr-accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Plan Selector Tabs */
.plan-selector {
    display: flex;
    flex-direction: column;
    width: fit-content;
    min-width: 260px;
    gap: 4px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 5px;
    margin: 0 auto 2.5rem;
}

.plan-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: .7rem 1.75rem;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.75);
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    min-width: 165px;
    width: 100%;
}

.plan-tab:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.plan-tab.active {
    background: #fff;
    color: var(--pr-accent);
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    border-radius: 12px;
}

.plan-tab-name {
    font-size: .95rem;
    font-weight: 700;
}

.plan-tab-desc {
    font-size: .75rem;
    opacity: .7;
}

.pricing-highlight {
    margin-top: .5rem;
}

.pricing-breakdown-simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    padding: 2.5rem 4.5rem;
    border-radius: var(--pr-radius);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* legacy multi-component breakdown (kept for compatibility) */
.pricing-breakdown {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    padding: 2rem 3rem;
    border-radius: var(--pr-radius);
    border: 1px solid rgba(255,255,255,.22);
}

.price-component-single,
.price-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.price-label {
    font-size: .8rem;
    opacity: .85;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.price-value {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}

.price-period {
    font-size: 1rem;
    opacity: .75;
}

.price-plus {
    font-size: 3rem;
    font-weight: 300;
    opacity: .6;
}

.price-note {
    font-size: .95rem;
    opacity: .8;
    margin-top: 1rem;
}

.pricing-highlight .price-note {
    margin-top: 1.5rem;
    font-weight: 500;
    opacity: .9;
}

/* ===== SHARED SECTION HEADINGS ===== */
.calculator-header h2,
.savings-header h2,
.benefits-container h2,
.included-container h2,
.faq-container h2 {
    font-size: clamp(2rem, 3.6vw, 2.6rem);
    color: var(--pr-ink);
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.calculator-header,
.savings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header p,
.savings-header p {
    font-size: 1.1rem;
    color: var(--pr-muted);
}

/* ===== CALCULATOR ===== */
.calculator-section {
    padding: 6rem 20px;
    background: var(--pr-surface);
}

.calculator-container {
    max-width: 1100px;
    margin: 0 auto;
}

.calculator-card {
    background: var(--pr-soft);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    box-shadow: var(--pr-shadow-md);
}

.calculator-input-section label {
    display: block;
    font-size: 1.1rem;
    color: var(--pr-ink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.employee-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.employee-btn {
    width: 52px;
    height: 52px;
    border: 1px solid var(--pr-border);
    background: #fff;
    border-radius: var(--pr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: var(--pr-shadow-sm);
}

.employee-btn:hover {
    background: var(--pr-accent);
    border-color: var(--pr-accent);
    transform: translateY(-1px);
}

.employee-btn:hover svg {
    fill: #fff;
}

.employee-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--pr-accent);
    transition: fill .2s ease;
}

#employeeCount {
    flex: 1;
    height: 52px;
    font-size: 2rem;
    text-align: center;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-sm);
    background: #fff;
    color: var(--pr-ink);
    font-weight: 700;
}

#employeeCount:focus {
    outline: none;
    border-color: var(--pr-accent);
    box-shadow: 0 0 0 4px rgba(21,93,238,.12);
}

.quick-select {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
}

.quick-select span {
    font-size: .9rem;
    color: var(--pr-muted);
    margin-right: .25rem;
}

.quick-select button {
    padding: .5rem 1rem;
    border: 1px solid var(--pr-border);
    background: #fff;
    color: var(--pr-accent);
    border-radius: 100px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    transition: all .2s ease;
}

.quick-select button:hover {
    background: var(--pr-accent);
    border-color: var(--pr-accent);
    color: #fff;
}

.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.result-breakdown {
    background: #fff;
    padding: 2rem;
    border-radius: var(--pr-radius-sm);
    border: 1px solid var(--pr-border);
    box-shadow: var(--pr-shadow-sm);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    font-size: 1.05rem;
    color: var(--pr-slate);
}

.breakdown-value {
    font-weight: 600;
    color: var(--pr-ink);
}

.breakdown-divider {
    height: 1px;
    background: var(--pr-border);
    margin: 1rem 0;
}

.gst-row {
    color: var(--pr-muted);
    font-size: 1rem;
}

.total-row {
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pr-ink);
}

.total-value {
    font-size: 2.5rem;
    color: var(--pr-accent);
    font-weight: 800;
    letter-spacing: -.02em;
}

.annual-cost {
    text-align: center;
    padding: 1.1rem;
    background: var(--pr-soft);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-sm);
    font-size: 1.05rem;
    color: var(--pr-slate);
}

.annual-cost span:last-child {
    font-weight: 700;
    color: var(--pr-accent);
    font-size: 1.25rem;
    margin-left: .5rem;
}

/* ===== PRICING EXAMPLES ===== */
.pricing-examples {
    margin-top: 4rem;
}

.pricing-examples h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--pr-ink);
    margin-bottom: 2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 2rem;
    text-align: center;
    transition: all .3s ease;
    position: relative;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pr-shadow-md);
    border-color: var(--pr-accent);
}

.example-card.highlighted {
    border-color: var(--pr-accent);
    box-shadow: var(--pr-shadow-md);
}

.example-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pr-accent);
    color: #fff;
    padding: .3rem 1rem;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
}

.example-size {
    font-size: .82rem;
    color: var(--pr-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
}

.example-employees {
    font-size: 1.1rem;
    color: var(--pr-ink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.example-price {
    font-size: 2.4rem;
    color: var(--pr-accent);
    font-weight: 800;
    margin-bottom: .5rem;
}

.example-price span {
    font-size: 1rem;
    color: var(--pr-muted);
    font-weight: 400;
}

.example-calc {
    font-size: .9rem;
    color: var(--pr-slate);
    background: var(--pr-soft);
    padding: .5rem;
    border-radius: var(--pr-radius-sm);
}

/* ===== SAVINGS ===== */
.savings-section {
    background: linear-gradient(to bottom, var(--pr-soft), #fff);
    padding: 6rem 20px;
}

.savings-container {
    max-width: 1100px;
    margin: 0 auto;
}

.savings-calculator {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 3rem;
    box-shadow: var(--pr-shadow-md);
}

.savings-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.savings-input-group label {
    display: block;
    font-size: .9rem;
    color: var(--pr-slate);
    margin-bottom: .5rem;
    font-weight: 600;
}

.savings-input-group input {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-sm);
    font-size: 1.05rem;
    color: var(--pr-ink);
    transition: all .2s ease;
}

.savings-input-group input:focus {
    outline: none;
    border-color: var(--pr-accent);
    box-shadow: 0 0 0 4px rgba(21,93,238,.12);
}

.input-with-prefix {
    position: relative;
}

.input-with-prefix .prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.05rem;
    color: var(--pr-muted);
    font-weight: 600;
}

.input-with-prefix input {
    padding-left: 2.4rem;
}

.savings-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.savings-card {
    background: var(--pr-soft);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-sm);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.savings-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pr-shadow-sm);
}

.savings-card.highlight {
    background: linear-gradient(135deg, var(--pr-accent) 0%, var(--pr-accent-2) 100%);
    border-color: transparent;
    color: #fff;
}

.savings-card.highlight .savings-label,
.savings-card.highlight .savings-value,
.savings-card.highlight .savings-detail {
    color: #fff;
}

.savings-card.highlight .savings-icon svg {
    fill: #fff;
}

.savings-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.savings-icon svg {
    width: 38px;
    height: 38px;
    fill: var(--pr-accent);
}

.savings-label {
    font-size: .9rem;
    color: var(--pr-muted);
    margin-bottom: .5rem;
}

.savings-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--pr-accent);
    margin-bottom: .25rem;
}

.savings-detail {
    font-size: .8rem;
    color: var(--pr-muted);
}

.savings-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--pr-soft);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-sm);
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    font-size: .9rem;
    color: var(--pr-muted);
    margin-bottom: .5rem;
}

.comparison-value {
    font-size: 1.8rem;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: var(--pr-radius-sm);
}

.comparison-value.rostermate {
    background: var(--pr-green-soft);
    color: #065f46;
}

.comparison-value.manual {
    background: #fee2e2;
    color: #991b1b;
    text-decoration: line-through;
}

.comparison-vs {
    font-size: 1.4rem;
    color: var(--pr-muted);
    font-weight: 700;
}

.savings-summary {
    text-align: center;
    font-size: 1.4rem;
    color: var(--pr-ink);
    background: var(--pr-green-soft);
    padding: 1.5rem;
    border-radius: var(--pr-radius-sm);
    border: 1px solid #86efac;
}

.savings-summary strong {
    color: #065f46;
    font-size: 1.9rem;
}

/* ===== BENEFITS ===== */
.benefits-section {
    padding: 6rem 20px;
    background: #fff;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--pr-surface);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 2rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pr-accent), var(--pr-accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pr-shadow-md);
    border-color: var(--pr-accent);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(21,93,238,.1);
    border-radius: var(--pr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--pr-accent);
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--pr-ink);
    margin-bottom: .6rem;
}

.benefit-card p {
    color: var(--pr-slate);
    line-height: 1.6;
}

.benefit-card strong {
    color: var(--pr-accent);
    font-weight: 700;
}

/* ===== WHAT'S INCLUDED ===== */
.included-section {
    background: var(--pr-soft);
    padding: 6rem 20px;
}

.included-container {
    max-width: 1100px;
    margin: 0 auto;
}

.included-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.included-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--pr-muted);
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.included-category {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 2rem;
    transition: box-shadow .3s ease, transform .3s ease;
}

.included-category:hover {
    box-shadow: var(--pr-shadow-md);
    transform: translateY(-3px);
}

.included-category h3 {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.2rem;
    color: var(--pr-ink);
    margin-bottom: 1.25rem;
}

.included-category h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--pr-accent);
}

.included-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-category li {
    padding: .7rem 0 .7rem 1.75rem;
    position: relative;
    color: var(--pr-slate);
    border-bottom: 1px solid #f1f4f9;
}

.included-category li:last-child {
    border-bottom: none;
}

.included-category li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .85rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pr-green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316a34a'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 20px;
    background: #fff;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-sm);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item.open {
    border-color: var(--pr-accent);
    box-shadow: var(--pr-shadow-sm);
}

.faq-question {
    padding: 1.4rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background .2s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--pr-soft);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--pr-ink);
}

.faq-question .toggle-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--pr-muted);
    transition: transform .3s ease;
}

.faq-item.open .toggle-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--pr-slate);
    line-height: 1.7;
    display: none;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #132347 45%, #1a3a7a 100%);
    padding: 6rem 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(21,93,238,.25), transparent);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.cta-container p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,.7);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: .95rem 2.25rem;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease;
}

.btn-primary {
    background: #fff;
    color: var(--pr-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.btn-secondary {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.16);
    border-color: #fff;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: rgba(255,255,255,.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 5rem 20px 7rem;
    }

    .pricing-breakdown-simple {
        padding: 2rem;
    }

    .price-component-single .price-value {
        font-size: 3rem;
    }

    .pricing-breakdown {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .price-plus {
        transform: rotate(90deg);
    }

    .plan-tab {
        min-width: 140px;
        padding: .65rem 1.1rem;
    }

    .calculator-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .savings-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-vs {
        transform: rotate(90deg);
    }
}

/* //////////////////////////////////// */
/* FOOTER SOCIAL MEDIA */
/* //////////////////////////////////// */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #155dee;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #163cc4;
    transform: scale(120%);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #101828;
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: #fff;
}

@media (max-width: 768px) {
    .footer-social {
        gap: 15px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }
}
