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

:root {
    --navy: #001F3F;
    --navy-dark: #001429;
    --navy-light: #003366;
    --silver: #C0C0C0;
    --silver-light: #E5E5E5;
    --silver-dark: #999999;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --success: #28A745;
    --accent-blue: #0066CC;
    --gradient-navy: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    --gradient-silver: linear-gradient(135deg, #E5E5E5 0%, #C0C0C0 100%);
    --shadow-sm: 0 2px 4px rgba(0, 31, 63, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 31, 63, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 31, 63, 0.2);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--navy);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-serif);
}

.dot-bond {
    color: var(--accent-blue);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    border: 1px solid var(--silver-light);
}

.verified-badge svg {
    width: 16px;
    height: 16px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--navy);
}

.enterprise-link {
    background: var(--gradient-navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.enterprise-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background: var(--off-white);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.hero-title {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--font-serif);
    color: var(--navy);
}

.highlight {
    color: var(--accent-blue);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-silver);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Domain Preview */
.domain-preview {
    margin: 48px auto;
    max-width: 600px;
}

.preview-input {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--silver-light);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.domain-field {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    outline: none;
    background: transparent;
}

.domain-field::placeholder {
    color: var(--silver);
}

.domain-extension {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-blue);
    padding-right: 20px;
}

.preview-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    fill: var(--success);
}

/* CTA Section */
.cta-section {
    margin-top: 48px;
}

.cta-button {
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 8px;
}

.cta-button.primary {
    background: var(--gradient-navy);
    color: var(--white);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.cta-button.secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}

/* Trust Bar */
.trust-bar {
    background: var(--gradient-navy);
    padding: 40px 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 14px;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    font-family: var(--font-serif);
    color: var(--navy);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 64px;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.step-icon svg {
    width: 64px;
    height: 64px;
    color: var(--accent-blue);
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-blue);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

.process-arrow {
    font-size: 32px;
    color: var(--silver);
    flex-shrink: 0;
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: var(--off-white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--silver-light);
    border-radius: 8px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.case-icon {
    font-size: 32px;
}

.case-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.case-card > p {
    font-family: monospace;
    font-size: 14px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    background: var(--off-white);
    padding: 8px 12px;
    border-radius: 4px;
}

.case-features {
    list-style: none;
}

.case-features li {
    padding: 8px 0;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
}

.case-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.feature-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--accent-blue);
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

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

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--silver-light);
    border-radius: 8px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}

.plan-price {
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    color: var(--gray);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
}

.period {
    font-size: 18px;
    color: var(--gray);
}

.custom-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}

.plan-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--silver-light);
}

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

.plan-features svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--success);
}

.plan-cta {
    width: 100%;
    padding: 16px 32px;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-cta:hover {
    background: var(--navy);
    color: var(--white);
}

.featured-cta {
    background: var(--gradient-navy);
    color: var(--white);
    border: none;
}

.featured-cta:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--silver-light);
}

.pricing-note code {
    background: var(--off-white);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--accent-blue);
}

.custom-pricing {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.custom-pricing h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}

.custom-pricing p {
    color: var(--gray);
    margin-bottom: 24px;
}

.custom-cta {
    background: var(--gradient-silver);
    color: var(--navy);
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--white);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin: 64px 0;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.logo-placeholder {
    font-size: 16px;
    font-weight: 600;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-section {
    max-width: 800px;
    margin: 80px auto 0;
}

.testimonial {
    background: var(--off-white);
    padding: 48px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial cite {
    display: block;
    text-align: right;
}

.testimonial strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial span {
    color: var(--gray);
    font-size: 16px;
}

/* Enterprise CTA */
.enterprise-cta {
    padding: 100px 0;
    background: var(--gradient-navy);
    text-align: center;
    color: var(--white);
}

.enterprise-content h2 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    font-family: var(--font-serif);
}

.enterprise-content p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.enterprise-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 18px;
}

.enterprise-contact p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.phone-number:hover {
    opacity: 0.8;
}

/* Micro-Services Section */
.micro-services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.service-category {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 12px 0;
    border-bottom: 1px solid var(--silver-light);
    font-size: 16px;
    color: var(--gray);
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category strong {
    color: var(--navy);
    font-weight: 600;
}

.services-cta {
    text-align: center;
    margin-top: 64px;
}

.cname-note {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    border: 2px dashed var(--silver);
    color: var(--gray);
}

.cname-note code {
    background: var(--off-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--accent-blue);
    margin: 0 4px;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-navy);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-serif);
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    border-radius: 4px 0 0 4px;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--white);
    color: var(--navy);
    border: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--off-white);
    transform: translateX(2px);
}

.newsletter-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
        width: 100%;
    }
    
    .newsletter-form button {
        margin-top: 12px;
    }
}

/* Footer */
.footer {
    padding: 80px 0 32px;
    background: var(--navy-dark);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-serif);
}

.footer-section p {
    color: var(--silver);
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    gap: 12px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    color: var(--silver);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 0 0;
    }
    
    .preview-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-items {
        gap: 24px;
    }
    
    .process-grid {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .features-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
    }
}