:root {
    --primary-color: #6B2377;
    --accent-color: #A8EE52;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-buttons .btn {
    margin-left: 8px;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #5a1e63;
    border-color: #5a1e63;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8e44ad 50%, #9b59b6 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), #7ed321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.hero-process {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-text {
    font-weight: 600;
    font-size: 18px;
}

.process-arrow {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color), #7ed321);
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 238, 82, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 238, 82, 0.4);
    color: var(--text-dark);
}

.hero-demo {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demo-window {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.demo-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.demo-controls {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.control:nth-child(1) { background: #ff5f57; }
.control:nth-child(2) { background: #ffbd2e; }
.control:nth-child(3) { background: #28ca42; }

.demo-title {
    font-weight: 600;
    color: var(--text-dark);
}

.demo-content {
    display: flex;
    min-height: 300px;
}

.demo-sidebar {
    width: 200px;
    background: #f8f9fa;
    padding: 20px;
    border-right: 1px solid var(--border-color);
}

.sidebar-item {
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: var(--primary-color);
    color: white;
}

.demo-main {
    flex: 1;
    padding: 20px;
}

.lead-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-info strong {
    color: var(--text-dark);
    font-size: 16px;
}

.lead-info p {
    color: var(--text-light);
    margin: 5px 0 0 0;
    font-size: 14px;
}

.lead-actions {
    display: flex;
    gap: 10px;
}

.btn-demo {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-demo.primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
}

.floating-avatars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border: 3px solid white;
    box-shadow: var(--shadow);
    animation: floatAvatar 8s ease-in-out infinite;
}

.avatar-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
}

.avatar-2 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
}

.avatar-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 4s;
    background: linear-gradient(135deg, #96ceb4, #ffeaa7);
}

.avatar-4 {
    bottom: 15%;
    right: 12%;
    animation-delay: 6s;
    background: linear-gradient(135deg, #dda0dd, #98d8c8);
}

.avatar-5 {
    top: 50%;
    right: 3%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #f7dc6f, #bb8fce);
}

@keyframes floatAvatar {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.intro-section {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.intro-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.how-it-works-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.step-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.laptop-mockup {
    width: 300px;
    height: 200px;
    background: var(--text-dark);
    border-radius: 15px;
    padding: 15px;
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    height: 12px;
    background: var(--border-color);
    border-radius: 4px;
}

.form-button {
    height: 20px;
    background: var(--primary-color);
    border-radius: 6px;
    width: 60%;
    margin-top: auto;
}

.search-mockup {
    width: 350px;
    height: 250px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    gap: 15px;
}

.result-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
}

.result-content {
    flex: 1;
}

.result-title {
    height: 8px;
    background: var(--text-dark);
    border-radius: 4px;
    margin-bottom: 8px;
    width: 80%;
}

.result-subtitle {
    height: 6px;
    background: var(--text-light);
    border-radius: 3px;
    width: 60%;
}

.result-score {
    color: var(--accent-color);
    font-size: 14px;
}

.connection-mockup {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-flow {
    display: flex;
    align-items: center;
    gap: 30px;
}

.connection-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.node-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.connection-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    position: relative;
}

.connection-line::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -8px;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: bold;
}

.step-content {
    padding: 2rem;
}

.step-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.step-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.coming-soon {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.tracking-section {
    background: white;
    padding: 80px 0;
}

.tracking-dashboard {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 1rem auto;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    width: 100%;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 35, 119, 0.25);
}

.contact-form .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0 auto 2rem auto;
}

.thank-you-message h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thank-you-message p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer {
    background: var(--text-dark);
    color: white;
}

.footer-brand .logo {
    color: white;
}

.footer-brand p {
    color: #adb5bd;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-info p {
    color: #adb5bd;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    border-color: #495057;
    margin: 2rem 0;
}

.footer-copyright {
    color: #adb5bd;
    margin: 0;
    font-size: 14px;
}

.pricing-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8e44ad 50%, #9b59b6 100%);
    color: white;
    padding: 100px 0 80px 0;
}

.pricing-cards {
    background: var(--light-bg);
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
}

.social-icon {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.search-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.display-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.pricing-features {
    background: white;
    padding: 80px 0;
}

.feature-benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    color: white;
}

.feature-benefit h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-comparison {
    background: var(--light-bg);
    padding: 80px 0;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.comparison-table table {
    margin-bottom: 0;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table .success {
    color: #28a745;
    font-weight: 600;
}

.comparison-table .warning {
    color: #ffc107;
    font-weight: 600;
}

.comparison-table .danger {
    color: #dc3545;
    font-weight: 600;
}

.pricing-faq {
    background: white;
    padding: 80px 0;
}

.pricing-cta {
    background: var(--light-bg);
    padding: 80px 0;
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-process {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .navbar-buttons {
        margin-top: 1rem;
    }
    
    .demo-content {
        flex-direction: column;
    }
    
    .demo-sidebar {
        width: 100%;
    }
    
    .lead-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .connection-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .connection-line {
        width: 3px;
        height: 40px;
    }
    
    .connection-line::after {
        content: '↓';
        right: -8px;
        top: 45px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .contact-card,
    .tracking-dashboard {
        padding: 2rem;
    }
    
    .step-content,
    .step-illustration {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}
