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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #f5f5f0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    background: #000;
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    stroke: #fff;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 0;
}

.btn-get-quote {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-get-quote:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-get-quote svg {
    stroke: #fff;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    fill: #fff;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 140px 0 100px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -2.5px;
}

.btn-primary {
    background: #ff3b00;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

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

.pause-video {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.pause-video:hover {
    opacity: 0.7;
}

.pause-icon {
    font-size: 14px;
}

.pause-text {
    text-transform: uppercase;
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 45px 40px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stats-card {
    text-align: center;
}

.stats-number {
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
}

.stats-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.btn-secondary {
    background: #ff3b00;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

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

.hero-agency-text {
    position: absolute;
    bottom: 60px;
    right: 40px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    z-index: 1;
    letter-spacing: -8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.about {
    background: #fff;
    padding: 120px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-text {
    max-width: 700px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
}

.highlight {
    color: #ff3b00;
}

.about-badge {
    position: relative;
}

.circular-badge {
    width: 150px;
    height: 150px;
    position: relative;
}

.badge-svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.badge-text {
    font-size: 24px;
    font-weight: 700;
    fill: #ff3b00;
}

.badge-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.stat-item {
    position: relative;
    padding-top: 30px;
}

.stat-dot {
    width: 8px;
    height: 8px;
    background: #ff3b00;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.stat-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.services {
    background: #f5f5f0;
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.services-intro {
    position: relative;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 30px 0;
}

.services-image {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.service-item:hover,
.service-item.active {
    border-bottom-color: #ff3b00;
}

.service-item.active .service-title {
    color: #000;
}

.service-number {
    font-size: 18px;
    color: #999;
    font-weight: 500;
    min-width: 60px;
}

.service-title {
    flex: 1;
    font-size: 28px;
    font-weight: 600;
    color: #999;
    transition: color 0.3s;
}

.service-item:hover .service-title,
.service-item.active .service-title {
    color: #000;
}

.service-arrow {
    font-size: 24px;
    color: #999;
    transition: all 0.3s;
}

.service-item:hover .service-arrow,
.service-item.active .service-arrow {
    color: #000;
    transform: translateX(5px);
}

.creative {
    background: #f5f5f0;
    padding: 120px 0;
}

.creative-grid {
    display: grid;
    grid-template-columns: 300px 1fr 500px;
    gap: 60px;
    align-items: center;
}

.creative-services {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.creative-service-item {
    position: relative;
}

.creative-icon {
    margin-bottom: 15px;
    color: #000;
}

.creative-icon svg {
    display: block;
    stroke: #000;
}

.creative-service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.creative-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.creative-image {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.creative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creative-content {
    padding-left: 40px;
}

.brand-strategy {
    background: #f5f5f0;
    padding: 120px 0;
}

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

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: #ff3b00;
    letter-spacing: 2px;
}

.brand-strategy-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-strategy-item {
    border-top: 1px solid #ddd;
    padding: 40px 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.brand-strategy-item:last-child {
    border-bottom: 1px solid #ddd;
}

.brand-strategy-item.active {
    background: #ff3b00;
    padding: 40px 60px;
    margin: 0 -60px;
}

.brand-strategy-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    transition: color 0.3s;
    text-align: center;
}

.brand-strategy-item.active .brand-strategy-title {
    color: #fff;
}

.brand-strategy-image {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.brand-strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.trust-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 40px;
    letter-spacing: -1px;
}

.trust-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -10px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff3b00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-left: -15px;
    border: 3px solid #fff;
}

.trust-text {
    font-size: 15px;
    color: #666;
}

.service-cards {
    background: #fff;
    padding: 60px 0 120px;
}

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

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.card-label {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.card-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.card-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff3b00;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.card-btn:hover {
    transform: scale(1.1);
}

.card-btn-white {
    background: #fff;
    color: #000;
}

.expert-team {
    background: #fff;
    padding: 120px 0;
}

.expert-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.expert-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.expert-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.expert-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
}

.expert-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.expert-service {
    position: relative;
}

.expert-service-number {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 20px;
}

.expert-service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.expert-service-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.expert-service-image {
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

.faq-section {
    background: #f5f5f0;
    padding: 120px 0;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.faq-tab {
    padding: 12px 28px;
    border-radius: 25px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-tab.active {
    background: #ff3b00;
    color: #fff;
}

.faq-tab:hover:not(.active) {
    background: #e0e0e0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 30px 35px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-number {
    font-size: 18px;
    font-weight: 600;
    margin-right: 15px;
    min-width: 30px;
}

.faq-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle:hover {
    background: #333;
}

.faq-answer {
    padding: 0 35px 30px 80px;
    display: none;
}

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

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-section {
    background: #fff;
    padding: 120px 0;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: #f5f5f0;
    padding: 50px;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3b00;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: #f5f5f0;
    padding: 40px;
    border-radius: 20px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-info-icon svg {
    stroke: #ff3b00;
}

.contact-info-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.6;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.footer {
    background: #fff;
    padding: 100px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: #ff3b00;
}

.newsletter-email-wrapper {
    position: relative;
}

.newsletter-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff3b00;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-submit:hover {
    background: #e63500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #000;
}

.footer-contact {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.footer-info {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-address {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #000;
}

.footer-credits {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-agency-text {
        font-size: 120px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .creative-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .brand-strategy-title {
        font-size: 36px;
    }
}
