/* ============================================
   CLIPPER AUDIO - ESTILOS GLOBAIS
   ============================================ */

/* Variáveis de Cor */
:root {
    --primary: #DD454F;
    --primary-light: #FF6B6B;
    --accent: #FF6B6B;
    --bg-dark: #0D0D0D;
    --bg-secondary: #151515;
    --bg-tertiary: #1A1A1A;
    --border-color: #2A2A2A;
    --text-primary: #F0F0F0;
    --text-secondary: #A0A0A0;
    --font-bebas: "Bebas Neue", sans-serif;
    --font-dm: "DM Sans", sans-serif;
    --font-space: "Space Mono", monospace;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-dm);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(221, 69, 79, 0.1);
    border: 1px solid rgba(221, 69, 79, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.logo-text {
    font-family: var(--font-bebas);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo-text .accent {
    color: var(--primary);
    transition: var(--transition);
}

.logo:hover .accent {
    color: var(--text-primary);
}

.logo:hover .logo-text {
    color: var(--primary);
}

/* Navegação Desktop */
.nav {
    display: flex;
    gap: 2rem;
	align-items: center;
}


.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);    
	position: relative;	
}

.nav-link:first-child {
    color: var(--text-primary);
}

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

/* CTA Button */
.cta-button {
    display: none;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(221, 69, 79, 0.2);
}


.cta-button:hover {
    background-color: var(--primary-light);
}

.cta-button:active {
    transform: scale(0.95);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 50;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--primary);
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark), rgba(13, 13, 13, 0.7), var(--bg-dark));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label {
    display: inline-block;
    font-family: var(--font-space);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    text-transform: uppercase;
    padding: 0.2rem 0.9rem;
    background-color: rgba(221, 69, 79, 0.1);
    border: 1px solid rgba(221, 69, 79, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero h1 {
    font-family: var(--font-bebas);
    font-size: clamp(3.5rem, 10vw, 8rem);
    letter-spacing: 0.0rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    max-width: 1500px;
	font-weight: 400;
}

.gradient {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin-bottom: 4rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    background-color: transparent;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 0 25px rgba(221, 69, 79, 0.3);
	font-size: clamp(1rem, 5vw, 1rem);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Waveform */
.waveform {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 60px;
    justify-content: center;
    opacity: 0.8;
    margin-top: 1rem;
}

.wave-bar {
    width: 3px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 9999px;
    animation: pulseWave 1.2s ease-in-out infinite;
    transform-origin: bottom;
}

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

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.08s; }
.wave-bar:nth-child(3) { animation-delay: 0.16s; }
.wave-bar:nth-child(4) { animation-delay: 0.24s; }
.wave-bar:nth-child(5) { animation-delay: 0.32s; }
.wave-bar:nth-child(6) { animation-delay: 0.4s; }
.wave-bar:nth-child(7) { animation-delay: 0.48s; }
.wave-bar:nth-child(8) { animation-delay: 0.56s; }
.wave-bar:nth-child(9) { animation-delay: 0.64s; }
.wave-bar:nth-child(10) { animation-delay: 0.72s; }
.wave-bar:nth-child(11) { animation-delay: 0.8s; }
.wave-bar:nth-child(12) { animation-delay: 0.88s; }
.wave-bar:nth-child(13) { animation-delay: 0.96s; }
.wave-bar:nth-child(14) { animation-delay: 1.04s; }
.wave-bar:nth-child(15) { animation-delay: 1.12s; }
.wave-bar:nth-child(16) { animation-delay: 1.2s; }
.wave-bar:nth-child(17) { animation-delay: 1.28s; }
.wave-bar:nth-child(18) { animation-delay: 1.36s; }
.wave-bar:nth-child(19) { animation-delay: 1.44s; }
.wave-bar:nth-child(20) { animation-delay: 1.52s; }
.wave-bar:nth-child(21) { animation-delay: 1.6s; }
.wave-bar:nth-child(22) { animation-delay: 1.68s; }
.wave-bar:nth-child(23) { animation-delay: 1.76s; }
.wave-bar:nth-child(24) { animation-delay: 1.84s; }
.wave-bar:nth-child(25) { animation-delay: 1.92s; }
.wave-bar:nth-child(26) { animation-delay: 2s; }
.wave-bar:nth-child(27) { animation-delay: 2.08s; }
.wave-bar:nth-child(28) { animation-delay: 2.16s; }
.wave-bar:nth-child(29) { animation-delay: 2.24s; }
.wave-bar:nth-child(30) { animation-delay: 2.32s; }
.wave-bar:nth-child(31) { animation-delay: 2.4s; }
.wave-bar:nth-child(32) { animation-delay: 2.48s; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(0.5rem); }
}

/* ============================================
   SEÇÃO SOBRE NÓS
   ============================================ */

.about {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background-color: rgba(21, 21, 21, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.00em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
	font-weight: 400;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
}

/* Counters */
.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.counter {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary);
    line-height: 1;
}

.counter-label {
    font-family: var(--font-space);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* About Image */
.about-image {
    display: flex;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4 / 3;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    opacity: 0.4;
    transition: var(--transition);
}

.about-image-frame:hover::before {
    opacity: 1;
    inset: -0.75rem;
}

.about-image-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    filter: grayscale(1) contrast(1.25);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    z-index: 10;
}

.about-image-frame:hover .about-image-img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

/* ============================================
   SEÇÃO NOSSOS SERVIÇOS
   ============================================ */

.services {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    line-height: 1.2;
	font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 0 30px rgba(221, 69, 79, 0.15);
    border-color: var(--primary);
    transform: translateY(-1rem);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background-color: rgba(221, 69, 79, 0.1);
    border: 1px solid rgba(221, 69, 79, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    width: fit-content;
}

.service-card h3 {
    font-family: var(--font-bebas);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-light);
    transform: translateX(0.25rem);
}

/* ============================================
   POR QUE A CLIPPER?
   ============================================ */

.why-clipper {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.why-text h2 {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
	font-weight: 500;
}

.why-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.why-card-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-card {
    display: flex;
    gap: 0.67rem;
    padding: 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    background-color: rgba(13, 13, 13, 0.5);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    background-color: rgba(221, 69, 79, 0.05);
    transform: translateY(-0.35rem);
}

.why-img {
	width: 150px;
    height: fit-content;
}

.why-card h3 {
    font-family: var(--font-bebas);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
	font-weight: 400;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SEÇÃO PORTFÓLIO
   ============================================ */

.portfolio {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1;
    cursor: pointer;
    group: 'portfolio';
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-label {
    font-family: var(--font-space);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-overlay h3 {
    font-family: var(--font-bebas);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

/* ============================================
   SEÇÃO PARCEIROS
   ============================================ */

.partners {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    background: rgba(21, 21, 21, 0.5);
}

.partners-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6rem;
    z-index: 10;
    pointer-events: none;
}

.carousel-gradient.left {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.carousel-gradient.right {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    padding: 1rem 0;
}

.carousel-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: rgba(240, 240, 240, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.carousel-item:hover {
    color: var(--primary);
    border-color: var(--primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-150%);
    }
}

/* ============================================
   SEÇÃO DEPOIMENTOS
   ============================================ */

.testimonials {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.testimonials h2 {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.00em;
    line-height: 1.2;
    margin-bottom: 3rem;
	font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(221, 69, 79, 0.1);
    transform: translateY(-1rem);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-card span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */

.cta-final {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(221, 69, 79, 0.1), rgba(255, 107, 107, 0.05));
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-final h2 {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.00em;
    margin-bottom: 1rem;
	font-weight: 400;
}

.cta-final p {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ============================================
   RODAPÉ
   ============================================ */

.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    font-family: var(--font-bebas);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
	font-weight: 400;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

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

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVOS MINIMOS
   ============================================ */
   
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
}
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }

    .cta-button {
        display: block;
    }
	
    .nav {
        display: flex;
    }
    .why-card-grid {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
	.why-img {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 4rem;
    }
	
    .why-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
	
    .why-card {
    display: flex;
    }
}

/* ============================================
   RESPONSIVOS MAXIMOS
   ============================================ */
   
@media (max-width: 640px) {
    .counters {
        gap: 0.5rem;
    }	
	
	.section-header,
	.section-header h2	{
		text-align: left;
	}
	
    .hero h1 {
        font-size: 2.5rem;
    }	
	
	.about-text p {
        font-size: 1rem;
    }	
	
	.why-card h3 {
		text-align: center;
	}
	
	.why-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
    .why-img {
		align-content:center;
		align-items:center;
	}
    
    .hero p {
        font-size: 0.95rem;
    }
	    
    .label {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
	
    .nav {
        display: none;
    }
	
    .cta-btn {
        display: flex;
    }
	
    .menu-toggle {
        display: flex;
    }
	
    .hero-buttons {
        flex-direction: column;
    }
	
    .btn {
        width: 100%;
    }
	
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
	
    .services-grid,
    .portfolio-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
	
    .counters {
        grid-template-columns: 1fr;
    }
	
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.accent {
    color: var(--primary);
}

.text-secondary {
    color: var(--text-secondary);
}