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

:root {
    --primary-color: #13C69E;
    --primary-dark: #000000;
    --bg-light: #F1F1F1;
    --bg-lighter: #F1F1F1;
    --bg-card: #F1F1F1;
    --text-dark: #333333;
    --text-gray: #666666;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: #F1F1F1;
    color: #000000;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 4.0rem;
    line-height: 1.5;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: #272727;
}

button {
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    padding: 17px 40px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #10A080;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-third {
    color: #000000;
}

.btn-third:hover {
    transform: translateY(-2px);
        color: #13C69E;

}

.btn-stroke {
    border: 1px solid rgba(0, 0, 0, 0.205);
    color: #000000;
    
}

.btn-stroke:hover {
    transform: translateY(-2px);
        color: #ffffff;
        background-color: #13C69E;

}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(241, 241, 241, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Search Styles */
.search-container {
    position: relative;
    margin-right: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 50px;
    padding: 0 15px;
    border: 1px solid rgba(0, 0, 0, 0.205);
    backdrop-filter: blur(5px);
}

.search-icon {
    color: #c0c0c0;
    font-size: 0.8rem;
    margin-right: 8px;
}

#crypto-search {
    width: 200px;
    padding: 12px 5px;
    border: none;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    background-color: transparent;
    outline: none;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 1001;
    display: none;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

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

.logo img {
    height: 25px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #13C69E;
}

.nav-buttons button {
    margin-left: 10px;
}

/* Mobile menu button - hidden by default */
.mobile-menu-button {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    padding: 10px;
}

/* Partners Section */
.partners {
    padding: 50px 0;
    background-color: transparent;
    /* Altındaki çizgiyi kaldır */
    border-bottom: none;
}

.partner-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-carousel {
    display: flex;
    width: max-content;
    transition: transform 1s ease-in-out;
    align-items: center;
}

.partner-logo {
    width: 250px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.partner-logo img {
    height: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    opacity: 0.7;
}

.divider {
    width: 1px;
    height: 35px;
    background-color: rgba(128, 128, 128, 0.5);
    margin: 0 5px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
}

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

/* Risk Search Styles */
.risk-search-container {
    margin-top: 30px;
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.risk-search-box {
    display: flex;
    align-items: center;
    background-color: #F1F1F1;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.500);
    overflow: hidden;
    width: 100%;
}

#risk-search {
    flex: 1;
    padding: 25px 50px;
    border: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.2rem;
    background-color: transparent;
    outline: none;
    color: #000000;
}

.risk-analyze-btn {
    background: #000;
    color: white;
    border: none;
    padding: 18px 32px;
    margin-right: 10px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.risk-analyze-btn:hover {
    background-color: #10A080;
}

.risk-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0 0 25px 25px;
    z-index: 1001;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1px;
}

.risk-suggestion-item {
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.risk-suggestion-item:hover {
    background-color: #f5f5f5;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    margin-right: 30px;
    margin-bottom: 20px;
}

.stat span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
}

.stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666666;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

/* Features Section */
.features {
    background-color: transparent;
}

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

.feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e6e6e6;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 198, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: #000000;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 20px;
}

/* Projects Section */
.projects {
    background-color: transparent;
}

.projects-showcase {
    margin-bottom: 40px;
}

.project-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.project-logos img {
    margin: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.project-logos img:hover {
    opacity: 1;
}

.project-chart {
    text-align: center;
}

.project-chart img {
    padding-top: -50px;
    max-width: 100%;
    z-index: -1;
    
}

.projects .btn-primary {
    display: inline-block;
    margin: 0 auto;
}

/* Analytics Section */
.analytics {
    background-color: transparent;
}

.analytics-showcase {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin: 50px 0;
}

.analytics-dashboard {
    flex: 1;
}

.risk-analysis-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.risk-analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #13C69E, #10A080, #13C69E);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.coin-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.coin-logo {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(19, 198, 158, 0.3);
}

.coin-details {
    flex: 1;
}

.coin-details h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.coin-price {
    color: #13C69E;
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-change {
    color: #13C69E;
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.risk-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(19, 198, 158, 0.4);
}

.risk-badge.low {
    background-color: #13C69E;
}

.chart-container {
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.price-chart {
    width: 100%;
    height: 120px;
}

.risk-metrics {
    margin-bottom: 25px;
}

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

.metric-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.metric-header h4 {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #13C69E;
}

.circular-progress {
    width: 40px;
    height: 40px;
}

.circular-chart {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
}

.circle {
    fill: none;
    stroke: #13C69E;
    stroke-width: 2;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.liquidity-bars {
    display: flex;
    gap: 3px;
    align-items: end;
}

.bar {
    width: 6px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.bar.active {
    background: #13C69E;
    box-shadow: 0 0 10px rgba(19, 198, 158, 0.5);
}

.bar:nth-child(1) { height: 15px; }
.bar:nth-child(2) { height: 25px; }
.bar:nth-child(3) { height: 20px; }
.bar:nth-child(4) { height: 30px; }
.bar:nth-child(5) { height: 18px; }

.social-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #13C69E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.social-score {
    font-size: 1rem;
    font-weight: 600;
    color: #13C69E;
}

.stress-wave {
    display: flex;
    gap: 2px;
    align-items: end;
}

.wave {
    width: 4px;
    background: #13C69E;
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { height: 15px; animation-delay: 0s; }
.wave:nth-child(2) { height: 25px; animation-delay: 0.2s; }
.wave:nth-child(3) { height: 20px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

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

.volume-info {
    display: flex;
    flex-direction: column;
}

.volume-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.volume-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #13C69E;
}

.detailed-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #13C69E, #10A080);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.detailed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 198, 158, 0.4);
}

.analytics-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}



.feature-card .card-icon {
    width: 50px;
    height: 50px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card .card-icon i {
    font-size: 20px;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.analytics .btn-primary {
    display: inline-block;
    margin: 0 auto;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    margin: 50px 0;
}

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

.parallax-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

.parallax-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.phone-image {
    width: 750px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Mobile App Section */
.mobile-app {
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.mobile-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mobile-content {
    flex: 1;
    max-width: 600px;
}

.mobile-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.app-features {
    margin-bottom: 30px;
}

.app-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.app-feature .feature-icon {
    margin: 0 20px 0 0;
    width: 40px;
    height: 40px;
}

.app-feature h3 {
    margin-bottom: 0;
}

.mobile-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mobile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid #ddd;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #F1F1F1;
    color: #333;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.header-content {
    flex: 1;
}

.testimonials-header h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: bold;
    text-align: left;
}

.testimonials-header p {
    color: #666;
    font-size: 18px;
    margin-bottom: 0;
    text-align: left;
}

.see-all-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 40px;
}

.see-all-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.testimonials-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0;
    width: 100%;
}

.testimonial-card {
    background: #000;
    border-radius: 20px;
    padding: 50px;
    display: none;
    position: relative;
    border: 1px solid #333;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.testimonial-avatar {
    width: 250 px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
    margin-right: 100px;
}

.testimonial-text p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 80px;
    color: #fff;
}

.testimonial-author h4 {
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.testimonial-author p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.testimonial-metric {
    text-align: left;
    flex-shrink: 0;
    width: 160px;
}

.metric-number {
    display: block;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: #ccc;
    margin-top: 5px;
    line-height: 1.2;
}

.testimonials-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 30px;
    z-index: 10;
}

.control-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.control-btn:hover {
    background: #13C69E;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq {
    background-color: #F5F5F5;
    padding: 80px 0;
    color: #333;
}

.faq .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    padding-right: 40px;
}

.faq-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 30px;
}

.faq-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.faq .btn-primary {
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #D0D0D0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px 28px;
    margin: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #F8F8F8;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    color: #666;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 28px 24px 28px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active {
    background: #000;
    border-color: #000;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: white;
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta {
    background-color: transparent;
    text-align: center;
}

.cta h2 {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: transparent;
    padding: 60px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 60px;
    margin-bottom: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #333333;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #13C69E;
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    color: #666666;
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #13C69E;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.7rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analytics-showcase {
        flex-direction: column;
    }
    
    .analytics-dashboard {
        margin-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .analytics-dashboard img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .mobile-showcase {
        flex-direction: column-reverse;
    }
    
    .mobile-content {
        max-width: 100%;
        margin-top: 50px;
        text-align: center;
    }
    
    .app-feature {
        justify-content: center;
    }
    
    /* Parallax responsive */
    .parallax-section {
        height: 500px;
        margin: 30px 0;
    }
    
    .phone-image {
        width: 400px;
        height: auto;
    }
    
    /* FAQ responsive */
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-container {
        margin: 0 auto 40px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Tablet responsive */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .testimonials-grid {
        padding: 0 40px 60px 40px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .search-container {
        padding: 25px;
        margin: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Mobile menu styles */
    .mobile-menu-button {
        display: block !important;
        cursor: pointer;
        font-size: 24px;
        color: #000;
        padding: 10px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(241, 241, 241, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .btn-stroke {
        margin-top: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-logos {
        flex-wrap: wrap;
    }
    
    .project-logos img {
        margin: 10px 20px;
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .testimonial-content p {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .testimonial-rating {
        align-self: flex-end;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        padding: 0 20px 60px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px auto;
    }
    
    .testimonial-text {
        margin-right: 0;
    }
    
    .testimonial-metric {
        width: auto;
        margin-top: 15px;
    }
    
    .testimonials-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Hide search container in mobile */
    .search-container {
        display: none;
    }
    
    /* Adjust nav layout without search */
    nav {
        justify-content: space-between;
    }
    
    .nav-buttons {
        margin-left: auto;
    }
    
    /* Risk search responsive */
    .risk-search-container {
        margin-top: 20px;
        max-width: 100%;
    }
    
    .risk-search-box {
        flex-direction: column;
        border-radius: 25px;
        padding: 10px;
    }
    
    #risk-search {
        padding: 20px 25px;
        font-size: 1rem;
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .risk-analyze-btn {
        width: 100%;
        padding: 15px 25px;
        margin-right: 0;
        border-radius: 25px;
    }
    
    /* Header responsive */
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .see-all-btn {
        margin-left: 0;
        align-self: center;
    }
    
    /* FAQ responsive */
    .faq .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        padding-right: 0;
        text-align: center;
    }
    
    .faq h2 {
        font-size: 2.5rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .nav-buttons button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Mobile menu for small screens */
    .mobile-menu-button {
        display: block !important;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(241, 241, 241, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }
    
    /* Hide search container in small mobile */
    .search-container {
        display: none;
    }
    
    /* Optimize nav spacing */
    .nav-buttons {
        margin-left: auto;
        gap: 5px;
    }
    
    .nav-buttons button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .analytics-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .analytics-dashboard img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Parallax mobile responsive */
    .parallax-section {
        height: 350px;
        margin: 20px 0;
    }
    
    .phone-image {
        width: 250px;
        height: auto;
    }
    
    /* FAQ mobile responsive */
    .faq {
        padding: 50px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .faq-description {
        font-size: 0.95rem;
    }
    
    .faq-container {
        margin: 0 auto 30px;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 24px 20px 24px;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
    }
    
    .faq-toggle i {
        font-size: 14px;
    }
    
    .faq .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat {
        margin-right: 20px;
    }
    
    .footer-column {
        width: 100%;
        margin-right: 0;
    }
    
    /* Mobile specific adjustments */
    .testimonials-grid {
        padding: 0 15px 50px 15px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
    
    .testimonial-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .testimonial-author h4 {
        font-size: 16px;
    }
    
    .testimonial-author p {
        font-size: 12px;
    }
    
    .metric-number {
        font-size: 28px;
    }
    
    .metric-label {
        font-size: 10px;
    }
    
    .testimonials-controls {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .btn-stroke {
        margin-top: 20px;
    }
    
    /* Search section mobile */
    .search-container {
        padding: 15px;
        margin: 0 15px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .risk-analyze-btn {
        font-size: 14px;
        padding: 12px;
    }
}