/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a56db;
    --primary-dark: #1e3a5f;
    --accent-green: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

.container {
    max-width: 90dvw;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);*/
    z-index: 1000;
    padding: 15px 0;
    /*box-shadow: var(--shadow-sm);*/
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-blue);
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 86, 219, 0.85);
    padding: 10px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-btn ion-icon {
    font-size: 18px;
}

.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.phone-btn:hover {
    background: rgba(5, 90, 200, 0.9);
    transform: scale(1.05);
    box-shadow: 
        0 8px 25px rgba(26, 86, 219, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.phone-btn:hover::before {
    left: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

.green {
    color: var(--accent-green);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    height: 90dvh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background-image: url("./images/port.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(85vh - 100px);
    position: relative;
    z-index: 1;
}

.hero-text {
    padding: 40px 0;
    filter: drop-shadow(0px 2px 10px rgba(255,255,255,0.5));
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.highlight-italic {
    font-style: italic;
    color: var(--primary-dark);
}

.highlight-bold {
    font-weight: 800;
    color: var(--primary-dark);
}

.hero-description {
    font-size: 16px;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 35px;
    filter: drop-shadow(0px 2px 10px rgba(255,255,255,0.5));
}

.hero-description strong {
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: flex-start;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: rgba(16, 151, 93, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-whatsapp {
    background: white;
    color: var(--text-dark);
    border: none;
}

.btn-whatsapp .whatsapp-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-whatsapp:hover {
    color: var(--accent-green);
}

.btn-outline {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.arrow {
    font-size: 20px;
    font-weight: bold;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 80px;
    z-index: 2;
}

.flag-stripe {
    height: 20px;
    border-radius: 3px;
}

.flag-stripe.red { background: #dc2626; }
.flag-stripe.yellow { background: #fbbf24; }
.flag-stripe.green { background: #16a34a; }

.hero-img-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Brands Section ===== */
.brands {
    position: relative;
    /*background: white;*/
    padding: 50px 0;
    z-index: 100;
}

.brands h3 {
    text-align: center;
    font-weight: 400;
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
}

.brands h3 strong {
    color: var(--text-dark);
}

.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.brand-icon {
    font-size: 24px;
}

.brand-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-names {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
}

.brand-name.entrepreneur {
    font-style: italic;
    color: #285b9e;
    font-weight: 700;
}

.brand-subtitle {
    margin-top: -10px;
    font-size: 10px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Case Study Section ===== */
.case-study {
    margin-top: -150px;
    padding: 120px 0;
    padding-top: 230px;
    background: linear-gradient(180deg, #f8fafc 0%, #e8f4f8 100%);
    background-image: url("./images/case.png");
    background-position: top end;
    background-repeat: no-repeat;
    background-size: cover;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.case-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.case-title .italic {
    font-style: italic;
}

.case-title .light {
    font-weight: 500;
}

.case-description {
    font-size: 15px;
    color: var(--primary-dark);
    line-height: 1.7;
    margin-bottom: 30px;
    filter: drop-shadow(0px 2px 10px rgba(255,255,255,0.5));
}

.case-stats {
    list-style: none;
}

.case-stats li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--primary-dark);
}

.case-stats li strong {
    color: var(--primary-dark);
}

.case-stats li small {
    color: var(--primary-dark);
    font-size: 13px;
}

.stat-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* Devices Mockup */
.devices-mockup {
    position: relative;
    padding: 20px;
}

.laptop-mockup {
    background: #1f2937;
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
}

.laptop-mockup .screen {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.screen-content {
    height: 100%;
    padding: 15px;
}

.mock-header {
    height: 30px;
    background: var(--primary-blue);
    border-radius: 5px;
    margin-bottom: 15px;
}

.mock-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    height: calc(100% - 50px);
}

.mock-content::before,
.mock-content::after {
    content: '';
    background: #e5e7eb;
    border-radius: 5px;
}

.phone-mockup {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 120px;
    background: #1f2937;
    border-radius: 20px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: white;
    border-radius: 15px;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.mock-app {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3b82f6 100%);
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-title strong {
    font-weight: 700;
    color: var(--primary-dark);
}

.services-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    flex: 1;
    overflow: hidden;
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 160px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image.placeholder::after {
    content: '🖼️';
    font-size: 40px;
    opacity: 0.5;
}

.service-content {
    padding: 20px;
}

.service-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.service-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.cta-section h2 strong {
    font-weight: 700;
    color: var(--primary-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Plans Section ===== */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e8f4f8 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-top: -35px;
    margin-bottom: 50px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.03);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.plan-card.featured .plan-badge {
    background: var(--accent-green);
}

.plan-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.plan-header .plan-description {
    font-size: 14px;
    color: var(--text-gray);
}

.plan-price {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 25px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.plan-price .period {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features ion-icon {
    color: var(--accent-green);
    font-size: 20px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

.plans-note {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.plans-note p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
    padding: 80px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image.placeholder::after {
    content: '🖼️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    opacity: 0.5;
}

.portfolio-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.portfolio-category {
    background: var(--primary-blue);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: #f3f4f6;
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4f8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25d366;
}

.contact-icon.email {
    background: #ea4335;
}

.contact-icon.location {
    background: #ff6b35;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cta {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.contact-cta > p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp-large {
    background: #25d366;
    color: white;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large ion-icon {
    font-size: 22px;
}

.btn-call {
    background: white;
    color: var(--primary-dark);
    padding: 16px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s;
}

.btn-call:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-call ion-icon {
    font-size: 20px;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: var(--radius-sm);
    color: #166534;
    font-size: 13px;
}

.response-time ion-icon {
    font-size: 18px;
}

.social-links {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.social-links h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.tiktok {
    background: #000;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-contact ion-icon {
    font-size: 18px;
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom p span {
    color: white;
    font-size: 16px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 40px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .phone-btn {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .brand-logos {
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        display: none;
    }
    
    .section-title,
    .case-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        margin-top: -30px;
        font-size: 14px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .brand-item {
        flex-direction: column;
        text-align: center;
    }
    
    .plan-price .amount {
        font-size: 40px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}
