/* Ilidericya - Digital Marketing Solutions */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clr-primary: #e74c3c;
    --clr-secondary: #c0392b;
    --clr-tertiary: #f39c12;
    --clr-accent: #e67e22;
    --clr-bg-light: #fefefe;
    --clr-bg-surface: #ffffff;
    --clr-text-dark: #2c3e50;
    --clr-text-medium: #e74c3c;
    --clr-text-light: #7f8c8d;
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    background: var(--clr-bg-light);
    color: var(--clr-text-dark);
    line-height: 1.7;
    font-size: clamp(15px, 1.05vw, 18px);
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(192, 57, 43, 0.12) 100%);
    border-bottom: 1px solid rgba(231, 76, 60, 0.15);
    position: relative;
    z-index: 100;
}

.hdr__topline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 2.5vw, 28px);
    padding: clamp(16px, 2.2vw, 24px) clamp(20px, 5vw, 80px);
    max-width: 1480px;
    margin: 0 auto;
}

.hdr__logo-wrap {
    flex-shrink: 0;
}

.hdr__logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.hdr__divider-a {
    flex: 0 0 auto;
    width: 1px;
    height: clamp(24px, 3vw, 36px);
    background: linear-gradient(to bottom, var(--clr-primary), transparent);
}

.hdr__company-name {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    color: var(--clr-text-dark);
    letter-spacing: 0.02em;
}

.hdr__tagline {
    flex: 1 1 auto;
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--clr-text-medium);
    font-weight: 500;
    margin-left: clamp(8px, 1.5vw, 16px);
}

.hdr__divider-c {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(to right, rgba(231, 76, 60, 0.3), transparent);
    min-width: 30px;
}

.hdr__nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.8vw, 38px);
    flex-shrink: 0;
    margin-left: auto;
}

.hdr__nav-link {
    font-size: clamp(14px, 1.05vw, 16px);
    font-weight: 500;
    color: var(--clr-text-dark);
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
}

.hdr__nav-link:hover {
    color: var(--clr-primary);
}

.hdr__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width 0.3s ease;
}

.hdr__nav-link:hover::after {
    width: 100%;
}

.homepage-wrapper {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

.hero-intro-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.03) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-radius: 16px;
    margin: clamp(30px, 4vw, 60px) 0;
}

.hero-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-intro-content h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.25;
    margin-bottom: clamp(20px, 2.5vw, 32px);
    letter-spacing: -0.02em;
}

.hero-intro-content p {
    font-size: clamp(16px, 1.2vw, 19px);
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: clamp(18px, 2vw, 28px);
}

.hero-cta-group {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(32px, 4vw, 48px);
}

.btn-primary-hero {
    display: inline-block;
    padding: clamp(14px, 1.5vw, 18px) clamp(32px, 3.5vw, 48px);
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(15px, 1.1vw, 17px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary-hero {
    display: inline-block;
    padding: clamp(14px, 1.5vw, 18px) clamp(32px, 3.5vw, 48px);
    background: white;
    color: var(--clr-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(15px, 1.1vw, 17px);
    transition: all 0.3s ease;
    border: 2px solid var(--clr-primary);
}

.btn-secondary-hero:hover {
    background: var(--clr-primary);
    color: white;
}

.performance-approach-section {
    padding: clamp(60px, 8vw, 100px) 0;
}

.performance-approach-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 60px);
}

.performance-text-area h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: clamp(24px, 3vw, 36px);
    line-height: 1.3;
}

.performance-text-area p {
    font-size: clamp(16px, 1.15vw, 18px);
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: clamp(18px, 2vw, 24px);
}

.services-grid-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.03) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-radius: 16px;
    margin: clamp(30px, 4vw, 60px) 0;
}

.services-grid-section h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 700;
    color: var(--clr-text-dark);
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 3vw, 36px);
}

.service-card {
    background: white;
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: 12px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.15);
    border-color: var(--clr-primary);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: clamp(12px, 1.5vw, 16px);
}

.service-card p {
    font-size: clamp(15px, 1.1vw, 17px);
    color: var(--clr-text-light);
    line-height: 1.7;
}

.contact-section {
    padding: clamp(60px, 8vw, 100px) 0;
}

.contact-section h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 700;
    color: var(--clr-text-dark);
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 3vw, 36px);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: clamp(32px, 4vw, 48px);
    border-radius: 12px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.15);
    border-color: var(--clr-primary);
}

.contact-card-icon {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: clamp(16px, 2vw, 24px);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: clamp(12px, 1.5vw, 16px);
}

.contact-card p {
    font-size: clamp(15px, 1.1vw, 17px);
    color: var(--clr-text-light);
    line-height: 1.7;
}

footer {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(192, 57, 43, 0.12) 100%);
    border-top: 1px solid rgba(231, 76, 60, 0.15);
    padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 80px);
    margin-top: clamp(60px, 8vw, 100px);
}

.footer-content {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(32px, 4vw, 48px);
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: clamp(16px, 2vw, 20px);
}

.footer-section p,
.footer-section a {
    font-size: clamp(14px, 1vw, 16px);
    color: var(--clr-text-light);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    text-align: center;
    margin-top: clamp(32px, 4vw, 48px);
    padding-top: clamp(24px, 3vw, 32px);
    border-top: 1px solid rgba(231, 76, 60, 0.15);
    color: var(--clr-text-light);
    font-size: clamp(13px, 0.95vw, 15px);
}

@media (max-width: 768px) {
    .hdr__topline {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hdr__nav {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
    
    .hdr__divider-c {
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}