/* ═══════════════════════════════════════════════════════════
   OWTD-Fly Landing Page - Modern & Sexy Design
   Color palette from logo: Mint green + Dark green
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --mint: #A8CBB7;
    --mint-light: #C5DED0;
    --mint-lighter: #E8F2EC;
    --mint-dark: #8BB8A0;
    --green-dark: #1B3D2F;
    --green-deeper: #0F2A1E;
    --green-medium: #2A5E47;
    --accent: #D4E7DB;
    --white: #FFFFFF;
    --off-white: #F7FAF8;
    --gray-100: #F0F4F2;
    --gray-200: #D9E2DD;
    --gray-300: #B0BFB7;
    --gray-400: #8A9B92;
    --gray-500: #6B7D74;
    --gray-600: #4A5A52;
    --gray-700: #2D3B34;
    --text-primary: #1A2E24;
    --text-secondary: #5A6D63;
    --text-muted: #8A9B92;
    --shadow-sm: 0 2px 8px rgba(27, 61, 47, 0.06);
    --shadow-md: 0 8px 24px rgba(27, 61, 47, 0.08);
    --shadow-lg: 0 16px 48px rgba(27, 61, 47, 0.12);
    --shadow-xl: 0 24px 64px rgba(27, 61, 47, 0.16);
    --shadow-glow: 0 0 40px rgba(168, 203, 183, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--green-deeper);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── Cursor Glow ─── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 203, 183, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

@media (hover: hover) {
    .cursor-glow {
        opacity: 1;
    }
}

/* ─── Container ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(15, 42, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 203, 183, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

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

.nav-link-cta {
    background: var(--mint);
    color: var(--green-dark) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: var(--mint-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 203, 183, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(42, 94, 71, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(168, 203, 183, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--green-deeper) 0%, #132E22 50%, var(--green-deeper) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 203, 183, 0.15);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -40px) scale(1.1); opacity: 0.6; }
    50% { transform: translate(-20px, -80px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(40px, -30px) scale(1.05); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 203, 183, 0.1);
    border: 1px solid rgba(168, 203, 183, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mint);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 50%, var(--mint-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--mint);
    color: var(--green-dark);
}

.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 203, 183, 0.3);
}

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

.btn-ghost:hover {
    border-color: var(--mint);
    color: var(--mint);
    background: rgba(168, 203, 183, 0.05);
}

.btn-outline-light {
    background: transparent;
    color: var(--mint);
    border: 1px solid rgba(168, 203, 183, 0.3);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(168, 203, 183, 0.1);
    border-color: var(--mint);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ─── Hero Stats ─── */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--mint);
    display: inline;
}

.hero-stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--mint);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Scroll Indicator ─── */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--mint);
}

.scroll-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, currentColor, transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ─── Sections ─── */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mint);
    margin-bottom: 16px;
    background: rgba(168, 203, 183, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(168, 203, 183, 0.15);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--mint);
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ─── Services ─── */
.services {
    background: var(--green-deeper);
}

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

.service-card {
    background: rgba(168, 203, 183, 0.04);
    border: 1px solid rgba(168, 203, 183, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(168, 203, 183, 0.08);
    border-color: rgba(168, 203, 183, 0.15);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(168, 203, 183, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--mint);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ─── Process ─── */
.process {
    background: linear-gradient(180deg, var(--green-deeper) 0%, #132E22 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 203, 183, 0.2), rgba(168, 203, 183, 0.2), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(168, 203, 183, 0.08);
    border: 2px solid rgba(168, 203, 183, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--mint);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: rgba(168, 203, 183, 0.15);
    border-color: var(--mint);
    box-shadow: 0 0 30px rgba(168, 203, 183, 0.2);
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ─── Features ─── */
.features {
    background: var(--green-deeper);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(168, 203, 183, 0.04);
    border: 1px solid rgba(168, 203, 183, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(168, 203, 183, 0.08);
    border-color: rgba(168, 203, 183, 0.15);
}

.feature-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(168, 203, 183, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

.feature-check svg {
    width: 14px;
    height: 14px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* ─── Portfolio ─── */
.portfolio {
    background: linear-gradient(180deg, var(--green-deeper) 0%, #132E22 50%, var(--green-deeper) 100%);
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-card {
    background: rgba(168, 203, 183, 0.04);
    border: 1px solid rgba(168, 203, 183, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: rgba(168, 203, 183, 0.2);
    transform: translateY(-4px);
}

.portfolio-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(168, 203, 183, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-card-content {
    position: relative;
    z-index: 1;
}

.portfolio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.portfolio-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mint);
    background: rgba(168, 203, 183, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.portfolio-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #4ADE80;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.portfolio-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-tagline {
    font-size: 15px;
    color: var(--mint);
    margin-bottom: 16px;
    font-weight: 500;
}

.portfolio-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.portfolio-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tag {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
}

.portfolio-card-coming {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-style: dashed;
}

.portfolio-coming-icon {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.portfolio-coming-icon svg {
    width: 48px;
    height: 48px;
}

.portfolio-card-coming .portfolio-name {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-card-coming .portfolio-desc {
    margin-bottom: 20px;
}

/* ─── CTA ─── */
.cta {
    background: var(--green-deeper);
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ─── Contact ─── */
.contact {
    background: linear-gradient(180deg, var(--green-deeper) 0%, #0C2118 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(168, 203, 183, 0.04);
    border: 1px solid rgba(168, 203, 183, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    background: rgba(168, 203, 183, 0.08);
    border-color: rgba(168, 203, 183, 0.2);
    transform: translateY(-4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(168, 203, 183, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--mint);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── Footer ─── */
.footer {
    background: #0A1A12;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(168, 203, 183, 0.06);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: whatsapp-pulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

/* ─── Animations ─── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(15, 42, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-showcase {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}
