/* PollPing Universal Stylesheet */

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFF5F5;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo svg {
    height: 100%;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.login-btn {
    background: none;
    border: 2px solid #F0D9EF;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.signup-btn {
    background: linear-gradient(135deg, #F0D9EF, #FCDCE1);
    color: #333;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 217, 239, 0.4);
    text-decoration: none;
    display: inline-block;
}

.signup-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(240, 217, 239, 0.6);
}

/* Typography */
h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #CDE9DC, #C4DFE5);
    color: #333;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(205, 233, 220, 0.5);
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(205, 233, 220, 0.7);
}

.cta-button.secondary {
    background: #333;
    color: white;
    margin-top: 20px;
}

.cta-button.secondary:hover {
    background: #555;
}

/* Forms */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 100px auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.form-subtext {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #E8E8E8;
    border-radius: 25px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #CDE9DC;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(205, 233, 220, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #999;
    font-weight: 400;
}

.submit-btn {
    background: linear-gradient(135deg, #CDE9DC, #C4DFE5);
    color: #333;
    border: none;
    padding: 20px 36px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(205, 233, 220, 0.4);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(205, 233, 220, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Benefits List */
.benefits {
    margin-top: 40px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #CDE9DC, #C4DFE5);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon::after {
    content: "✓";
    color: #333;
    font-weight: 600;
    font-size: 12px;
}

/* Form Footer */
.form-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.form-footer a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #333;
}

/* Landing Page Specific Styles */
.hero {
    padding: 180px 40px 80px;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-container {
    margin-top: 110px;
    display: flex;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.phone {
    width: 250px;
    height: 500px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.phone:hover {
    transform: translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone:first-child {
    transform: rotate(-5deg) translateY(20px);
}

.phone:last-child {
    transform: rotate(5deg) translateY(20px);
}

.message-preview {
    padding: 20px;
    font-size: 14px;
}

.message-header {
    color: #666;
    margin-bottom: 10px;
}

.message-content {
    background: linear-gradient(135deg, #FFE6BB, #E9ECCE);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
}

/* How it Works Section */
.how-it-works {
    padding: 100px 40px;
    text-align: center;
    background: white;
    position: relative;
    z-index: 10;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: #333;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #FAFAFA;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #EEE;
    width: 100%;
}

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

.footer-logo {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.footer-logo svg {
    height: 100%;
    width: auto;
}

.footer-tagline {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #333;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

/* Signup Page Layout */
.signup-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.signup-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px;
}

/* Organic Blob Shapes */
.blob-shape {
    position: fixed;
    pointer-events: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
}

/* Blob 1 - Top Left Lavender */
.blob-1 {
    top: -20%;
    left: -20%;
    width: 300px;
    height: 400px;
    animation: float1 25s ease-in-out infinite;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22b1%22%3E%3Cpath fill=%22currentColor%22 d=%22M725 607q70 107-20 180t-120 80q-30 7-60-10t-50-40q-20-23-45-35t-55-10q-30 2-55 20t-40 45q-15 27-40 40t-55 10q-30-3-50-25t-25-52q-5-30 10-58t40-48q25-20 35-45t5-55q-5-30-25-50t-50-25q-30-5-55 10t-40 40q-15 25-40 38t-55 8q-30-5-48-30t-18-55q0-30 20-52t50-27q30-5 55 10t40 40q15 25 40 35t55 0q30-10 45-35t10-55q-5-30-25-50t-50-25q-30-5-55 10t-40 40q-15 25-40 40t-55 10q-30 0-52-22t-27-52q-5-30 15-55t50-30q30-5 55 10t40 40q15 25 40 35t55 0q30-10 45-35t10-55q-5-30-20-52t-45-27q-30-5-55 10t-40 40q-15 25-40 40t-55 10q-30 0-52-22t-27-52q-5-30 15-55t50-30q30-5 58 8t48 38q20 25 45 35t55-5q30-15 40-42t0-57q-10-30-35-45t-55-10q-30 5-50 30t-20 55q0 30 22 52t52 27q30 5 55-10t40-40q15-25 40-38t55-7q30 5 50 28t25 53q5 30-10 55t-40 45q-25 20-35 45t-5 55q5 30 25 50t50 25q30 5 55-10t40-40q15-25 40-35t55 0q30 10 48 35t18 55q0 30-20 52t-50 27q-30 5-55-10t-40-40q-15-25-40-35t-55 0q-30 10-45 35t-10 55q5 30 25 50t50 25q30 5 55-10t40-40q15-25 40-40t55-10q30 0 52 22t27 52q5 30-15 55t-50 30q-30 5-55-10t-40-40q-15-25-40-35t-55 0q-30 10-45 35t-10 55q5 30 25 52t50 27q30 5 55-8t40-38q15-25 40-40t55-10q30 0 50 20t25 50q5 30-10 58t-40 48Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23b1)%22%3E%3Cpath fill=%22%23F0D9EF%22 d=%22M725 607q70 107-20 180t-120 80q-30 7-60-10t-50-40q-20-23-45-35t-55-10q-30 2-55 20t-40 45q-15 27-40 40t-55 10q-30-3-50-25t-25-52q-5-30 10-58t40-48q25-20 35-45t5-55q-5-30-25-50t-50-25q-30-5-55 10t-40 40q-15 25-40 38t-55 8q-30-5-48-30t-18-55q0-30 20-52t50-27q30-5 55 10t40 40q15 25 40 35t55 0q30-10 45-35t10-55q-5-30-25-50t-50-25q-30-5-55 10t-40 40q-15 25-40 40t-55 10q-30 0-52-22t-27-52q-5-30 15-55t50-30q30-5 55 10t40 40q15 25 40 35t55 0q30-10 45-35t10-55q-5-30-20-52t-45-27q-30-5-55 10t-40 40q-15 25-40 40t-55 10q-30 0-52-22t-27-52q-5-30 15-55t50-30q30-5 58 8t48 38q20 25 45 35t55-5q30-15 40-42t0-57q-10-30-35-45t-55-10q-30 5-50 30t-20 55q0 30 22 52t52 27q30 5 55-10t40-40q15-25 40-38t55-7q30 5 50 28t25 53q5 30-10 55t-40 45q-25 20-35 45t-5 55q5 30 25 50t50 25q30 5 55-10t40-40q15-25 40-35t55 0q30 10 48 35t18 55q0 30-20 52t-50 27q-30 5-55-10t-40-40q-15-25-40-35t-55 0q-30 10-45 35t-10 55q5 30 25 50t50 25q30 5 55-10t40-40q15-25 40-40t55-10q30 0 52 22t27 52q5 30-15 55t-50 30q-30 5-55-10t-40-40q-15-25-40-35t-55 0q-30 10-45 35t-10 55q5 30 25 52t50 27q30 5 55-8t40-38q15-25 40-40t55-10q30 0 50 20t25 50q5 30-10 58t-40 48Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* Blob 2 - Top Right Pink */
.blob-2 {
    top: 5%;
    right: -15%;
    width: 350px;
    height: 300px;
    animation: float2 20s ease-in-out infinite;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22b2%22%3E%3Cpath fill=%22currentColor%22 d=%22M815 571q35 71-25 130t-110 90q-50 31-105 35t-110-15q-55-19-95-55t-60-85q-20-49-15-105t35-106q30-50 80-80t105-30q55 0 100 25t75 70q30 45 35 100t-10 105q-15 50-50 85t-85 40q-50 5-95-20t-70-70q-25-45-20-95t35-85q30-35 75-45t90 10q45 20 70 60t20 85q-5 45-35 75t-75 30q-45 0-75-30t-30-75q0-45 30-75t75-30q45 0 75 30t30 75q0 45-30 75t-75 30q-45 0-75-30t-30-75q0-45 30-75t75-30q45 0 75 30t30 75q0 45-30 75t-75 30q-45 0-75-30t-30-75q0-45 30-75t75-30Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23b2)%22%3E%3Cpath fill=%22%23FCDCE1%22 d=%22M815 571q35 71-25 130t-110 90q-50 31-105 35t-110-15q-55-19-95-55t-60-85q-20-49-15-105t35-106q30-50 80-80t105-30q55 0 100 25t75 70q30 45 35 100t-10 105q-15 50-50 85t-85 40q-50 5-95-20t-70-70q-25-45-20-95t35-85q30-35 75-45t90 10q45 20 70 60t20 85q-5 45-35 75t-75 30q-45 0-75-30t-30-75q0-45 30-75t75-30q45 0 75 30t30 75q0 45-30 75t-75 30q-45 0-75-30t-30-75q0-45 30-75t75-30q45 0 75 30t30 75q0 45-30 75t-75 30q-45 0-75-30t-30-75q0-45 30-75t75-30Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* Blob 3 - Bottom Left Mint */
.blob-3 {
    bottom: -20%;
    left: -15%;
    width: 400px;
    height: 350px;
    animation: float3 22s ease-in-out infinite;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22b3%22%3E%3Cpath fill=%22currentColor%22 d=%22M739 663q89 163-30 220t-150 70q-31 13-65 15t-68-10q-34-12-62-35t-46-52q-18-29-25-63t-2-68q5-34 20-64t40-52q25-22 55-35t63-15q33-2 65 10t58 35q26 23 42 52t18 62q2 33-10 64t-35 56q-23 25-52 40t-62 17q-33 2-64-10t-56-35q-25-23-40-52t-17-62q-2-33 10-64t35-56q23-25 52-40t62-17q33-2 64 10t56 35q25 23 40 52t17 62q2 33-10 64t-35 56q-23 25-52 40t-62 17q-33 2-64-10t-56-35q-25-23-40-52t-17-62q-2-33 10-64t35-56q23-25 52-40t62-17q33-2 64 10t56 35q25 23 40 52t17 62q2 33-10 64t-35 56q-23 25-52 40t-62 17q-33 2-64-10t-56-35q-25-23-40-52t-17-62q-2-33 10-64t35-56q23-25 52-40t62-17q33-2 64 10t56 35q25 23 42 52t20 62Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23b3)%22%3E%3Cpath fill=%22%23CDE9DC%22 d=%22M739 663q89 163-30 220t-150 70q-31 13-65 15t-68-10q-34-12-62-35t-46-52q-18-29-25-63t-2-68q5-34 20-64t40-52q25-22 55-35t63-15q33-2 65 10t58 35q26 23 42 52t18 62q2 33-10 64t-35 56q-23 25-52 40t-62 17q-33 2-64-10t-56-35q-25-23-40-52t-17-62q-2-33 10-64t35-56q23-25 52-40t62-17q33-2 64 10t56 35q25 23 40 52t17 62q2 33-10 64t-35 56q-23 25-52 40t-62 17q-33 2-64-10t-56-35q-25-23-40-52t-17-62q-2-33 10-64t35-56q23-25 52-40t62-17q33-2 64 10t56 35q25 23 40 52t17 62q2 33-10 64t-35 56q-23 25-52 40t-62 17q-33 2-64-10t-56-35q-25-23-40-52t-17-62q-2-33 10-64t35-56q23-25 52-40t62-17q33-2 64 10t56 35q25 23 42 52t20 62Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* Blob 4 - Bottom Right Blue */
.blob-4 {
    bottom: -10%;
    right: -12%;
    width: 300px;
    height: 400px;
    animation: float4 28s ease-in-out infinite;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22b4%22%3E%3Cpath fill=%22currentColor%22 d=%22M698 586q-62 86-120 120t-125 25q-67-9-115-50t-65-100q-17-59 0-125t65-115q48-49 115-65t125 0q58 16 100 58t58 100q16 58 0 117t-58 100q-42 42-100 58t-117 0q-59-16-100-58t-58-100q-17-58 0-117t58-100q41-41 100-58t117 0q58 17 100 58t58 100q16 58 0 117t-58 100q-42 42-100 58t-117 0q-59-16-100-58t-58-100q-17-58 0-117t58-100q41-41 100-58t117 0q58 17 100 58t58 100q16 58 0 117t-58 100q-42 42-100 58t-117 0q-59-16-100-58t-58-100q-17-58 0-117t58-100q41-41 100-58t117 0q58 17 100 58t60 100Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23b4)%22%3E%3Cpath fill=%22%23C4DFE5%22 d=%22M698 586q-62 86-120 120t-125 25q-67-9-115-50t-65-100q-17-59 0-125t65-115q48-49 115-65t125 0q58 16 100 58t58 100q16 58 0 117t-58 100q-42 42-100 58t-117 0q-59-16-100-58t-58-100q-17-58 0-117t58-100q41-41 100-58t117 0q58 17 100 58t58 100q16 58 0 117t-58 100q-42 42-100 58t-117 0q-59-16-100-58t-58-100q-17-58 0-117t58-100q41-41 100-58t117 0q58 17 100 58t60 100Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* Blob 5 - Middle Yellow */
.blob-5 {
    top: 45%;
    left: 10%;
    width: 300px;
    height: 300px;
    animation: float5 18s ease-in-out infinite;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22b5%22%3E%3Cpath fill=%22currentColor%22 d=%22M715 615q65 115-35 175t-140 70q-40 10-82 5t-78-25q-36-20-62-52t-36-70q-10-38 0-78t36-72q26-32 62-52t78-25q42-5 82 5t72 35q32 25 52 60t20 75q0 40-20 75t-52 60q-32 25-72 35t-82-5q-42-15-78-40t-62-60q-26-35-36-77t0-82q10-40 36-72t62-52q36-20 78-25t82 5q40 10 72 35t52 60q20 35 20 75t-20 75q-20 35-52 60t-72 35q-40 10-82-5t-78-40q-36-25-62-60t-36-75q-10-40 0-80t36-72q26-32 62-52t78-25q42-5 82 5t72 35q32 25 52 60t20 75q0 40-20 75t-52 60q-32 25-72 35t-82-5q-42-15-78-40t-62-60q-26-35-36-77t0-82q10-40 36-72t62-52q36-20 78-25t82 5q40 10 75 35Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23b5)%22%3E%3Cpath fill=%22%23FFE6BB%22 d=%22M715 615q65 115-35 175t-140 70q-40 10-82 5t-78-25q-36-20-62-52t-36-70q-10-38 0-78t36-72q26-32 62-52t78-25q42-5 82 5t72 35q32 25 52 60t20 75q0 40-20 75t-52 60q-32 25-72 35t-82-5q-42-15-78-40t-62-60q-26-35-36-77t0-82q10-40 36-72t62-52q36-20 78-25t82 5q40 10 72 35t52 60q20 35 20 75t-20 75q-20 35-52 60t-72 35q-40 10-82-5t-78-40q-36-25-62-60t-36-75q-10-40 0-80t36-72q26-32 62-52t78-25q42-5 82 5t72 35q32 25 52 60t20 75q0 40-20 75t-52 60q-32 25-72 35t-82-5q-42-15-78-40t-62-60q-26-35-36-77t0-82q10-40 36-72t62-52q36-20 78-25t82 5q40 10 75 35Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* Blob 6 - Middle Right Green */
.blob-6 {
    top: 35%;
    right: 15%;
    width: 350px;
    height: 350px;
    animation: float6 20s ease-in-out infinite;
    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22b6%22%3E%3Cpath fill=%22currentColor%22 d=%22M780 580q80 80-10 150t-140 90q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 85 55t55 85q20 50 20 105t-20 105q-20 50-55 85t-85 55q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 85 55t55 85q20 50 20 105t-20 105q-20 50-55 85t-85 55q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 85 55t55 85q20 50 20 105t-20 105q-20 50-55 85t-85 55q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 90 55Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23b6)%22%3E%3Cpath fill=%22%23E9ECCE%22 d=%22M780 580q80 80-10 150t-140 90q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 85 55t55 85q20 50 20 105t-20 105q-20 50-55 85t-85 55q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 85 55t55 85q20 50 20 105t-20 105q-20 50-55 85t-85 55q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 85 55t55 85q20 50 20 105t-20 105q-20 50-55 85t-85 55q-50 20-105 20t-105-20q-50-20-85-55t-55-85q-20-50-20-105t20-105q20-50 55-85t85-55q50-20 105-20t105 20q50 20 90 55Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* Smooth floating animations */
@keyframes float1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-25px) translateX(15px) rotate(10deg);
    }
    66% {
        transform: translateY(15px) translateX(-10px) rotate(-5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(15deg);
    }
    50% {
        transform: translateY(30px) translateX(-20px) rotate(-10deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    25% {
        transform: translateY(-20px) rotate(0deg);
    }
    50% {
        transform: translateY(10px) rotate(10deg);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(20deg);
    }
    50% {
        transform: translateY(-40px) translateX(25px) rotate(-15deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-30px) translateX(20px) rotate(10deg);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translateY(0) rotate(25deg);
    }
    33% {
        transform: translateY(25px) rotate(35deg);
    }
    66% {
        transform: translateY(-20px) rotate(15deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }

    .nav-content {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .phone-container {
        scale: 0.7;
        gap: 20px;
        margin-top: 50px;
    }

    .form-container {
        padding: 40px 20px;
        margin: 80px 15px 15px;
        max-width: calc(100% - 30px);
        border-radius: 20px;
    }

    .form-header h1 {
        font-size: 32px;
    }

    .blob-shape {
        filter: blur(40px);
        opacity: 0.3;
    }

    .blob-1, .blob-2, .blob-3, .blob-4 {
        width: 250px;
        height: 250px;
    }

    .steps-container {
        gap: 40px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero {
        padding: 150px 20px 60px;
    }

    .how-it-works {
        padding: 80px 20px;
    }
}

#signup-area {
    background: linear-gradient(135deg, #ffdcf2, #F0F8F4);

}
/* Utility Classes */
.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.p-4 {
    padding: 1rem;
}

.w-full {
    width: 100%;
}