body {
    font-family: 'Inter', sans-serif;
    color: #31313c;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.start-home {
    width: 100%;
    height: 85vh;
    background-image: url('https://cdn.tenzix.com/homepage/img/img_1.png'), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.start-home {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.start-home-content {
    margin-left: 20vw;
    color: white;
}

.btn {
    border-radius: 25px;
}

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

.check-top {
    width: 20px;
    margin-right: 10px;
    font-weight: bold;
}

.domain-container {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    justify-content: center;
}

.domainsearch-box button .fa {
    color: white;
}

.domain-options {
    display: flex;
    align-items: flex-end;
    font-family: 'Open Sans';
}

.domain-options div {
    margin: 0 10px;
    text-align: center;
}

.domain-options div span {
    display: block;
    font-weight: bold;
    font-size: 25px;
}

.search-btn {
    background-color: var(--bs-dark-text-emphasis);
    color: white;
    border-radius: 0px;
    margin-right: 15px;
}

.input-group input {
    border-radius: 0px;
}

.underline:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #a5a5a5;
    z-index: -1;
}

.domain-input {
    padding-right: 20vw;
}

@media (max-width: 576px) {
    .domain-container {
        display: none;
    }
}

.btn {
    background-color: rgb(45, 45, 48);
    color: white;
}

.bs-icon-md.bs-icon-rounded.bs-icon-primary.bs-icon {
    background-color: rgb(45, 45, 48);
}

.no-background {
    background-color: rgba(255, 210, 0, 0) !important;
}

:root {
    --bs-body-color: rgb(45, 45, 48) !important;
}

.icon {
    color: rgb(45, 45, 48) !important;
}

.error {
    color: rgb(151, 41, 41);
}
.success {
    color: rgb(45, 45, 48);
}

table {
    width: 50%;
    border-collapse: collapse;
    margin: 20px auto;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 10px;
    text-align: left;
}

/* Design System & Payment Methods Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #2d2d30 0%, #3f3f44 100%);
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --text-main: #31313c;
    --text-muted: #64748b;
    --accent: #2d2d30;
    --transition: all 0.2s ease-in-out;
}

.gradient-text {
    color: var(--text-main);
    font-weight: 700;
}

/* Product Hero */
.product-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.hero-title-lg {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.payment-method-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment-method-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payment-method-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
}

.payment-method-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.payment-method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.payment-method-features {
    margin-bottom: 30px;
    padding: 0;
}

.payment-method-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.payment-method-features li i {
    color: #059669;
    font-size: 14px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
}

.card-brands {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Security Section */
.security-section {
    padding: 60px 0;
    text-align: center;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.security-badge i {
    font-size: 32px;
    color: var(--accent);
}

.security-badge span {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Payment Info Grid */
.payment-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.payment-info-card {
    background: #f8fafc;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.payment-info-card i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 20px;
}

.payment-info-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.payment-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 300px;
}

.faq-item.active .icon-chevron {
    transform: rotate(180deg);
}

.icon-chevron {
    transition: var(--transition);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hero-title-lg {
        font-size: 2.25rem;
    }
}