@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --text-color: #334155;
    --light-text: #94a3b8;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

header {
    background: var(--gradient);
    color: white;
    padding: 2rem 1rem 8rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

.logo-container {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.logo-container img {
    height: 160px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 0.8s ease-out;
}

p.subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 20;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Tablet adjustments */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    .comparison-grid {
        gap: 1.5rem;
    }

    .info-section {
        padding: 2.5rem 2rem;
    }

    .cta-section {
        padding: 2.5rem 2rem;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem 6rem;
    }

    .logo-container img {
        height: 60px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    p.subtitle {
        font-size: 1rem;
    }

    .main-container {
        margin: 0 auto 3rem;
        padding: 0 1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        margin-bottom: 0.5rem;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .card-image {
        height: 200px;
    }

    .card-body {
        padding: 1.25rem;
    }

    .card-body h3 {
        font-size: 1.1rem;
    }

    .card-body li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .info-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .info-header h2 {
        font-size: 1.6rem;
    }

    .info-header p {
        font-size: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.15rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .cta-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
    }

    /* Reduce animation intensity on mobile */
    .card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .info-card:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .cta-button:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    header {
        padding: 1rem 0.75rem 5rem;
    }

    .logo-container img {
        height: 50px;
    }

    h1 {
        font-size: 1.75rem;
    }

    p.subtitle {
        font-size: 0.95rem;
    }

    .main-container {
        padding: 0 0.75rem;
    }

    .card-header {
        padding: 1.25rem;
    }

    .card-header h2 {
        font-size: 1.2rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .card-image {
        height: 180px;
    }

    .card-body {
        padding: 1rem;
    }

    .card-body h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .card-body li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .info-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .info-header h2 {
        font-size: 1.4rem;
    }

    .info-header p {
        font-size: 0.95rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-card h3 {
        font-size: 1.05rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .info-icon {
        font-size: 2.25rem;
    }

    .cta-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }

}


.card {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.card:nth-child(1) {
    transition-delay: 0.1s;
}

.card:nth-child(2) {
    transition-delay: 0.2s;
}

.card.visible:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 30px -5px rgb(0 0 0 / 0.15), 0 10px 15px -6px rgb(0 0 0 / 0.1);
}

.card-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-old {
    background: #f1f5f9;
    color: #64748b;
}

.tag-new {
    background: #dbeafe;
    color: #2563eb;
}

.card-image {
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or contain, depending on image aspect ratio. Cover is usually better for filling */
    object-position: top center;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.card-body ul {
    list-style: none;
}

.card-body li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.card-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--light-text);
    font-weight: bold;
}

.card.new .card-body li::before {
    content: '✓';
    color: var(--success);
}

.info-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.info-card:nth-child(1) {
    transition-delay: 0.1s;
}

.info-card:nth-child(2) {
    transition-delay: 0.2s;
}

.info-card:nth-child(3) {
    transition-delay: 0.3s;
}

.info-card.visible:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

.info-card.visible:hover .info-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-10px) scale(1.1);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
    }

    75% {
        transform: translateY(-8px) scale(1.08);
    }
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.6;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px -3px rgba(37, 99, 235, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.footer {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 2rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TRANSITION SECTION: SGA => SAV
   ======================================== */

.transition-section {
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, #f8fafc 30%, #eff6ff 100%);
    padding: 2rem 1.5rem 3rem;
    margin: -6rem 0 0 0;
    position: relative;
    overflow: visible;
    z-index: 100;
}

.transition-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 150;
}

.system-box {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 200;
}

.system-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.system-box:hover::before {
    opacity: 1;
}

.old-system {
    border-color: rgba(100, 116, 139, 0.2);
}

.old-system::before {
    color: #64748b;
}

.new-system {
    border-color: rgba(37, 99, 235, 0.3);
    background: #ffffff;
}

.new-system::before {
    color: #2563eb;
}

.system-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15),
        0 12px 15px -8px rgba(0, 0, 0, 0.12);
}

.new-system:hover {
    box-shadow: 0 20px 35px -8px rgba(37, 99, 235, 0.25),
        0 12px 15px -8px rgba(37, 99, 235, 0.2);
}

.system-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.old-system .system-label {
    color: #64748b;
}

.new-system .system-label {
    color: #2563eb;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.system-acronym {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.old-system .system-acronym {
    color: #475569;
}

.new-system .system-acronym {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.system-box:hover .system-acronym {
    transform: scale(1.05);
}

.system-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.system-url {
    font-size: 1.2rem;
    font-family: 'Courier New', monospace;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-top: 1rem;
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

a.system-url:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.old-system .system-url {
    background: #f1f5f9;
    color: #64748b;
}

.new-system .system-url {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

/* Arrow Container */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow-icon {
    width: 64px;
    height: 64px;
    color: #2563eb;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(8px) scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .transition-section {
        background: linear-gradient(to bottom, transparent 0%, transparent 25%, #f8fafc 25%, #eff6ff 100%);
        padding: 1.5rem 1.5rem 2.5rem;
        margin: -4.5rem 0 0 0;
    }

    .transition-container {
        gap: 1.5rem;
    }

    .system-box {
        padding: 2rem 1.5rem;
    }

    .system-acronym {
        font-size: 3rem;
    }

    .arrow-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .transition-section {
        background: linear-gradient(to bottom, transparent 0%, transparent 20%, #f8fafc 20%, #eff6ff 100%);
        padding: 1rem 1rem 2rem;
        margin: -4rem 0 0 0;
    }

    .transition-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .arrow-container {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .system-box {
        padding: 1.75rem 1.25rem;
    }

    .system-acronym {
        font-size: 2.75rem;
    }

    .system-name {
        font-size: 0.95rem;
    }

    .system-url {
        font-size: 1rem;
        padding: 0.4rem 0.85rem;
    }

    .arrow-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .transition-section {
        background: linear-gradient(to bottom, transparent 0%, transparent 15%, #f8fafc 15%, #eff6ff 100%);
        padding: 0.75rem 0.75rem 1.5rem;
        margin: -3.5rem 0 0 0;
    }

    .system-box {
        padding: 1.5rem 1rem;
    }

    .system-label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .system-acronym {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .system-name {
        font-size: 0.875rem;
    }

    .system-url {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
        margin-top: 0.75rem;
    }

    .arrow-icon {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   BUTTONS IN SYSTEM BOXES
   ======================================== */

button.btn-old,
button.btn-new {
    display: inline-block !important;
    margin-top: 1.25rem;
    padding: 0.65rem 1.5rem !important;
    border: none !important;
    border-radius: 9999px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.15) !important;
    font-family: 'Outfit', sans-serif !important;
    outline: none !important;
    text-decoration: none !important;
}

button.btn-old {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
    color: white !important;
}

button.btn-old:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 16px -4px rgba(71, 85, 105, 0.4) !important;
    color: white !important;
}

button.btn-new {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
}

button.btn-new:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.5) !important;
    color: white !important;
}

button.btn-old:active,
button.btn-new:active {
    transform: translateY(-1px) scale(1.02) !important;
}

/* ========================================
   CUSTOM MODALS
   ======================================== */

.modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-custom-content {
    background: white;
    border-radius: 1.25rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-custom-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 1.25rem 1.25rem 0 0;
}

.modal-custom-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.close-modal {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    margin-left: 1rem;
}

.close-modal:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.modal-custom-body {
    padding: 2rem;
}

.modal-custom-body .lead {
    font-size: 1.1rem;
    color: #64748b;
}

/* Feature List in Modal */
.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #cbd5e1;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    border-left-color: #2563eb;
    transform: translateX(5px);
}

.feature-item.featured {
    border-left-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.feature-item.featured:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    flex: 1;
}

.feature-content h5 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Modal CTA Button */
.btn-modal-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.4);
}

.btn-modal-cta:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.6);
    color: white;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-custom {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .modal-custom-content {
        max-height: 85vh;
        border-radius: 1rem;
    }

    .modal-custom-header {
        padding: 1.5rem 1.5rem 1rem;
        border-radius: 1rem 1rem 0 0;
    }

    .modal-custom-header h3 {
        font-size: 1.25rem;
    }

    .close-modal {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .modal-custom-body {
        padding: 1.5rem;
    }

    .modal-custom-body .lead {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-icon {
        font-size: 1.75rem;
        width: 40px;
        height: 40px;
    }

    .feature-content h5 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

    .btn-modal-cta {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-custom-header {
        padding: 1.25rem 1rem 0.85rem;
    }

    .modal-custom-header h3 {
        font-size: 1.1rem;
    }

    .close-modal {
        width: 32px;
        height: 32px;
        font-size: 1.35rem;
        margin-left: 0.5rem;
    }

    .modal-custom-body {
        padding: 1.25rem;
    }

    .feature-item {
        padding: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        width: auto;
        height: auto;
    }

    .feature-content h5 {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.825rem;
    }

    button.btn-old,
    button.btn-new {
        padding: 0.55rem 1.25rem !important;
        font-size: 0.85rem !important;
        width: 100%;
        margin-top: 1rem;
    }
}