/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3b5a9c;
    --primary-dark: #2c4578;
    --secondary: #ff6b55;
    --secondary-dark: #e55a47;
    --light: #f9fafb;
    --dark: #1e2a3c;
    --gray: #5f6c7b;
    --light-gray: #f8fafc;
    --success: #22c55e;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 60px -12px rgba(59, 90, 156, 0.3);
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fdfdfd;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
}

h2 {
    font-size: clamp(2.1rem, 5vw, 3rem);
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: var(--secondary);
    border-radius: 5px;
}

/* Buttons and CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b5a9c 0%, #2c4578 100%);
    color: white;
    text-align: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: white;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    margin-bottom: 1.4rem;
    line-height: 1.15;
}

.hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.6rem;
    font-size: 1.1rem;
}

/* Pricing Highlight */
.pricing-highlight {
    background-color: white;
    color: var(--primary);
    padding: 28px 40px;
    border-radius: 16px;
    display: inline-block;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
    max-width: 500px;
}

.pricing-highlight h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-highlight .price {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.pricing-highlight .period {
    color: #64748b;
    font-size: 1.3rem;
}

/* Services Page Specific */
.advertising-rules {
    padding: 100px 0;
    background-color: white;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.rule-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;              /* ← space between number and icon – feel free to adjust */
    margin-bottom: 2rem;       /* breathing room before the title */
}

.rule-number {
    width: 54px;
    height: 54px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.7rem;
    flex-shrink: 0;            /* prevents it from shrinking */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);  /* optional nice touch */
}

.rule-card i {
    font-size: 3.4rem;         /* slightly bigger icon looks balanced */
    color: var(--primary);
    line-height: 1;            /* helps vertical alignment */
}

/* Optional: subtle hover effect on the header area */
.rule-card:hover .step-header i {
    transform: scale(1.12);
    transition: transform 0.35s ease;
}

.rule-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-md);
}

.rule-card i {
    font-size: 3.2rem;
    color: var(--primary);
    margin: 1.2rem 0 1.4rem;
}

.rule-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.rule-card p {
    color: var(--gray);
}

.rule-number {
    width: 52px;
    height: 52px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1.4rem;
    font-size: 1.6rem;
}

/* Website Examples */
.website-examples {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.examples-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 3rem;
}

.example-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.example-image {
    height: 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.example-image::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 10px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    pointer-events: none;
}

.example-content {
    padding: 28px;
}

.example-content h3 {
    margin-bottom: 0.8rem;
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.tag {
    background-color: #e2e8f0;
    color: #475569;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Custom Solutions */
.custom-solutions {
    padding: 100px 0;
    background-color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.solution-item {
    background-color: var(--light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.solution-item:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.solution-item:hover h3,
.solution-item:hover p {
    color: var(--secondary);
}

.solution-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.solution-item:hover i {
    color: var(--secondary);
}

.solution-item h3 {
    margin-bottom: 1rem;
}

/*Everything included section*/
.included-solutions {
    padding: 100px 0;
    background-color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.included-item {
    background-color: var(--light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.included-item:hover h3,
.included-item:hover p {
    color: white;
}

.included-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.included-item:hover i {
    color: white;
}

.included-item h3 {
    margin-bottom: 1rem;
}

/* Trust Points Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b5a9c 0%, #2c4578 100%);
    color: white;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.trust-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

/* Final CTA */
.final-cta {
    background: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    margin-bottom: 1.6rem;
}

/* Footer */
footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.2s;
    display: block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #374151;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Page Specific Styles */

/* Trust Points in Hero */
.hero .trust-points {
    margin-top: 50px;
}

/* Contact Form */
.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.form-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 28px 32px;
}

.form-header h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-container form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 90, 156, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.form-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.radio-option span {
    font-size: 1rem;
    color: var(--dark);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    min-width: 250px;
    position: relative;
}

#submit-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#form-result {
    margin-top: 20px;
    text-align: center;
    display: none;
}

/* Success Template */
#success-template {
    display: none;
}

.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.success-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.success-content p {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.success-next {
    margin-top: 20px !important;
    font-weight: 600;   
}

.success-content ol {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
    color: var(--gray);
    padding-left: 20px;
}

.success-content ol li {
    margin-bottom: 10px;
}

.form-error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-question.active {
    background-color: var(--light);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    margin: 0;
}

/* Contact Info Items */
.contact-detail {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
    margin-bottom: 15px;
}

.contact-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Trust Badge */
.trust-badge {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
}

.trust-badge p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.trust-badge i {
    margin-right: 10px;
    color: var(--success);
}

/* Hidden class for honeypot */
.hidden {
    display: none !important;
}

/* Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(var(--secondary-rgb, 255,107,85), 0.15);
    position: relative;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin: 1rem 0 0.5rem;
}

.price-period {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.plan-description {
    color: var(--secondary);
    font-weight: 600;
    margin: 1rem 0 1.5rem;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.how-it-works {
    padding: 7rem 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 58px;
    height: 58px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.step-card i {
    font-size: 3.6rem;
    color: var(--primary, #6366f1);
    line-height: 1;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Optional: number + icon combo gets a subtle background */
.step-header::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(var(--primary-rgb, 99,102,241), 0.07);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.step-card:hover .step-header::before {
    opacity: 1;
    transform: scale(1.4);
}

.website-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3.5rem 2.5rem;
    margin: 5rem 0;
}

.showcase-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(99, 102, 241, 0.18);
}

.device-wrapper {
    position: relative;
    padding: 2.5rem 2rem 1.8rem;
    background: linear-gradient(145deg, #1e1e2f 0%, #2a1a3a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.device-mockup {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.device-mockup--laptop {
    padding: 3.5% 5.5% 6%;
    background: #111;
    border-radius: 1rem;
}

.device-mockup--phone {
    position: absolute;
    bottom: -2.5rem;
    right: 1.5rem;
    width: 38%;
    max-width: 180px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
}

.device-screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.showcase-info {
    padding: 2rem 2.2rem 2.5rem;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.2rem 0 1.6rem;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.8rem;
    color: #4b5563;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

.glass-effect {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.browser-mockup {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        background: white;
        transition: all 0.35s ease;
        aspect-ratio: 16 / 10;
    }

    .example-card:hover .browser-mockup {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.22);
    }

    .browser-header {
        height: 36px;
        background: #f0f0f0;
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
        padding: 0 12px;
    }

    .dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot.red    { background: #ff5f56; }
    .dot.yellow { background: #ffbd2e; }
    .dot.green  { background: #27c93f; }

    .browser-body {
        height: calc(100% - 36px);
        overflow: hidden;
        background: #f8f9fa;
    }

    .browser-body img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.6s ease;
    }

    .example-card:hover .browser-body img {
        transform: scale(1.06);
    }

    .example-content {
        padding: 1.5rem;
        text-align: center;
        background: white;
        border-radius: 0 0 12px 12px;
    }

    .example-tags {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
    }

    .tag {
        background: var(--primary-light);
        color: var(--primary);
        padding: 0.35rem 0.9rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }


    /* Text Alignment */
.text-center {
    text-align: center;
}

/* Lead Text */
.lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

p.lead{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Section Lead */
.section-lead {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Section Padding */
.section-padded {
    padding: 7rem 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Final CTA Box */
.final-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: var(--shadow-lg);
}

.final-cta-box .lead {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta-box p {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* Button Variations */
.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-xl {
    padding: 18px 45px;
    font-size: 1.3rem;
}

/* Business Type */
.business-type {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

    p.dark{
        color: #333333;
    }

    p.light{
        color: rgb(194, 193, 193);
    }

    h3.light{
        color:#3e3e3e
    }

    strong.light{
        color:#ffffff;
    }

    p.lead{
        font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    }

/* Process Section */
        .process-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
            margin-bottom: 60px;
        }

        .process-cta {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,102,204,0.08);
        }

        /* Form Improvements */
        .contact-form-wrapper {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            margin-top: 40px;
        }

        .form-intro {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f5ff;
        }

        .form-intro h3 {
            color: var(--primary-dark);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .form-intro p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .examples-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .rules-container,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-highlight {
        padding: 24px 28px;
    }
    
    .pricing-highlight .price {
        font-size: 3rem;
    }
    
    .contact-form-wrapper {
                padding: 30px 20px;
            }
            
            .process-step {
                padding: 25px 15px;
            }
            
            .step-content h3 {
                font-size: 1.3rem;
            }
            
            .step-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .process-section {
                padding: 60px 0 40px;
            }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container form {
        padding: 30px 20px;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }
    
    .radio-group {
        gap: 8px;
    }
    
    .form-submit button {
        min-width: 100%;
        width: 100%;
    }
    
    .success-content {
        padding: 30px 15px;
    }
    
    .hero .trust-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .examples-container {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .form-intro {
                padding: 0 15px 25px;
            }
            
            .form-intro h3 {
                font-size: 1.5rem;
            }
            
            .process-cta {
                padding: 25px 15px;
                margin: 40px 15px 0;
            }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .form-submit button {
        padding: 14px 20px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .success-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .form-submit button {
        padding: 14px 20px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}