.contact-info {
    border: 2px solid var(--color-turquoise, #73C8CC);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(115, 200, 204, 0.08);
        padding: 2rem 2rem 1rem 2rem;
    margin-right: 2rem;
}
/* About section features grid layout */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 2rem;
    margin-top: 2rem;
}


.feature.feature-horizontal {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-turquoise, #73C8CC);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(115, 200, 204, 0.08);
    padding: 1.5rem;
    gap: 2rem;
    min-height: 160px;
}

.feature.feature-horizontal .feature-icon {
    flex: 0 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature.feature-horizontal .feature-icon svg {
    width: 96px;
    height: 96px;
    max-width: 100%;
    max-height: 100%;
}

.feature.feature-horizontal .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature.feature-horizontal h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-turquoise, #73C8CC);
}

.feature.feature-horizontal p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}

/* Hero section feature icons */
.about-features .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.about-features .feature-icon svg {
    width: 64px;
    height: 64px;
    max-width: 100%;
    max-height: 100%;
}
.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.header-blue {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-grey-blue) 100%);
}

.hero-title-white {
    background: #fff;
    color: #1976d2;
    padding: 0.5em 1em;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.footer-bottom a[href^="mailto"] {
    color: #fff;
    text-decoration: underline;
}

.footer-section a[href="who.html"] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
/* Full width about text for About section */
.about-text-wide {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: var(--color-secondary);
    padding: 1rem 0 2rem 0;
}
.about-text-wide p {
    font-size: 1.25rem;
    color: var(--color-text);
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    line-height: 1.8;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Wombat-inspired color palette */
    --color-primary: rgb(101, 97, 92);
    --color-secondary: rgb(244, 243, 239);
    --color-background: rgb(255, 255, 255);
    --color-border: rgb(221, 221, 221);
    --color-text: rgb(102, 97, 91);
    .contact-content {
         background: var(--color-bg-light);
         border-radius: 12px;
         box-shadow: 0 2px 8px rgba(0,0,0,0.04);
         padding: 2rem;
         margin-top: 2rem;
    }

    .contact-flex {
         display: flex;
         gap: 2rem;
         flex-wrap: wrap;
    }

    .contact-info {
         flex: 1 1 300px;
         min-width: 250px;

    }

    .contact-features {
         flex: 1 1 300px;
         min-width: 250px;
    }

    @media (max-width: 800px) {
         .contact-flex {
              flex-direction: column;
              gap: 1.5rem;
         }
    }
    --color-hover: rgb(152, 147, 141);
    --color-title: rgb(37, 36, 34);

    /* Accent colors */
    --color-turquoise: rgb(133, 196, 199);
    --color-green: rgb(134, 204, 155);
    --color-yellow: rgb(246, 242, 173);
    --color-blue: rgb(167, 197, 228);
    --color-grey-blue: rgb(173, 200, 201);

    /* Status colors */
    --color-exceeding: rgb(167, 197, 228);
    --color-on-track: rgb(207, 249, 198);
    --color-with-support: rgb(246, 242, 173);

    --color-light-bg: rgb(244, 243, 240);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-grey-blue) 100%);
    backdrop-filter: blur(10px);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #111;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: white;
    color: var(--color-text);
    padding: 120px 0 40px;
    text-align: center;
}

.hero h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-title);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.325rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: var(--color-text);
}

.hero-content {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: var(--color-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: var(--color-secondary);
    padding: 80px 0;
}

.about-content {
    display: block;
    width: 100%;
}

.about-text {
    width: 100%;
}

.about-text h3 {
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature {
    background: white;
    padding: 1rem 0.75rem;
    border-radius: 22px;
    border: 2px solid var(--color-turquoise); /* or another accent color */
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-align: center;
    transition: box-shadow 0.2s;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
@media (max-width: 900px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-turquoise);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 1rem;
}

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

/* Screenshots Section */
.screenshots {
    background-color: var(--color-background);
}

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

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

.screenshot-placeholder {
    background: var(--color-secondary);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed var(--color-border);
}

.screenshot-label {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-hover);
    font-style: italic;
}

.screenshot-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 0.75rem;
}

.screenshot-item p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.screenshot-note {
    background: var(--color-yellow);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-turquoise);
}

.screenshot-note p {
    color: var(--color-title);
    font-size: 0.95rem;
    line-height: 1.6;
}

.screenshot-note strong {
    color: var(--color-primary);
}

/* Support Section */
.support {
    background-color: var(--color-secondary);
}

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

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--color-border);
    text-align: center;
}

.support-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 1rem;
}

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

/* Testimonial Section */
.testimonial {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial cite {
    font-size: 1rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background-color: var(--color-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.contact-details strong {
    color: var(--color-title);
}

.contact-features {
    background: var(--color-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    /* margin-top removed to align with heading */
}

.contact-features p {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

/* Form Styles */
.contact-form {
    background: var(--color-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--color-border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-title);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-turquoise);
    box-shadow: 0 0 0 3px rgba(115, 200, 204, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-grey-blue) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e5e5;
        gap: 1rem;
    }

    .nav-menu.nav-menu-active {
        display: flex;
    }

    .mobile-menu-toggle.mobile-menu-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.mobile-menu-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.mobile-menu-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-header h3 {
        font-size: 2rem;
    }

    .testimonial blockquote {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
        background-color: var(--color-secondary);
    }

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

    section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .screenshot-placeholder {
        min-height: 250px;
        padding: 2rem 1rem;
    }
}

.screenshot-image-wrap { text-align: center; }
.screenshot-image {
  width: 100%;
  max-width: 300px; /* match existing placeholder visual size, tweak as needed */
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 8px;
}
.screenshot-label { margin-top: 6px; color: #666; font-size: 0.9rem; }

/* Define Graph1 token if you don't already have it.
   Replace the hex value with your real Graph1 colour if different. */


/* Screenshot placeholder box (wraps the <img> or svg) */
.screenshot-placeholder {
  background-color:  linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-grey-blue) 100%);
  padding: 12px;                /* keeps a visible box around the image */
  border-radius: 8px;           /* matches card corners */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Keep the image sized and centred inside the placeholder */
.screenshot-placeholder .screenshot-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 6px;           /* slightly inset radius so the box shows */
}

/* Optional: tweak the label that appears under placeholders */
.screenshot-label {
  margin-top: 8px;
  color: #ffffff;               /* or choose a contrast colour */
  font-size: 0.9rem;
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background: var(--color-background);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-title);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-title);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

/* Screenshots Page Styles */
.hero-small {
    background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-grey-blue) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.hero-small h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.screenshots-full {
    padding: 0;
}

.screenshot-item-full {
    margin-bottom: 4rem;
    background: var(--color-background);
}

.screenshot-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.screenshot-image-full {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid var(--color-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    background: white;
}

.screenshot-placeholder-full {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    overflow: hidden;
}

.screenshot-description {
    padding: 2rem 0;
}

.screenshot-description h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 1rem;
}

.screenshot-description p {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-highlights li {
    padding: 0.75rem 1rem;
    background: var(--color-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--color-turquoise);
    font-size: 1rem;
    color: var(--color-text);
}

.feature-highlights li::before {
    content: "✓";
    color: var(--color-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-section {
    background: var(--color-secondary);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-small h1 {
        font-size: 2rem;
    }

    .screenshot-description h2 {
        font-size: 1.5rem;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
    }
}
