/* Connect Studios - Exact Connect Social Design Replica */

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors - Exact Connect Social Palette */
    --red: #fe0c1e;
    --red-light: #ff3b47;
    --red-dark: #d10b1a;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Typography */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-ubuntu: 'Ubuntu', sans-serif;
    --font-great-vibes: 'Great Vibes', cursive;
    --font-roboto-condensed: 'Roboto Condensed', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;
    
    /* Borders */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

body {
    font-family: var(--font-open-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 4rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--red);
    color: var(--red);
}

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 4rem;
}

.nav-brand .logo {
    font-family: var(--font-montserrat);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.nav-brand .logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin: -12px 0;
    vertical-align: middle;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    gap: var(--spacing-4xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

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

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, auto);
        justify-content: start;
    }
    
    .hero-stats .stat-item {
        text-align: left;
        padding-right: var(--spacing-xl);
        border-right: 1px solid var(--gray-300);
    }
    
    .hero-stats .stat-item:last-child {
        border-right: none;
    }
}

.hero-stats h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    margin: 0;
}

.hero-stats p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-showcase {
    position: relative;
}

.phone-mockup {
    width: 350px;
    height: 700px;
    position: relative;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1d1d1f, #000000);
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #1c1c1e;
    border-radius: 3px;
    z-index: 20;
}

.connect-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: floatLogo 4s ease-in-out infinite;
    border-radius: 22px;
    background: white;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: -10%;
    width: 30%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.decoration-blob {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-4xl);
}

.section-title {
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-section {
    padding: var(--spacing-5xl) 0;
    background: var(--gray-50);
}

.portfolio-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.app-mockup {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.app-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.icon-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red), var(--red-light));
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.app-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-weight: 700;
    color: var(--red);
    font-size: 1.125rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    gap: var(--spacing-3xl);
}

@media (min-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-step {
    position: relative;
    padding-left: var(--spacing-4xl);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 1.125rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.step-deliverables {
    list-style: none;
}

.step-deliverables li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.step-deliverables li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-5xl) 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    gap: var(--spacing-4xl);
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-header h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
}

.contact-details {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

.contact-text h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.contact-text p {
    color: var(--gray-600);
    margin: 0;
}

/* Form */
.contact-form-container {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: var(--spacing-lg);
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-montserrat);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(254, 12, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr auto;
    }
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 var(--spacing-sm) 0;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-800);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--gray-400);
}

.social-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links {
    display: grid;
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    font-family: var(--font-montserrat);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-800);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1rem);
    }
}

.phone-mockup {
    /* Removed float animation - only logo should animate */
}

/* Mobile Menu (Hidden by default, show with JS) */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-md);
    }
    
    .nav-menu.active .nav-item {
        text-align: center;
    }
}

/* Mobile Responsive Design */
@media (max-width: 767px) {
    /* Header Mobile */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-brand .logo-img {
        height: 45px;
        margin: -8px 0;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 5rem 0 3rem;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .hero-stats .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
        padding-bottom: var(--spacing-md);
    }
    
    .hero-stats .stat-item:last-child {
        border-bottom: none;
    }
    
    /* Phone Mockup Mobile */
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .status-bar {
        height: 44px;
        padding: 0 20px;
        font-size: 16px;
        padding-top: 4px;
    }
    
    .screen-content {
        top: 44px;
    }
    
    .connect-logo-img {
        width: 70px;
        height: 70px;
        padding: 14px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Portfolio Section Mobile */
    .portfolio-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .process-step {
        padding-left: var(--spacing-2xl);
    }
    
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--spacing-3xl) 0 var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
}

/* Tablet Responsive Design */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-3xl);
    }
    
    .phone-mockup {
        width: 320px;
        height: 640px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
}

/* Small Mobile Devices */
@media (max-width: 479px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .connect-logo-img {
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .nav-brand .logo-img {
        height: 40px;
        margin: -6px 0;
    }
    
    .footer-logo-img {
        height: 50px;
    }
}

/* New App Showcase Styles */
.app-showcase {
    display: grid;
    gap: var(--spacing-4xl);
}

.app-main-card {
    display: grid;
    gap: var(--spacing-3xl);
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow);
}

@media (min-width: 1024px) {
    .app-main-card {
        grid-template-columns: auto 1fr;
    }
}

.app-mockup-large {
    display: flex;
    justify-content: center;
}

.app-icon-large {
    width: 8rem;
    height: 8rem;
    border-radius: var(--border-radius-2xl);
    position: relative;
    overflow: hidden;
}

.icon-gradient-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red), var(--red-light));
}

.development-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.app-main-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.app-main-info p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-2xl);
}

.development-status {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .development-status {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.status-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

.status-value {
    font-family: var(--font-montserrat);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--red);
}

.development-highlights {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .development-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.highlight-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.highlight-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Company Info Styles */
.company-info {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow);
}

.company-info h3 {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
}

.company-details {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.detail-item {
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--red);
}

.detail-item strong {
    color: var(--gray-700);
    margin-right: 0.5rem;
}

.development-status-card {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
}

.development-status-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.development-status-card p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* iPhone UI Elements - Authentic iOS 17+ */
.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    font-size: 19px;
    font-weight: 590;
    color: #ffffff;
    z-index: 30;
    padding-top: 6px;
}

.time {
    letter-spacing: -0.43px;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 590;
}

.signal-dots {
    font-size: 14px;
    letter-spacing: 1px;
}

.carrier {
    font-size: 17px;
    font-weight: 590;
}

.battery {
    font-size: 17px;
    font-weight: 590;
}

.screen-content {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    z-index: 10;
}

.home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: #ffffff;
    border-radius: 2.5px;
    z-index: 30;
}

.dock {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    padding: 12px 20px;
    background: rgba(120, 120, 128, 0.16);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 21px;
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    z-index: 20;
}

.dock-app {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Pixel-Perfect iOS App Icons */

/* Phone App - Exact iOS Style */
.phone-app {
    background: #34C759;
    position: relative;
    overflow: hidden;
}

.phone-app::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 2px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M222.37,158.46l-47.11-21.11-.13-.06a16,16,0,0,0-15.17,1.4,8.12,8.12,0,0,0-.75.56L134.87,160c-15.42-7.49-31.34-23.29-38.83-38.51l20.78-24.71c.2-.25.39-.5.57-.77a16,16,0,0,0,1.32-15.06l0-.12L97.54,33.64a16,16,0,0,0-16.62-9.52A56.26,56.26,0,0,0,32,80c0,79.4,64.6,144,144,144a56.26,56.26,0,0,0,55.88-48.92A16,16,0,0,0,222.37,158.46Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Messages App - Exact iOS Style */
.messages-app {
    background: #007AFF;
    position: relative;
    overflow: hidden;
}

.messages-app::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 28px;
    background: white;
    border-radius: 18px 18px 18px 4px;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

/* Safari App - Exact iOS Compass Style */
.safari-app {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.safari-app::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: conic-gradient(from 0deg at 50% 50%, #FF3B30 0deg, #FF9500 51.43deg, #FFCC00 102.86deg, #34C759 154.29deg, #007AFF 205.71deg, #5856D6 257.14deg, #AF52DE 308.57deg, #FF2D92 360deg);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.safari-app::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5px;
    height: 12px;
    background: white;
    border-radius: 0.75px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -58%) rotate(25deg);
    transform-origin: center bottom;
}

/* Music App - Exact iOS Style */
.music-app {
    background: radial-gradient(ellipse at center, #FF2D92 0%, #FF6B35 40%, #FF9500 100%);
    position: relative;
    overflow: hidden;
}

.music-app::before {
    content: "";
    position: absolute;
    bottom: 45%;
    left: 52%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.music-app::after {
    content: "";
    position: absolute;
    top: 28%;
    right: 30%;
    width: 2px;
    height: 18px;
    background: white;
    border-radius: 1px;
    transform: rotate(8deg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Smooth scrolling behavior */
html {
    scroll-padding-top: 5rem;
}