.google-form-notify {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}
.google-form-notify input[type="email"] {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    border: 1.5px solid var(--medium-gray);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    background: #fff;
    transition: border 0.2s;
}
.google-form-notify input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}
.google-form-notify .cta-btn-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.google-form-notify .cta-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 0;
    margin: 0;
}
/* Notify Form Label Styling */
.notify-label {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
    text-align: center;
    letter-spacing: 0.01em;
}
/* Notify Form Layout */
.notify-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.notify-form input[type="email"] {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    border: 1.5px solid var(--medium-gray);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    background: #fff;
    transition: border 0.2s;
}
.notify-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.cta-btn-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.notify-form .cta-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 0;
    margin: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0055cc;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b35;
    --dark-bg: #0f1419;
    --light-bg: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e8ed;
    --dark-text: #1a1f26;
    --light-text: #6b7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

/* Navigation */
.navbar {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid #1a1a1a;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background-color: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}


.app-header {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 18px 18px 0 0;
    padding: 0 1rem;
    box-sizing: border-box;
    z-index: 5;
}

.app-content {
    position: absolute;
    top: calc(12px + 72px);
    left: 12px;
    right: 12px;
    bottom: 12px;
    background-color: white;
    border-radius: 0 0 18px 18px;
    padding: 1.5rem;
    color: var(--dark-text);
    overflow: auto;
    box-sizing: border-box;
}

.app-content p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
    margin-right: 1rem;
}

.cta-button.primary:hover {
    background-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 85, 204, 0.3);
}

.cta-button.secondary {
    background-color: var(--light-gray);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 85, 204, 0.3);
}

.cta-button:not(.primary):not(.secondary) {
    background-color: var(--primary-color);
    color: white;
}

.cta-button:not(.primary):not(.secondary):hover {
    background-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 85, 204, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Features Section */
.features {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 85, 204, 0.1), rgba(0, 168, 232, 0.1));
    border: 1px solid rgba(0, 85, 204, 0.2);
}

.benefit-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--dark-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #a0aec0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .logo {
        justify-content: center;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        width: 100%;
        margin-top: 0.5rem;
    }

    .button-group {
        flex-direction: column;
    }

    .cta-button.primary {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .phone-mockup {
        display: none;
    }
}
