/* Font imports from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fdfcfd;
    color: #151515;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.logo-black {
    color: #151515;
}

.logo-orange {
    color: #ff6b35;
}

.logo-white {
    color: #ffffff;
}

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

.nav-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #151515;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-bg-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    max-width: 900px;
    color: #151515;
}

.highlight-word {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.05em 0.2em;
}

.hero-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: #737373;
    margin-bottom: 40px;
    max-width: 700px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: transparent;
    color: #151515;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border: 1px solid #151515;
}

.cta-button::after {
    content: '\2192';
    font-size: 1.2rem;
    color: #ff6b35;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    background-color: #151515;
    color: #ffffff;
    transform: translateY(-1px);
}

.cta-button:hover::after {
    transform: translateX(4px);
}

/* Features Section */
.features {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
    text-align: center;
    margin-bottom: 80px;
}

.gray-text {
    color: #a1a1a1;
}

.orange-text {
    color: #ff6b35;
}

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

.feature-card {
    background-color: #f5f5f5;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #151515;
    margin: 0;
}

.feature-number {
    color: #ff6b35;
}

.feature-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-container {
    background-color: #000000;
    background-image: radial-gradient(circle, #3b3a3a 1px, transparent 1px);
    background-size: 35px 35px;
    padding: 80px 50px;
    margin: 0 50px;
}

.portfolio-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.portfolio-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    color: #737373;
    text-align: center;
    margin-bottom: 60px;
}

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

.portfolio-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
}

.portfolio-preview {
    padding: 20px 20px 0;
}

.browser-mockup {
    background-color: #1a1a1a;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.browser-bar {
    background-color: #2a2a2a;
    padding: 10px 12px;
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3a3a3a;
}

.browser-dot:first-child {
    background-color: #ff5f57;
}

.browser-dot:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-dot:nth-child(3) {
    background-color: #28c940;
}

.preview-content {
    height: 180px;
    position: relative;
    overflow: hidden;
}

/* ============================================
   MINI WEBSITE COMPONENT STYLES
   ============================================ */

/* Navigation */
.mini-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    background: #1a1a1a;
}

.mini-nav.light {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.mini-nav.dark {
    background: transparent;
    position: relative;
    z-index: 2;
}

.mini-logo {
    width: 20px;
    height: 6px;
    background: #ff6b35;
    border-radius: 1px;
}

.mini-nav.light .mini-logo {
    background: #151515;
}

.mini-nav-links {
    display: flex;
    gap: 4px;
}

.mini-nav-links span {
    width: 12px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 1px;
}

.mini-nav.light .mini-nav-links span {
    background: #737373;
}

.mini-nav-btn {
    width: 18px;
    height: 6px;
    background: #ff6b35;
    border-radius: 1px;
}

/* Headings & Text */
.mini-heading {
    height: 5px;
    width: 70%;
    background: #151515;
    border-radius: 1px;
}

.mini-heading.lg {
    height: 7px;
    width: 80%;
}

.mini-subtext {
    height: 3px;
    width: 90%;
    background: #a1a1a1;
    border-radius: 1px;
    margin-top: 3px;
}

/* Buttons */
.mini-btn {
    width: 24px;
    height: 7px;
    background: #ff6b35;
    border-radius: 1px;
    margin-top: 4px;
}

.mini-btn.primary {
    background: #ff6b35;
}

.mini-btn.outline {
    background: transparent;
    border: 1px solid #151515;
}

.mini-btn-group {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

/* ============================================
   PREVIEW 1: E-COMMERCE (COFFEE)
   ============================================ */
.preview-1 {
    background: linear-gradient(180deg, #2d1f1a 0%, #1a1512 100%);
}

.preview-1 .mini-nav {
    background: #2d1f1a;
    border-bottom: 1px solid #3d2f2a;
}

.preview-1 .mini-logo {
    background: #d4a574;
}

.preview-1 .mini-nav-links span {
    background: #8b7355;
}

.preview-1 .mini-hero {
    display: flex;
    padding: 10px 8px;
    gap: 8px;
}

.preview-1 .mini-hero-text {
    flex: 1;
}

.preview-1 .mini-hero-text .mini-heading {
    background: #fff;
    height: 6px;
    width: 85%;
}

.preview-1 .mini-hero-text .mini-subtext {
    background: #8b7355;
    width: 70%;
}

.preview-1 .mini-hero-text .mini-btn {
    background: #d4a574;
}

.preview-1 .mini-hero-img {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #8b5a2b 0%, #5d3a1a 100%);
    border-radius: 2px;
}

.preview-1 .mini-products {
    display: flex;
    gap: 4px;
    padding: 0 8px 8px;
}

.preview-1 .mini-product {
    flex: 1;
    height: 50px;
    background: #2a2118;
    border-radius: 2px;
    position: relative;
}

.preview-1 .mini-product::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    height: 28px;
    background: linear-gradient(180deg, #6b4423 0%, #4a2f18 100%);
    border-radius: 1px;
}

.preview-1 .mini-product::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 60%;
    height: 3px;
    background: #5a4535;
    border-radius: 1px;
}

/* ============================================
   PREVIEW 2: SAAS DASHBOARD
   ============================================ */
.preview-2 {
    background: #0f172a;
    display: flex;
}

.preview-2 .mini-sidebar {
    width: 35px;
    background: #1e293b;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-2 .mini-sidebar-logo {
    width: 20px;
    height: 8px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    margin-bottom: 6px;
}

.preview-2 .mini-sidebar-item {
    height: 6px;
    background: #334155;
    border-radius: 1px;
}

.preview-2 .mini-sidebar-item.active {
    background: #3b82f6;
}

.preview-2 .mini-main {
    flex: 1;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-2 .mini-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-2 .mini-search {
    width: 50px;
    height: 7px;
    background: #1e293b;
    border-radius: 2px;
}

.preview-2 .mini-avatar {
    width: 10px;
    height: 10px;
    background: #64748b;
    border-radius: 50%;
}

.preview-2 .mini-stats {
    display: flex;
    gap: 4px;
}

.preview-2 .mini-stat-card {
    flex: 1;
    height: 28px;
    background: #1e293b;
    border-radius: 2px;
    position: relative;
}

.preview-2 .mini-stat-card::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 4px;
    background: #3b82f6;
    border-radius: 1px;
}

.preview-2 .mini-stat-card::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    height: 3px;
    background: #334155;
    border-radius: 1px;
}

.preview-2 .mini-chart {
    flex: 1;
    background: #1e293b;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.preview-2 .mini-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.3) 100%);
    clip-path: polygon(0 100%, 15% 60%, 30% 80%, 50% 30%, 70% 50%, 85% 20%, 100% 40%, 100% 100%);
}

/* ============================================
   PREVIEW 3: REAL ESTATE
   ============================================ */
.preview-3 {
    background: #f8fafc;
}

.preview-3 .mini-nav.light .mini-logo {
    background: #16a34a;
}

.preview-3 .mini-search-hero {
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    padding: 12px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-3 .mini-search-box {
    width: 80%;
    height: 10px;
    background: #ffffff;
    border-radius: 2px;
    position: relative;
}

.preview-3 .mini-search-box::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border: 1px solid #9ca3af;
    border-radius: 50%;
}

.preview-3 .mini-listings {
    display: flex;
    gap: 6px;
    padding: 8px;
}

.preview-3 .mini-listing {
    flex: 1;
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.preview-3 .mini-listing-img {
    height: 35px;
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.preview-3 .mini-listing-info {
    padding: 4px;
}

.preview-3 .mini-listing-price {
    width: 50%;
    height: 4px;
    background: #16a34a;
    border-radius: 1px;
    margin-bottom: 2px;
}

.preview-3 .mini-listing-text {
    width: 80%;
    height: 3px;
    background: #d1d5db;
    border-radius: 1px;
}

/* ============================================
   PREVIEW 4: HEALTHCARE
   ============================================ */
.preview-4 {
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
}

.preview-4 .mini-nav.light .mini-logo {
    background: #9333ea;
}

.preview-4 .mini-nav.light .mini-nav-btn {
    background: #9333ea;
}

.preview-4 .mini-hero-centered {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.preview-4 .mini-hero-badge {
    width: 30px;
    height: 5px;
    background: #e9d5ff;
    border-radius: 3px;
    margin-bottom: 4px;
}

.preview-4 .mini-hero-centered .mini-heading {
    background: #1f2937;
    width: 75%;
}

.preview-4 .mini-hero-centered .mini-subtext {
    width: 60%;
}

.preview-4 .mini-hero-centered .mini-btn.primary {
    background: #9333ea;
}

.preview-4 .mini-hero-centered .mini-btn.outline {
    border-color: #9333ea;
}

.preview-4 .mini-features-row {
    display: flex;
    gap: 4px;
    padding: 0 8px 8px;
}

.preview-4 .mini-feature-box {
    flex: 1;
    height: 38px;
    background: #ffffff;
    border: 1px solid #e9d5ff;
    border-radius: 2px;
    position: relative;
}

.preview-4 .mini-feature-box::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #f3e8ff;
    border-radius: 50%;
}

.preview-4 .mini-feature-box::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 1px;
}

/* ============================================
   PREVIEW 5: RESTAURANT
   ============================================ */
.preview-5 {
    background: #0a0a0a;
}

.preview-5 .mini-fullscreen-hero {
    height: 100px;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.9) 0%, rgba(154, 52, 18, 0.8) 100%),
                linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
}

.preview-5 .mini-nav.dark .mini-logo {
    background: #ffffff;
}

.preview-5 .mini-nav.dark .mini-nav-links span {
    background: rgba(255,255,255,0.7);
}

.preview-5 .mini-hero-center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.preview-5 .mini-hero-center-content .mini-heading {
    background: #ffffff;
    width: 60%;
}

.preview-5 .mini-hero-center-content .mini-subtext {
    background: rgba(255,255,255,0.6);
    width: 45%;
}

.preview-5 .mini-hero-center-content .mini-btn.primary {
    background: #ffffff;
}

.preview-5 .mini-hero-center-content .mini-btn.outline {
    border-color: #ffffff;
}

.preview-5 .mini-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 6px;
}

.preview-5 .mini-menu-item {
    height: 40px;
    background: #1a1a1a;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.preview-5 .mini-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    opacity: 0.8;
}

.preview-5 .mini-menu-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 60%;
    height: 3px;
    background: #3a3a3a;
    border-radius: 1px;
}

/* ============================================
   PREVIEW 6: LEGAL / CORPORATE
   ============================================ */
.preview-6 {
    background: #0f172a;
}

.preview-6 .mini-nav.dark {
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.preview-6 .mini-nav.dark .mini-logo {
    background: #c7a44a;
}

.preview-6 .mini-nav.dark .mini-nav-links span {
    background: #94a3b8;
}

.preview-6 .mini-nav.dark .mini-nav-btn {
    background: #c7a44a;
}

.preview-6 .mini-hero-split {
    display: flex;
    padding: 10px 8px;
    gap: 8px;
}

.preview-6 .mini-hero-split .mini-hero-text {
    flex: 1;
}

.preview-6 .mini-hero-split .mini-heading {
    background: #ffffff;
    width: 90%;
    height: 6px;
}

.preview-6 .mini-hero-split .mini-subtext {
    background: #64748b;
    width: 80%;
}

.preview-6 .mini-hero-split .mini-btn.primary {
    background: #c7a44a;
}

.preview-6 .mini-hero-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-radius: 2px;
}

.preview-6 .mini-trust-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    background: #1e293b;
}

.preview-6 .mini-trust-bar span {
    width: 25px;
    height: 8px;
    background: #334155;
    border-radius: 1px;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.portfolio-category::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ff6b35;
}

.portfolio-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.portfolio-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Automation Section */
.automation-section {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.automation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.automation-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.automation-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
}

.automation-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: 400;
    color: #737373;
}

.automation-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #737373;
}

.automation-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.automation-card {
    background-color: #000;
    border-radius: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.automation-card::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 24px;
    width: 3px;
    height: 3px;
    background-color: #ff6b35;
    box-shadow:
        0 5px 0 #ff6b35,
        0 10px 0 #ff6b35,
        5px 0 0 #ff6b35,
        5px 5px 0 #ff6b35,
        5px 10px 0 #ff6b35;
}

.automation-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-left: 20px;
}

.automation-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #e5e5e5;
}

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fdfcfd;
    padding: 60px 40px;
}

.stat-number {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
    color: #ff6b35;
}

.stat-label {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: 400;
    color: #151515;
    text-transform: lowercase;
}

.stat-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #737373;
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    padding: 120px 50px;
    background-color: #f5f5f5;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.cta-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: #151515;
}

.cta-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    color: #737373;
    margin: 0;
}

.cta-button-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 80px 50px 40px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 120px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-logo-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.footer-tagline {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.footer-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-contact {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
}

.footer-copyright {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 809px) {
    .header-container {
        padding: 16px 24px;
    }

    .header-nav {
        display: none;
    }

    .hero {
        padding: 60px 24px;
        min-height: 60vh;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .features {
        padding: 80px 24px;
    }

    .features-title {
        margin-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .portfolio {
        padding: 80px 0;
    }

    .portfolio-container {
        padding: 60px 24px;
        margin: 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .automation-section {
        padding: 80px 24px;
    }

    .automation-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .automation-right {
        grid-template-columns: 1fr;
    }

    .stats {
        padding: 80px 24px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .footer {
        padding: 60px 24px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 32px 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
