* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #faf8f6 0%, #f1f0ef 50%, #e8e7e6 100%);
}

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

/* Construction Banner */
.construction-banner {
    background: linear-gradient(135deg, #f7d0d4 0%, #e2b6bb 100%);
    color: #8a5f5c;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(226, 182, 187, 0.3);
    border-bottom: 1px solid rgba(138, 95, 92, 0.2);
}

.construction-banner .heart {
    color: #c7939a;
    margin: 0 4px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 44px; /* Height of construction banner */
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo-image {
    opacity: 0.9;
}

.speech-bubble {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7d0d4 0%, #e2b6bb 100%);
    border-radius: 20px 20px 20px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(226, 182, 187, 0.3);
}

.broken-heart {
    font-size: 20px;
    filter: grayscale(0.2);
}

.nav-logo h2 {
    color: #4a5568;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #718096;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a67c79;
}

.cta-button {
    background: linear-gradient(135deg, #c7939a 0%, #a67c79 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(166, 124, 121, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #a67c79 0%, #8a5f5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 124, 121, 0.4);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 20px;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #6366f1;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #c7939a 0%, #a67c79 100%) !important;
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 25px !important;
    text-align: center !important;
    border-bottom: none !important;
    box-shadow: 0 2px 8px rgba(166, 124, 121, 0.3) !important;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #a67c79 0%, #8a5f5c 100%) !important;
}

/* Hero Section */
.hero {
    margin-top: 114px; /* Navbar height + construction banner */
    padding: 80px 0;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
    color: white;
    overflow: hidden;
    position: relative;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #f7d0d4, #e2b6bb, #d4a5aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-button {
    background: linear-gradient(135deg, #c7939a 0%, #a67c79 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(166, 124, 121, 0.3);
}

.primary-button:hover {
    background: linear-gradient(135deg, #a67c79 0%, #8a5f5c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 124, 121, 0.4);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* Notification Bubble */
.notification-button {
    position: relative;
}

.notification-bubble {
    position: absolute;
    top: -8px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 10;
}

.notification-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ff4444;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-radiate 2s infinite;
}

.notification-pulse::before,
.notification-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 68, 68, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

.notification-pulse::after {
    animation-delay: 0.5s;
}

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

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    80% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #2d3748;
    border-radius: 35px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(45, 55, 72, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.imessage-header {
    background: #1c1c1e;
    padding: 5px 5px 5px;
    border-bottom: 1px solid #333;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-avatar {
    width: 40px;
    height: 40px;
    margin: 2px;
    background: linear-gradient(135deg, #f7d0d4 0%, #e2b6bb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-details {
    flex: 1;
}

.contact-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.contact-status {
    color: #8e8e93;
    font-size: 0.85rem;
}

.messages-container {
    flex: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.message-bubble {
    background: linear-gradient(135deg, #c7939a 0%, #a67c79 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    max-width: 85%;
    align-self: flex-end;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: fadeInUp 2s ease-in-out infinite alternate;
    box-shadow: 0 2px 8px rgba(166, 124, 121, 0.3);
}

.message-status {
    color: #8e8e93;
    font-size: 0.8rem;
    text-align: center;
    align-self: center;
    margin-top: 5px;
}

@keyframes fadeInUp {
    0% { opacity: 0.7; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2d3748;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    background: #f9fafb;
    transition: transform 0.3s ease;
}

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

.step-number {
    background: linear-gradient(135deg, #c7939a 0%, #a67c79 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(166, 124, 121, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.step-content p {
    color: #718096;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #a67c79;
    opacity: 0.8;
    filter: grayscale(0.3);
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.feature p {
    color: #718096;
    line-height: 1.6;
}

/* Send Section */
.send-section {
    padding: 100px 0;
    background: white;
}

.send-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.send-content h2,
.receive-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.send-content p,
.receive-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
}

.message-form {
    text-align: left;
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c7939a;
    box-shadow: 0 0 0 3px rgba(199, 147, 154, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.character-count {
    text-align: right;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #c7939a 0%, #a67c79 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 124, 121, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #a67c79 0%, #8a5f5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 124, 121, 0.4);
}

/* Receive Section */
.receive-section {
    padding: 100px 0;
    background: #f9fafb;
}

.receive-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.receive-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.receive-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.check-form {
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.check-button {
    width: 100%;
    background: #10b981;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.privacy-note {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    text-align: left;
}

.privacy-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

/* Opt-in Form Styles */
.optin-form {
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.field-help {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
    font-style: italic;
}

.compliance-checkboxes {
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group:last-child {
    margin-bottom: 0;
}

.checkbox-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
}

.link {
    color: #a67c79;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

.optin-button {
    width: 100%;
    background: linear-gradient(135deg, #8a9ba8 0%, #718096 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
}

.optin-button:hover {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(113, 128, 150, 0.4);
}

.optin-button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Compliance Notice Styles - iOS Compatible */
.compliance-notice {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.compliance-header {
    padding: 20px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.compliance-header:hover {
    background: #f1f3f4;
}

.compliance-header:active {
    background: #e8ebee;
}

.compliance-header h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    pointer-events: none;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #6b7280;
    transition: transform 0.3s ease;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.compliance-header.active .toggle-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.compliance-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.compliance-content.active {
    max-height: 500px;
}

.compliance-section {
    padding: 20px 30px 0;
}

.compliance-section:first-child {
    padding-top: 30px;
}

.compliance-notice h5 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.compliance-notice p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.compliance-notice p:last-child {
    margin-bottom: 0;
}

.opt-out-info {
    background: #fef3c7;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin: 20px 30px 30px;
}

.opt-out-info p {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
}

/* Phone number input styling */
input[type="tel"] {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', 'Source Code Pro', monospace;
    letter-spacing: 0.5px;
}

/* Enhanced checkbox styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 5px 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark {
    display: none;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

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

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f7d0d4;
}

.footer-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bubble {
    background: linear-gradient(135deg, #f7d0d4 0%, #e2b6bb 100%);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Why Section */
section.why-section {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #f8f6f4 0%, #f1efed 100%) !important;
    position: relative;
    min-height: auto;
    -webkit-transform: translateZ(0); /* iOS Safari fix */
    transform: translateZ(0); /* Standard property */
}

section.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(247, 208, 212, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(226, 182, 187, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-section .why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.why-section h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 40px !important;
    color: #2d3748 !important;
    text-align: center;
}

.why-section .why-story {
    background: white !important;
    padding: 50px 40px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    text-align: left !important;
    position: relative;
    margin: 0 auto;
    -webkit-transform: translateZ(0); /* iOS Safari fix */
    transform: translateZ(0); /* Standard property */
}

.why-section .why-story::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    color: #f7d0d4;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
    z-index: 1;
}

.why-section .why-intro {
    font-size: 1.3rem !important;
    font-style: italic !important;
    color: #a67c79 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    font-weight: 500 !important;
    display: block;
}

.why-section .why-story p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #4a5568 !important;
    margin-bottom: 25px !important;
    display: block;
}

.why-section .why-story p:last-of-type {
    margin-bottom: 30px !important;
}

.why-section .signature {
    text-align: center !important;
    padding-top: 20px !important;
    border-top: 1px solid #e5e7eb !important;
    margin-top: 20px !important;
    display: block;
}

.why-section .signature p {
    font-style: italic !important;
    color: #718096 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    display: block;
}

/* iOS Safari specific fixes */
@supports (-webkit-overflow-scrolling: touch) {
    .why-section {
        -webkit-overflow-scrolling: touch;
    }
    
    .why-story {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .compliance-content {
        -webkit-overflow-scrolling: touch;
    }
}

/* Force hardware acceleration on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 1) {
    .why-section, .why-story, .compliance-header, .compliance-content {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* iOS touch improvements */
.nav-logo,
.hamburger-menu,
.compliance-header,
.primary-button,
.secondary-button,
.submit-button,
.optin-button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Fix iOS Safari button styling */
input[type="submit"],
input[type="button"],
button {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* Fix iOS input zoom */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    font-size: 16px; /* Prevents zoom on iOS */
    -webkit-appearance: none;
    appearance: none;
}

/* iOS specific mobile fixes */
@media screen and (max-width: 768px) {
    /* Prevent iOS from adjusting font sizes */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better touch targets for iOS */
    .nav-links a,
    .mobile-menu a,
    .compliance-header {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* iOS safe area adjustments */
    .hero-container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Construction banner mobile adjustments */
    .construction-banner {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Adjust navbar positioning for mobile */
    .navbar {
        top: 36px; /* Smaller banner height on mobile */
    }
    
    /* Adjust hero section for mobile */
    .hero {
        margin-top: 106px; /* Adjusted for smaller mobile banner */
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .send-content h2,
    .receive-content h2 {
        font-size: 2rem;
    }
    
    .why-section h2 {
        font-size: 2rem !important;
    }
    
    .why-section .why-story {
        padding: 30px 25px !important;
        margin: 0 10px !important;
    }
    
    .why-section .why-intro {
        font-size: 1.2rem !important;
    }
    
    .why-section .why-story::before {
        font-size: 4rem !important;
        top: -5px !important;
        left: 20px !important;
    }
    
    .compliance-header {
        padding: 15px 20px;
    }
    
    .compliance-section {
        padding: 15px 20px 0;
    }
    
    .compliance-section:first-child {
        padding-top: 20px;
    }
    
    .opt-out-info {
        margin: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .message-form,
    .optin-form {
        padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Legal Pages Styling */
.legal-page {
    min-height: 80vh;
    padding: 164px 0 60px; /* Account for navbar + construction banner */
    background: linear-gradient(135deg, #faf8f6 0%, #f1f0ef 50%, #e8e7e6 100%);
    color: #2d3748;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(199, 147, 154, 0.3);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c7939a, #a67c79);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-meta {
    font-size: 1rem;
    color: #718096;
}

.legal-body {
    line-height: 1.8;
}

.legal-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(199, 147, 154, 0.08);
    border-left: 4px solid #c7939a;
    border-radius: 8px;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c7939a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(199, 147, 154, 0.3);
}

.legal-section p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.legal-section li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.legal-section li::before {
    content: "•";
    color: #c7939a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-footer {
    margin-top: 60px;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.legal-footer .link {
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: #c7939a;
    transition: color 0.3s ease;
}

.legal-footer .link:hover {
    color: #a67c79;
}

    /* Responsive for legal pages */
@media (max-width: 768px) {
    /* Construction banner mobile adjustments */
    .construction-banner {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Adjust legal page padding for mobile banner */
    .legal-page {
        padding: 144px 0 40px; /* Adjusted for smaller mobile banner + navbar */
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .legal-intro {
        padding: 20px;
        font-size: 1rem;
    }
}
