@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-family: "Oswald", sans-serif; 
    line-height: 1.2em;
    color: #111;
    font-size: 50px;
    text-align: center;
}

h2 {
    font-family: "Oswald", sans-serif; 
    line-height: 1.2em;
    color: #004080;
    font-size: 36px;
    text-align: center;    
}

h3 {
    font-family: "Oswald", sans-serif; 
    line-height: 1.2em;
    color: #1CA7EA;
    font-size: 24px;
}

p, span, a, li, td, th, label, select, radio, input, button, textarea, option, .error-msg, .success-msg, summary, .msg, .error, .pricing-badge, .activities-title, .post-metrics div {
   font-family: "Inter", sans-serif;  
   line-height: 1.5em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}  

a {
    transition: all 0.3s ease-in-out;
}
a:hover {
    opacity: 0.7;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}
   
body {
    margin: 0;  
    background-color: #FAFCFF;
}

/* HEADER */
header {
    width: 100%;
    background-color: #fff;
    border-bottom: #eee 1px solid;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.05);
}
header nav  {
    gap: 12px;
    display: flex;
    align-items: center;
}
header nav a {
    font-size: 17px!important;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.close-btn {
    display: none;
}
.overlay {
    display: none;
}

/* MAIN CONTAINER */
main {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 20px;
}

/* HERO */
#hero h1 span {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1em;
}
#hero p {
    font-size: 20px;
    color: #555;
    text-align: center;
}
#hero div#logo-row {
    text-align: center;
    display: flex;
    gap: 15px;
    margin: auto;
    align-items: center;
    justify-content: center;
}
#hero div#form {
    background-color: #fff;
    border-top: 3px solid #1CA7EA;;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#hero form#indexerForm { 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
}
#hero form .input-group {
    position: relative;
    border-radius: 12px;
    border: 1px solid #ccc;
}
#hero form .input-group:focus-within {
    box-shadow: 0 12px 25px rgba(58, 123, 213, 0.15), inset 0 0 0 1px rgba(0, 210, 255, 0.3);
}
#hero form .input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 17px;
    transition: all 0.4s ease;
    z-index: 2;
}
#hero form .input-group:focus-within i {
    color: #00d2ff;
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.7);
}
#hero form .input-group input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
}
#hero form .input-group input::placeholder { 
    color: #bbb; 
    font-weight: 400; 
}
#hero form .input-group:focus-within input::placeholder { 
    opacity: 0.4; 
}
#hero form .submit-btn {
    position: relative;
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
}
#hero form .submit-btn:hover { 
    transform: translateY(-3px); 
}
#hero form .submit-btn:active { 
    transform: translateY(0); 
    box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3); 
}
#hero form .submit-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}
#hero form .submit-btn:hover::after {
    left: 200%; 
}
#hero form .error {
    background-color: #ef4444;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

/* GENERAL GRID */
.generalgrid {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid div {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;    
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;  
    text-align: center;
}
.grid div i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 28px;
}
.grid div p {
    color: #555;
    font-size: 17px;
}

.whygrid {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;
}


/* HOW IT WORKS */
.generaltwocolumns {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;
} 
.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.step:nth-child(even) .step-content {
    order: 2;
}
.step:nth-child(even) .step-image {
    order: 1;
}
.step img {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;    
    border-radius: 20px;
}
.step-content span {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding: 20px;
}
.step-content  p {
    color: #555;
    font-size: 17px;  
}

/* PRO */
#pro-plans {
    margin: 100px auto 40px auto;
    background-color: #fff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 3px solid #1CA7EA;;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.pricing-price {
    font-size: 40px!important;
    font-weight: 700;
    color: #1BA6EA!important;
    margin: 10px auto;
    display: flex;
    align-items: baseline;
    gap: 5px;
    justify-content: center;
    background-color: #FAFCFF;
    padding: 30px;
    border-radius: 20px;
    display: block;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.pricing-price span {
    font-size: 20px;
    color: #004080;
    font-weight: 500;
}
#pro-plans p {
    color: #555;
    font-size: 17px;
    text-align: center;
}
#pro-plans .btn-pricing {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 17px!important;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 250px;
    margin: 25px auto;
}
#pro-plans .btn-pricing:hover {
    transform: translateY(-3px);
}

/* TESTIMONIALS */
#testimonials {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;
    text-align: center;
}
#testimonials div {
    max-width: 500px;
    width: 100%;
    margin: auto; 
}
#testimonials p {
    font-size: 17px;
    color: #000;
}

/* FAQ */
#faq {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;  
}
.faq-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-container details {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;    
    border-radius: 20px;    
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-container details:hover {
    transform: translateY(-2px);
}
.faq-container summary {
    padding: 22px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-container summary::-webkit-details-marker { 
    display: none; 
}
.faq-container summary::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    color: #3a7bd5;
    transition: transform 0.3s ease;
}
.faq-container details[open] summary::after {
    transform: rotate(45deg);
    color: #00d2ff;
}
.faq-container p {
    padding: 0 30px 25px 30px;
    color: #555;
    font-size: 17px;
    margin: 0;
    animation: fadeInDown 0.4s ease-out;
}
@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* THANK YOU */
#thank-you {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;  
    text-align: center;
}
#thank-you p {
    font-size: 17px;
    color: #555;
    text-align: center;
}
#thank-you a#pricebtn {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 17px!important;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 250px;
    margin: 45px auto;
}
#thank-you a#pricebtn:hover {
    transform: translateY(-3px);
}

/* WEBSITE DIRECTORY */
#websitedirectory {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;  
    text-align: center;
}
#websitedirectory p {
    font-size: 17px;
    color: #555;
    text-align: center;
}
#submissions {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;
}
.search-form {
    margin-bottom: 50px;
    text-align: center;
}
.search-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid #004080;
    border-radius: 50px;
    padding: 6px 6px 6px 25px;
    max-width: 550px;
    margin: 0 auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-wrapper:focus-within {
    border-color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}
.search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #555;
    font-size: 16px;
    outline: none;
}
.search-input::placeholder {
    color: #555;
}
.search-btn {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    border: none;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}
.clear-btn {
    display: inline-block;
    margin-top: 15px;
    color: #00d2ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.clear-btn:hover {
    text-decoration: underline;
}
#submissions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#submissions li {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;  
}
#submissions div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#submissions div p {
    color: #004080;
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;  
    margin: 5px;
}
#submissions div p.date {
    color: #aaa;
    font-size: 12px;
    text-transform: capitalize;  
    margin: 0px;
}
#submissions a.websitelink {
    background-color: #1CA7EA; 
    color: #fff; 
    font-weight: bold;
    padding: 7px 12px; 
    border-radius: 8px;
    font-size: 17px!important;
    text-decoration: none;
}
.pagination {
    display: flex;
    flex-direction: row !important; 
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}
.pagination .page-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    background-color: #1CA7EA; 
    color: #fff; 
    font-weight: bold;
    border-radius: 8px;
    font-size: 15px !important;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.pagination .page-btn:hover:not(.disabled):not(.active) {
    background-color: #555;
    color: #ffffff;
}
.pagination .page-btn.active {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.4);
}
.pagination .page-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.pagination .page-dots {
    color: #64748b;
    font-weight: 700;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
}

/* GENERAL */
#generalpage {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;  
    text-align: center;
}
#generalpage p {
    font-size: 17px;
    color: #555;
}
.general-container {
    max-width: 1200px;
    margin: 0px auto 40px auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    color: #cbd5e1;
}
.general-container p {
    color: #555;
    font-size: 17px;
}
.general-container h2 {
    text-align: left;
}
.general-container ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.general-container ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #555;
}
.general-container ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    top: 0;
    color: #004080;
    font-size: 17px;
}
.general-container strong {
    color: #555;
    font-weight: 600;
}
.general-container .effective-date {
    font-size: 14px;
    color: #555!important;
}
.blog-container {
    max-width: 1200px;
    margin: 0px auto 40px auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    color: #cbd5e1;
}
.blog-container p, .blog-container p a, .blog-container li a {
    color: #555;
    font-size: 17px;
}
.blog-container img {
    margin: auto;
    display: block;
}
.blog-container h2 {
    text-align: left!important;
}
.blog-container ul {
    list-style-type: square;
}
.blog-container ul li {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}
.blog-container .effective-date {
    font-size: 14px;
    color: #555!important;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px 10px 10px 10px;
    background-color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
footer p#live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(0, 210, 255, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    margin: 0px auto 25px auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
}
footer p#live-counter .pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d2ff;
    animation: cyan-pulse 1.5s infinite;
}
footer p#live-counter .counter-text {
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
footer p#live-counter .counter-number {
    color: #18528C;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
@keyframes cyan-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 210, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}
footer p, footer a {
    color: #555;
    font-size: 13px!important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.hamburger {
    display: block;
}
header nav {
    position: fixed;
    top: 0;
    left: -100%; 
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: left 0.3s ease-in-out;
    z-index: 1002;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}
header nav.open {
    left: 0; 
}
.close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #555;
}
.overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
}
h1 {
    font-size: 36px!important;
}
h2 {
    font-size: 30px!important;
}
#hero p {
    font-size: 17px;
}
#hero div#logo-row img {
    width: 40px;
    height: 40px;
}
#hero div#form {
    padding: 40px 20px;
}
.generalgrid, .generaltwocolumns, #faq, #submissions, #legal {
    margin-top: 60px;
}
.generaltwocolumns .step-content span {
    width: 45px;
    height: 45px;
    font-size: 20px;
}
.generaltwocolumns .step-content h3 {
    margin-top: 5px;
}
.grid {
    grid-template-columns: 1fr;
}
.whygrid {
    margin-top: 0px;
}
.step {
    display: flex;
    flex-direction: column-reverse; 
    gap: 20px;
    margin-bottom: 20px;
}
.step:nth-child(even) .step-content, .step:nth-child(even) .step-image {
    order: 0;
}
}