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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 10px;
}

.nav-logo-link:hover {
    text-decoration: none;
}

.nav-logo img {
    vertical-align: middle;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social .social-icon {
    color: #333;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.nav-social .social-icon:hover {
    color: #2563eb;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    color: white;
    padding: 120px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="water" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q5 0 10 10 T20 10" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23water)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.highlight {
    color: #fb923c;
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.2);
}

.hero-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-large i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.btn-large div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-large div span {
    font-size: 0.9rem;
    font-weight: 400;
}

/* App Store Button Style */
.btn-apple {
    background: #000;
    color: white;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    border: 1px solid #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-apple:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-apple i {
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.btn-apple div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-apple div span {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1;
    color: #E5E5E7;
}

.btn-apple div strong {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    color: white;
}

/* Google Play Button Style */
.btn-google {
    background: #000;
    color: white;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 1px solid #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-google:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-google i {
    color: #0ea5e9;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.btn-google div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-google div strong {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    color: white;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.app-preview {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.app-header i {
    margin-right: 8px;
    font-size: 1.5rem;
}

.forecast-card {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.forecast-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.weather-info, .tide-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.weather-info i, .tide-info i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.spots-preview h4 {
    margin-bottom: 15px;
    color: #374151;
}

.spot-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f3f4f6;
    border-radius: 8px;
    margin-bottom: 8px;
}

.spot-item i {
    margin-right: 10px;
    color: #0ea5e9;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.social-proof .section-title,
.social-proof .section-subtitle {
    color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.testimonial-quote p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author {
    font-weight: 600;
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: white;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}


/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: #f9fafb;
}

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

.screenshot-item {
    text-align: center;
}

.phone-frame {
    width: 250px;
    height: 500px;
    background: #1f2937;
    border-radius: 20px;
    padding: 15px;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.screenshot-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.app-header, .map-header, .forecast-header, .log-header {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.app-header i, .map-header i, .forecast-header i, .log-header i {
    margin-right: 8px;
}

.forecast-widget {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.weather-status {
    font-size: 1.2rem;
    font-weight: 600;
}

.quick-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    padding: 8px 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.map-preview {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    width: 12px;
    height: 12px;
    background: #0ea5e9;
    border-radius: 50%;
    position: absolute;
}

.map-pin.active {
    background: #0ea5e9;
}

.map-pin:nth-child(1) { top: 30%; left: 40%; }
.map-pin:nth-child(2) { top: 60%; left: 70%; }
.map-pin:nth-child(3) { top: 20%; left: 20%; }

.forecast-days {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.day-item {
    text-align: center;
    font-size: 0.9rem;
}

.day-item i {
    font-size: 1.5rem;
    margin-top: 5px;
    color: #0ea5e9;
}

.catch-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f3f4f6;
    border-radius: 8px;
}

.catch-photo {
    width: 40px;
    height: 40px;
    background: #d1d5db;
    border-radius: 6px;
}

.catch-details {
    flex: 1;
}

.screenshot-item h4 {
    font-weight: 600;
    color: #1f2937;
}



/* Premium Teaser Section */
.premium-teaser {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.premium-teaser .section-title,
.premium-teaser .section-subtitle {
    color: white;
}

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

.premium-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.premium-icon i {
    font-size: 2rem;
    color: white;
}

.premium-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.premium-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.premium-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: #6b7280;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

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

.download-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.waitlist-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.waitlist-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.waitlist-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 250px;
}

.waitlist-form button {
    white-space: nowrap;
}

/* Community Feedback Section */
.community-feedback {
    background: #1f2937;
    color: white;
    padding: 80px 0;
}

.community-feedback .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.community-feedback .section-subtitle {
    color: #e5e7eb;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feedback-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.feedback-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    line-height: 1.7;
    font-weight: 400;
}

.feedback-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    font-weight: 500;
    color: #f9fafb;
}

/* Feedback Form */
.feedback-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.feedback-form h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select option {
    background: #1f2937;
    color: #fff;
}

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

/* Form Message */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
    color: #3b82f6;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie-accept:hover {
    background: #0284c7;
}

.btn-cookie-settings {
    background: transparent;
    color: #0ea5e9;
    border: 1px solid #0ea5e9;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-settings:hover {
    background: #0ea5e9;
    color: white;
}

.cookie-policy-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #0ea5e9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-social {
        position: fixed;
        left: -100%;
        top: calc(70px + 320px);
        flex-direction: row;
        background-color: white;
        width: 100%;
        justify-content: center;
        transition: 0.3s;
        padding: 1rem 0;
        gap: 2rem;
    }
    
    .nav-social.active {
        left: 0;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshots-carousel {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    .download-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-apple, .btn-google {
        width: 180px;
        height: 55px;
    }
    
    .btn-apple i, .btn-google i {
        font-size: 1.5rem;
    }
    
    .btn-apple div strong, .btn-google div strong {
        font-size: 1.1rem;
    }
    
    .btn-apple div span {
        font-size: 0.7rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .waitlist-form input {
        min-width: auto;
        width: 100%;
    }
    
    .waitlist-section {
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feedback-form-container {
        padding: 1.5rem;
    }
    
    .community-feedback {
        padding: 60px 0;
    }
    
    .community-feedback .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .community-feedback .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feedback-text h3 {
        font-size: 1.5rem;
    }
    
    .feedback-text p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand p {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .nav-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-apple, .btn-google {
        width: 160px;
        height: 50px;
    }
    
    .btn-apple div strong, .btn-google div strong {
        font-size: 1rem;
    }
    
    .btn-apple div span {
        font-size: 0.65rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
    }
    
    .screenshots-carousel {
        max-width: 250px;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .waitlist-section {
        padding: 1.25rem;
        margin: 0 10px;
    }
    
    .feedback-form-container {
        padding: 1.25rem;
    }
    
    .community-feedback .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .community-feedback .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .feedback-text h3 {
        font-size: 1.3rem;
    }
    
    .feedback-text p {
        font-size: 0.95rem;
    }
    
    .benefit-item {
        padding: 0.6rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    /* Cookie consent mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-cookie-accept,
    .btn-cookie-settings {
        width: 100%;
        padding: 12px 20px;
    }
}
