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

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #1e2a5e;
    --light-blue: #2d4a8a;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f3;
}

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

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

/* Header */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-name:link,
.logo-name:visited {
    color: var(--text-dark);
    text-decoration: none;
}

.logo-name:hover {
    color: var(--primary-blue);
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.2;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

.btn-download {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-download:hover {
    background: var(--dark-blue);
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    padding: 80px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    /* Keep the left text column from getting squeezed when we increase the gap */
    grid-template-columns: minmax(520px, 1fr) minmax(380px, 420px);
    /* Bigger space between text and phones without collapsing the text column */
    gap: clamp(80px, 10vw, 180px);
    align-items: center;
}

.hero-text {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tag {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin: 0;
}

.hero-text > p {
    font-size: 20px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
    align-items: center;
}

.btn-app-store,
.btn-google-play {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    line-height: 0;
}

.btn-app-store:hover,
.btn-google-play:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-app-store img,
.btn-google-play img {
    height: 56px;
    width: auto;
    display: block;
}

.app-store-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.app-store-large {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.google-play-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.google-play-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.google-play-small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.google-play-large {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.btn-learn-more {
    display: inline-block;
    border: 2px solid var(--text-gray);
    color: var(--text-gray);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.stars {
    color: #ffc107;
    font-size: 20px;
}

.rating span {
    color: var(--text-gray);
    font-size: 14px;
}

.hero-footer {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Hero Images */
.hero-images {
    position: relative;
    height: 600px;
}

.phone-screen {
    position: absolute;
    width: 280px;
    height: 560px;
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen.phone-1 {
    left: 0;
    top: 0;
    z-index: 2;
    transform: rotate(-5deg);
}

.phone-screen.phone-2 {
    right: 0;
    top: 40px;
    z-index: 1;
    transform: rotate(5deg);
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.catch-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.catch-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.catch-screen h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.fish-illustration {
    font-size: 80px;
    margin-bottom: 15px;
}

.fish-size {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.not-right {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.continue-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: var(--text-gray);
}

.cooler-screen h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.stats strong {
    display: block;
    font-size: 18px;
    color: var(--primary-blue);
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filters span {
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
}

.fish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 12px;
}

.scroll-indicator {
    text-align: center;
    margin-top: 40px;
    color: var(--text-gray);
    font-size: 14px;
}

.scroll-indicator span:last-child {
    display: block;
    font-size: 24px;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Features Section */
.features-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 auto 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0 auto 60px;
    max-width: 700px;
    text-align: center;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    background: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.feature-card > p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.feature-phone {
    margin-top: 30px;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: transparent;
    border-radius: 25px;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    border-radius: 19px;
    padding: 15px;
}

.mockup-header {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mockup-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.mockup-fish {
    font-size: 50px;
    margin: 10px 0;
}

.mockup-size {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mockup-question {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.mockup-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

.camera-view {
    position: relative;
    height: 250px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.camera-view p {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    color: var(--text-gray);
}

.measurement-line {
    width: 80%;
    height: 3px;
    background: #4fc3f7;
    position: relative;
}

.measurement-line::before,
.measurement-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4fc3f7;
    border-radius: 50%;
    top: -3.5px;
}

.measurement-line::before {
    left: 0;
}

.measurement-line::after {
    right: 0;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tabs span {
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.tabs .active {
    background: var(--primary-blue);
    color: white;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
}

.rank {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cooler-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.cooler-stats strong {
    font-size: 16px;
    color: var(--primary-blue);
}

.fish-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 24px;
}

/* Species Section */
.species-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.species-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.species-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
    transform: translateY(-4px);
}

.species-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.species-icon svg {
    width: 32px;
    height: 32px;
}

.species-illustration {
    font-size: 60px;
    margin: 15px 0;
}

.species-photo {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin: 15px 0;
}

.species-data {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    font-size: 14px;
}

.species-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-top: 15px;
}

.species-badge span:first-child {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.species-badge .size {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-left: auto;
}

.catch-text {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.size-text {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.question-text {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.search-bar-small {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.continue-btn-small {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

.species-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.species-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 50px 0;
}

.testimonials-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-badge {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 0 0 20px 0;
    text-align: center;
    box-shadow: none;
}

.badge-icon {
    display: none;
}

.testimonial-badge h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 8px 0;
}

.testimonial-badge p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.testimonial-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-see-more {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-see-more:hover {
    background: #f9fafb;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* FAQs Section */
.faq-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.faq-tag {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.faq-header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-item:hover .faq-header-item {
    background: #f9fafb;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.faq-question {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.faq-arrow {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 300;
    transition: transform 0.3s;
    margin-left: 20px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    padding-top: 10px;
}

/* Mission Section */
.mission-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mission-left {
    display: flex;
    flex-direction: column;
}

.mission-left .section-tag {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 16px;
}

.mission-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    text-align: left;
}

.mission-left > p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0 0 30px 0;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
}

.green-card {
    background: var(--primary-blue);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
}

.green-card .card-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    color: white;
}

.green-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.green-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.green-card p {
    font-size: 13px;
    opacity: 0.9;
}

.community-card {
    background: var(--bg-light);
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.community-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.community-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.community-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 4px 0;
}

.community-text p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.mission-visual {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.mission-phone {
    flex-shrink: 0;
}

.phone-mockup-small {
    width: 100px;
    height: 200px;
    background: transparent;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
}

.phone-mockup-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.mockup-screen-small {
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mockup-screen-small p {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.app-icon-small {
    font-size: 32px;
    margin: 8px 0;
}

.data-small {
    font-size: 11px;
    color: var(--text-gray);
}

.mission-icon-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.mission-icon-box {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.mission-icon-box img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.mission-stats-box {
    background: var(--bg-light);
    padding: 14px;
    border-radius: 8px;
    text-align: center;
}

.stat-number-small {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label-small {
    font-size: 12px;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    padding: 100px 0;
    text-align: center;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.testimonial-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars-yellow {
    color: #ffc107;
    font-size: 20px;
}

.review-count {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    text-align: right;
    color: var(--text-gray);
    font-size: 14px;
}

.pro-note {
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
}

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

.footer-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.3);
}

/* Contact Page */
.contact-page {
    background: var(--bg-white);
    padding: 100px 0;
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.submit-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--dark-blue);
}

.contact-info {
    margin-top: 60px;
    text-align: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* Privacy & Terms Pages */
.legal-page {
    background: var(--bg-white);
    padding: 100px 0;
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-images {
        height: 400px;
        margin-top: 40px;
    }

    .phone-screen {
        width: 200px;
        height: 400px;
    }

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

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

    .testimonials-badges {
        grid-template-columns: 1fr;
    }

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

    .faq-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .faq-title {
        font-size: 36px;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .step-content {
        max-width: 100%;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .section-title,
    .section-title-white {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons-center {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

