/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #000000;
    line-height: 120%;
}

/* Header */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    width: 1065px;
    margin: 0 auto;
}

.logo {
    width: 57px;
    height: 30px;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    width: 100%;
    height: 100%;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-separator {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}

.btn-login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #BAD976;
    box-shadow: 0px 4px 4px rgba(151, 222, 59, 0.25);
    border-radius: 24px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.9;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 1065px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 653px;
}

.hero-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 31px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #BAD976;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 653px;
}

.hero-paragraph {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
    text-align: center;
}

.btn-add-extension {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    gap: 10px;
    background: #000000;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 160px;
}

.btn-add-extension:hover {
    opacity: 0.9;
}

.btn-add-extension span {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
}

/* Feature Sections */
.feature-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 1065px;
}

.feature-section.smarter-care {
    margin-top: 160px;
}

.feature-section.happier-parents {
    margin-bottom: 160px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 490px;
}

.smarter-care .feature-text {
    align-items: flex-end;
    text-align: right;
    padding-right: 85px;
}

.happier-parents .feature-text {
    padding-left: 85px;
}

.feature-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
}

.feature-description {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #545454;
}

.feature-image {
    width: 490px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Removed border-radius for sharp corners per design */
}

.scene-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sign Up Section */
.signup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1065px;
}

.btn-signup {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    background: #BAD976;
    border-radius: 8px;
    border: none;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #FFFFFF;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-bottom: 160px;
}

.btn-signup:hover {
    opacity: 0.9;
}

/* Join Them Section */
.join-them-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 1065px;
}

.section-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000;
}

.pet-cards-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    width: 100%;
    flex-wrap: nowrap;
}

.join-card {
    width: auto;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.join-card:hover {
    transform: translateY(-4px);
}

/* Footer */
.footer {
    width: 100%;
    height: 280px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(221, 236, 187, 0.8) 59.78%, #CBE398 83.65%, #BAD976 99.52%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    width: 304px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.footer-link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #545454;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.footer-link:hover {
    text-decoration: underline;
}
