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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #77a214;
}

/* Main Content */
main {
    padding: 4rem 0;
}

/* Hero Section (Homepage) */
.hero {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Banner Section */
.hero-banner {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #f7fafc;
}

.hero-content .hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: white;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-description strong {
    color: #f7fafc;
    font-weight: 700;
}

/* App Store Button */
.app-store-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.download-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1;
}

.store-name {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.2rem;
}

.download-section {
    margin-top: 2rem;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Hero Intro Section */
.hero-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-intro h1 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #77a214;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 columns */
}

/* Specific layouts based on number of cards */
.feature-grid.cards-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid.cards-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid.cards-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 5+ cards use default 3-column layout */
.feature-grid.cards-5,
.feature-grid.cards-6,
.feature-grid.cards-7,
.feature-grid.cards-8,
.feature-grid.cards-9 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.feature-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.feature-content li {
    color: #4a5568 !important;
    margin-bottom: 0.8rem !important;
    padding-left: 1.5rem !important;
    position: relative;
    line-height: 1.5 !important;
}

.feature-content li:before {
    content: "✓";
    color: #77a214;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Why Section */
.why-section {
    margin-bottom: 3rem;
}

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

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

.why-card {
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-card p {
    color: white !important;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Problem Solution Section */
.problem-solution-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-solution-section h2 {
    color: #2d3748;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.problem-solution-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.problem-solution-content strong {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Smart Features Section */
.smart-features-section {
    margin-bottom: 4rem;
}

.smart-features-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.smart-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.smart-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.smart-feature-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.smart-feature h3 {
    color: #2d3748;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.feature-highlight {
    color: #77a214 !important;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feature-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-description ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-description li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-description li:before {
    content: "✓";
    color: #77a214;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-description em {
    color: #77a214;
    font-style: italic;
    font-weight: 500;
}

/* Coming Soon Section */
.coming-soon {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon p {
    color: #4a5568;
    font-size: 1.1rem;
}

/* User Personas Section */
.user-personas-section {
    margin-bottom: 4rem;
}

.user-personas-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.persona-card {
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(119, 162, 20, 0.3);
}

.persona-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(119, 162, 20, 0.4);
}

.persona-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.persona-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.persona-content {
    color: white;
    opacity: 0.95;
}

.persona-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.persona-content li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.persona-content li:before {
    content: "✓";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
    opacity: 0.8;
}

/* Key Features Grid Section */
.key-features-section {
    margin-bottom: 4rem;
}

.key-features-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.key-feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(119, 162, 20, 0.1);
}

.key-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.key-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.key-feature-icon {
    font-size: 2rem;
    color: #77a214;
}

.key-feature h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.key-feature-content {
    color: #4a5568;
    line-height: 1.6;
}

.key-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-feature-content li {
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.key-feature-content li:before {
    content: "•";
    color: #77a214;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Download CTA Section */
.download-cta-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.download-cta-section h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-subtitle {
    color: #77a214;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.download-content {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-content em {
    color: #77a214;
    font-style: italic;
    font-weight: 600;
}

.download-buttons {
    margin-top: 2rem;
}

.app-store-btn.primary {
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(119, 162, 20, 0.4);
}

.app-store-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(119, 162, 20, 0.5);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(119, 162, 20, 0.4);
}

.coming-soon-badge.error {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-weight: 600;
}

/* Page Content (Single Pages) */
.page-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Content Card (Homepage shortcodes) */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #77a214;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #5a7a10;
    text-decoration: underline;
}

.page-content h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    border-bottom: 3px solid #77a214;
    padding-bottom: 1rem;
}

.page-content h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.page-content h3 {
    color: #4a5568;
    font-size: 1.3rem;
    margin: 2.5rem 0 1.2rem 0;
    font-weight: 600;
}

/* FAQ Section Styling */
.page-content h3:first-of-type {
    margin-top: 1.5rem;
}

.page-content h4 {
    color: #4a5568;
    font-size: 1.1rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.page-content p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin: 2rem 0 2.5rem 0;
    color: #4a5568;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.page-content strong {
    color: #2d3748;
    font-weight: 600;
}

.page-content em {
    color: #77a214;
    font-style: normal;
    font-weight: 600;
}

/* Better spacing for content sections */
.page-content h1 + p,
.page-content h2 + p,
.page-content h3 + p,
.page-content h4 + p {
    margin-top: 0;
}

/* Improved list spacing */
.page-content ul ul,
.page-content ol ol {
    margin: 0.5rem 0 0.5rem 1rem;
}

.page-content li:last-child {
    margin-bottom: 0;
}

/* Better spacing after lists */
.page-content ul + p,
.page-content ol + p {
    margin-top: 1.5rem;
}

.page-content ul + h2,
.page-content ol + h2,
.page-content ul + h3,
.page-content ol + h3 {
    margin-top: 3rem;
}

/* Table Styles */
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem 0;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.page-content table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    line-height: 1.6;
}

.page-content table tr:last-child td {
    border-bottom: none;
}

.page-content table td:first-child {
    font-weight: 600;
    color: #2d3748;
    white-space: nowrap;
    width: 30%;
}

/* Press Kit Styles */
.press-kit-icon {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.press-kit-icon img {
    width: 200px;
    height: 200px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-kit-icon a:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.press-kit-icon .download-hint {
    margin-top: 1rem;
    color: #77a214;
    font-size: 0.9rem;
    font-weight: 500;
}

.press-kit-screenshots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem 0;
}

.press-kit-screenshots-ipad {
    grid-template-columns: repeat(3, 1fr);
}

.press-kit-screenshot {
    text-align: center;
}

.press-kit-screenshot a {
    display: block;
}

.press-kit-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-kit-screenshot a:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.press-kit-screenshot p {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Info Box */
.contact-info {
    background: #f8fafc;
    border-left: 4px solid #77a214;
    color: #2d3748;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(119, 162, 20, 0.08);
}

.contact-info h2 {
    color: #2d3748 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding-bottom: 0.5rem !important;
    text-align: left !important;
}

.contact-info .contact-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.contact-info .contact-item {
    margin-bottom: 0;
}

.contact-info .contact-item strong {
    color: #77a214 !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 0.3rem !important;
    font-size: 0.9rem !important;
}

.contact-info .contact-item p {
    color: #4a5568 !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
}

.contact-info a {
    color: #77a214 !important;
    text-decoration: underline;
    font-weight: 500;
}

.contact-info a:hover {
    color: #5a7a10 !important;
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-info .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.contact-form-container h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #2d3748;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #77a214;
    box-shadow: 0 0 0 3px rgba(119, 162, 20, 0.1);
}

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

.form-submit-btn {
    background: linear-gradient(135deg, #77a214 0%, #5a7a10 100%);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(119, 162, 20, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 162, 20, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Mobile responsive for form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-submit-btn {
        width: 100%;
    }
}

/* Footer */
footer {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    color: #a0aec0;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
}

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

footer a:hover {
    color: #77a214;
}

/* Screenshot Gallery */
.screenshot-gallery {
    margin-bottom: 4rem;
}

.screenshot-gallery h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.screenshot-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(119, 162, 20, 0.5) transparent;
    padding: 1rem 0 2rem 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.screenshot-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.screenshot-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.screenshot-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(119, 162, 20, 0.5);
    border-radius: 4px;
}

.screenshot-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(119, 162, 20, 0.7);
}

.screenshot-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
}

.screenshot-item {
    flex: 0 0 auto;
    text-align: center;
}

.screenshot-item img {
    height: 500px;
    width: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.screenshot-caption {
    margin-top: 1rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* iPad Screenshots */
.screenshot-ipad img {
    height: auto;
    width: 600px;
    border-radius: 16px;
}

/* Responsive Design */
/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .feature-grid.cards-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .feature-grid.cards-5,
    .feature-grid.cards-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding: 3rem 1.5rem;
        margin-bottom: 3rem;
    }

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

    .hero-content .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-content .hero-description {
        font-size: 1.1rem;
    }

    /* Section Headers Mobile */
    .features-section h2,
    .why-section h2,
    .smart-features-section h2,
    .user-personas-section h2,
    .key-features-section h2,
    .download-cta-section h2 {
        font-size: 2rem;
    }

    /* Smart Features Mobile */
    .smart-feature {
        padding: 2rem;
    }

    .smart-feature h3 {
        font-size: 1.5rem;
    }

    .feature-highlight {
        font-size: 1.1rem;
    }

    /* Personas Mobile */
    .personas-grid {
        grid-template-columns: 1fr;
    }

    .persona-card {
        padding: 2rem;
    }

    /* Key Features Mobile */
    .key-features-grid {
        grid-template-columns: 1fr;
    }

    .key-feature {
        padding: 1.5rem;
    }

    /* Problem Solution Mobile */
    .problem-solution-section {
        padding: 2rem;
    }

    /* Download CTA Mobile */
    .download-cta-section {
        padding: 3rem 2rem;
    }

    .download-cta-section h2 {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1.1rem;
    }

    /* Existing Mobile Styles */
    .feature-grid,
    .feature-grid.cards-1,
    .feature-grid.cards-2,
    .feature-grid.cards-3,
    .feature-grid.cards-4,
    .feature-grid.cards-5,
    .feature-grid.cards-6,
    .feature-grid.cards-7,
    .feature-grid.cards-8,
    .feature-grid.cards-9 {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .content-card,
    .page-content {
        padding: 2rem;
    }

    nav ul {
        gap: 20px;
    }

    /* Screenshot Gallery Mobile */
    .screenshot-gallery h2 {
        font-size: 2rem;
    }

    .screenshot-item img {
        height: 400px;
        border-radius: 20px;
    }

    .screenshot-ipad img {
        width: 85vw;
        max-width: 500px;
        height: auto;
    }

    /* Press Kit Mobile */
    .press-kit-icon img {
        width: 150px;
        height: 150px;
        border-radius: 30px;
    }

    .press-kit-screenshots {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .press-kit-screenshots-ipad {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .press-kit-screenshot img {
        border-radius: 8px;
    }

    .press-kit-screenshot p {
        font-size: 0.8rem;
    }
}
