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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: #059669;
    border: 2px solid #10b981;
}

.btn-outline:hover {
    background: #ecfdf5;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-white {
    background: white;
    color: #059669;
}

.btn-white:hover {
    background: #ecfdf5;
    transform: scale(1.05);
}

.btn-secondary {
    background: #047857;
    color: white;
}

.btn-secondary:hover {
    background: #065f46;
    transform: scale(1.05);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #f0fdf4 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(167, 243, 208, 0.3);
}

.hero-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(134, 239, 172, 0.2);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #d1fae5;
    color: #047857;
    border-radius: 9999px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title-accent {
    display: block;
    color: #10b981;
    margin-top: 0.5rem;
}

.domain-boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.domain-box {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #10b981;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.domain-box:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.domain-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #059669;
}

.domain-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 56rem;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #6b7280;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: white;
}

.section-header-light .section-subtitle {
    color: #d1fae5;
}

/* Value Section */
.value-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1fae5;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #10b981;
}

.benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #059669;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    color: white;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-content h3 {
    color: #059669;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.6;
}

.value-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-radius: 1rem;
    padding: 3rem;
}

.value-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.value-point:hover {
    transform: scale(1.05);
}

.value-point svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.value-point span {
    color: #374151;
    font-weight: 500;
}

/* Market Section */
.market-section {
    position: relative;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    color: white;
    overflow: hidden;
}

.market-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, white 1px, transparent 1px);
    background-size: 50px 50px;
}

.market-container {
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #10d9a0;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1fae5;
}

.market-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.market-box-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.market-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.market-segment {
    text-align: center;
}

.segment-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.market-segment:hover .segment-icon {
    background: #10b981;
    transform: scale(1.1);
}

.segment-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #d1fae5;
}

.market-segment:hover .segment-icon svg {
    color: white;
}

.market-segment h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.market-segment p {
    color: #d1fae5;
}

.positioning-statement {
    text-align: center;
}

.positioning-statement p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d1fae5;
}

.positioning-statement strong {
    color: white;
}

/* Showcase Section */
.showcase-section {
    background: #f9fafb;
}

.domain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.domain-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.domain-card:hover {
    border-color: #10b981;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.domain-card-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.domain-card:hover .domain-card-icon {
    transform: scale(1.1) rotate(6deg);
}

.domain-card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #059669;
}

.domain-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.domain-card-name {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.domain-card:hover .domain-card-name {
    color: #047857;
}

.domain-card-tagline {
    font-size: 1.125rem;
    font-weight: 500;
    color: #6b7280;
}

.domain-card-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.domain-benefits {
    margin-bottom: 2rem;
}

.domain-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.domain-benefit:hover {
    transform: scale(1.05);
}

.domain-benefit svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.domain-benefit span {
    color: #374151;
}

.bundle-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.bundle-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bundle-description {
    font-size: 1.25rem;
    color: #d1fae5;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Use Cases Section */
.usecases-section {
    background: white;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.usecase-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.usecase-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.usecase-icon {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.usecase-card:hover .usecase-icon {
    transform: scale(1.1) rotate(6deg);
}

.usecase-icon svg {
    width: 2rem;
    height: 2rem;
    color: #059669;
}

.usecase-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.usecase-card:hover h3 {
    color: #059669;
}

.usecase-card p {
    color: #6b7280;
    line-height: 1.6;
}

.usecase-info {
    margin-top: 4rem;
    text-align: center;
}

.usecase-info > p {
    display: inline-block;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 2px solid #d1fae5;
    border-radius: 1rem;
    padding: 2rem;
    font-size: 1.125rem;
    color: #374151;
}

.usecase-info strong {
    color: #059669;
}

.usecase-info span {
    display: block;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ecfdf5 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 1rem;
    padding: 2rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1fae5;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    background: #10b981;
}

.contact-item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #059669;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-item-icon svg {
    color: white;
}

.contact-item-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-item-link {
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-link:hover {
    color: #10b981;
}

.contact-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: #ecfdf5;
    border-radius: 0.75rem;
}

.contact-notice p {
    font-size: 0.875rem;
    color: #047857;
    font-weight: 500;
}

.contact-form-wrapper {
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 1rem;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    position: relative;
}

.btn-loading {
    display: none;
}

/* Trust Section */
.trust-section {
    background: white;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #b45309;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.urgency-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-card {
    text-align: center;
}

.trust-card-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.1) rotate(6deg);
}

.trust-card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #059669;
}

.trust-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

.final-cta {
    position: relative;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.final-cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.final-cta-blob {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(80px);
}

.final-cta-blob-1 {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
}

.final-cta-blob-2 {
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
}

.final-cta-content {
    position: relative;
    z-index: 10;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: #d1fae5;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    margin-top: 3rem;
    text-align: center;
}

.trust-badge p {
    color: #6b7280;
}

.trust-badge strong {
    color: #1f2937;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10d9a0;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #10d9a0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Toast Notifications */
#toastContainer {
    position: fixed;
    top: 5rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    min-width: 300px;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-success {
    background: #10b981;
}

.toast-error {
    background: #ef4444;
}

.toast svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .domain-boxes {
        flex-direction: column;
    }
    
    .domain-separator {
        transform: rotate(90deg);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .domain-name {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
