/* Root Variables */
:root {
    --primary-color: #E27400;
    --secondary-color: #333333;
    --gray-06: #292929;
    --gray-05: #333333;
    --gray-04: #666666;
    --gray-02: #DDDDDD;
    --gray-01: #F0F0F0;
    --white: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-radial: radial-gradient(50% 50% at 50% 50%, #FCF1E5 53.08%, #F8F8F8 100%);
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-radius: 12px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--white);
}

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

/* Typography */
h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.24px;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.24px;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.24px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.24px;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #c66300;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    gap: 8px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #555555;
}

/* Navigation */
.navbar {
    background: var(--gray-06);
    padding: 11px 0;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar .container {
    max-width: none !important;
    width: 100%;
    margin: 0;
    padding: 0 100px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-self: center;
}

.logo-image {
    height: 30px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu a {
    color: var(--gray-02);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.24px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 150% 120% at center,
        rgba(226, 116, 0, 0.3) 0%,
        rgba(226, 116, 0, 0.2) 35%,
        rgba(252, 241, 229, 0.25) 55%,
        rgba(255, 255, 255, 0.2) 70%,
        transparent 100%),
        linear-gradient(90deg,
        rgba(226, 116, 0, 0.25) 0%,
        rgba(252, 241, 229, 0.2) 50%,
        rgba(255, 255, 255, 0.25) 100%);
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    color: var(--white);
}

.hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Emergency Section */
.emergency-section {
    padding: 56px 0;
}

.emergency-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px 70px;
    gap: 99px;
    background: var(--bg-radial);
    border-radius: var(--border-radius);
    min-height: 180px;
    position: relative;
}

.emergency-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 529px;
    align-self: center;
}

.emergency-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emergency-text h2 {
    color: var(--gray-05);
}

.emergency-image {
    align-self: flex-end;
}

.emergency-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    display: block;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid var(--gray-01);
    margin: 56px 0;
}

/* Services Section */
.services-section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 12px;
    color: var(--gray-05);
}

.section-header p {
    max-width: 574px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    gap: 70px;
    justify-items: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 128px;
}

.service-icon {
    width: 128px;
    height: 128px;
    background: var(--gray-01);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.service-card h3 {
    text-align: center;
    color: var(--gray-04);
    width: 114px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-05);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--gray-01);
    padding-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 20px;
    color: var(--gray-05);
}

.faq-toggle {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle.active {
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    display: none;
    padding-left: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 18px;
    color: var(--gray-04);
}

/* App Section */
.app-section {
    padding: 56px 0;
}

.app-card {
    display: flex;
    align-items: center;
    padding: 0 70px;
    gap: 99px;
    background: var(--gray-06);
    border-radius: var(--border-radius);
    height: 280px;
    position: relative;
    overflow: visible;
}

.app-mockup {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: auto;
    height: 370px;
    z-index: 1;
}

.phone-image {
    display: block;
    width: auto;
    height: 370px;
    transform: rotate(0deg);
    transform-origin: bottom center;
}

.app-content {
    flex: 1;
    max-width: 583px;
    color: var(--white);
    margin-left: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 2;
    position: relative;
}

.app-content h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0;
}

.app-content p {
    color: var(--white);
    margin-bottom: 0;
}

.coming-soon-badge {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    align-self: flex-start;
}

.coming-soon-badge h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.privacy-header h1 {
    font-size: 36px;
    color: var(--gray-05);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.privacy-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon {
    background: rgba(14, 165, 233, 0.1);
}

.use-icon {
    background: rgba(16, 185, 129, 0.1);
}

.share-icon {
    background: rgba(245, 158, 11, 0.1);
}

.protection-icon {
    background: rgba(239, 68, 68, 0.1);
}

.rights-icon {
    background: rgba(139, 92, 246, 0.1);
}

.cookies-icon {
    background: rgba(217, 119, 6, 0.1);
}

.retention-icon {
    background: rgba(6, 182, 212, 0.1);
}

.third-party-icon {
    background: rgba(59, 130, 246, 0.1);
}

.privacy-card h2 {
    color: var(--gray-05);
    margin-bottom: 16px;
}

.privacy-card p {
    margin-bottom: 12px;
}

.privacy-card ul {
    list-style: none;
    padding-left: 0;
}

.privacy-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-04);
}

.privacy-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.privacy-contact {
    background: var(--bg-radial);
    padding: 40px;
    border-radius: var(--border-radius);
}

.privacy-contact h2 {
    margin-bottom: 16px;
}

.privacy-contact ul {
    list-style: none;
    padding: 0;
}

.privacy-contact ul li {
    padding: 8px 0;
    color: var(--gray-04);
}

.privacy-update {
    text-align: center;
    padding: 24px;
    background: var(--gray-01);
    border-radius: var(--border-radius);
}

.privacy-update p {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 56px;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    padding: 8px 0;
}

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

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .emergency-card {
        padding: 40px;
        gap: 40px;
    }

    .app-card {
        padding: 0 40px;
        gap: 40px;
        height: 350px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 30px;
    }

    .nav-content {
        gap: 30px;
    }

    .nav-menu {
        display: none;
    }

    .navbar .btn-primary {
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero .container {
        gap: 30px;
    }

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

    .hero-image {
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
    }

    .emergency-card {
        flex-direction: column;
        padding: 30px 20px 0;
        gap: 30px;
        align-items: center;
        justify-content: space-between;
    }

    .emergency-content {
        max-width: 100%;
        text-align: center;
    }

    .emergency-image {
        align-self: center;
        margin-bottom: 0;
        display: flex;
        align-items: flex-end;
    }

    .emergency-image img {
        max-height: 250px;
        display: block;
    }

    .app-card {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 30px 20px 0;
        gap: 20px;
        height: auto;
        min-height: 450px;
        overflow: hidden;
    }

    .app-mockup {
        position: relative;
        left: 0;
        bottom: 0;
        width: auto;
        height: 300px;
        order: 2;
        align-self: center;
        margin-bottom: 0;
    }

    .phone-image {
        height: 300px;
        display: block;
    }

    .app-content {
        order: 1;
        margin-left: 0;
        padding-bottom: 0;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .coming-soon-badge {
        align-self: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card {
        width: 100%;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .nav-content {
        gap: 20px;
    }

    .navbar {
        padding: 8px 0;
        height: 60px;
    }

    .logo-image {
        height: 24px;
    }

    .navbar .btn-primary {
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero {
        padding: 40px 0;
    }

    .emergency-card {
        padding: 20px 16px 0;
        justify-content: space-between;
    }

    .privacy-card {
        padding: 20px 16px;
    }

    .emergency-image {
        margin-bottom: 0;
    }

    .emergency-image img {
        max-height: 200px;
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-icon img {
        width: 70px;
        height: 70px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .app-card {
        padding: 20px 16px 0;
        min-height: 400px;
        justify-content: space-between;
    }

    .app-mockup {
        width: auto;
        height: 250px;
        margin-bottom: 0;
    }

    .phone-image {
        height: 250px;
        display: block;
    }

    .app-content {
        padding-bottom: 0;
    }

    .app-content h2 {
        font-size: 20px;
    }

    .divider {
        margin: 40px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }
}
