/* ===== TECHNOLOGY PAGE ===== */

/* Hero */
.tech-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.tech-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(138,202,230,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.tech-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.tech-badge {
    display: inline-block;
    background: rgba(138,202,230,0.15);
    border: 1px solid rgba(138,202,230,0.3);
    color: var(--sky-light);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.tech-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.tech-hero-sub {
    font-size: 22px;
    color: var(--teal-light);
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 20px;
}
.tech-hero-desc {
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Three Pillars */
.tech-pillars {
    background: var(--white);
    padding: 80px 0;
}
.tech-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tech-pillar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.tech-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
}
.tech-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.tech-pillar-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.tech-pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.tech-pillar-icon svg { width: 28px; height: 28px; }
.tech-pillar h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}
.tech-pillar p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-500);
}

/* Feature Sections */
.tech-feature {
    padding: 80px 0;
}
.tech-feature-alt {
    background: var(--gray-50);
}
.tech-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tech-feature-grid-reverse > div:first-child {
    order: 1;
}
.tech-feature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}
.tech-feature h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.tech-feature p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.tech-feature p strong {
    color: var(--navy);
}
.tech-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}
.tech-feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}
.tech-feature-list li:last-child { border-bottom: none; }
.tech-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 14px;
    height: 14px;
    background: var(--teal);
    border-radius: 50%;
}
.tech-feature-list li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 9px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
}

/* Phone Mockups */
.tech-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-frame {
    width: 280px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-screen {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    height: 580px;
    display: flex;
    flex-direction: column;
}
.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.phone-status {
    font-size: 11px;
    color: var(--gray-500);
}
.phone-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}
.phone-nav span:first-child {
    color: var(--teal);
}
.phone-nav strong {
    margin-left: auto;
    margin-right: auto;
    color: var(--navy);
}
.phone-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}
.phone-content h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.phone-meta {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 4px;
}
.phone-meta-sm {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.phone-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}
.phone-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-500);
    text-transform: uppercase;
}
.phone-card-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 6px 0 4px;
}
.phone-card-status {
    font-size: 12px;
    color: var(--gray-500);
}

/* Phone Tasks */
.phone-task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.phone-task:last-child { border-bottom: none; }
.phone-task-info strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 2px;
}
.phone-task-info p {
    font-size: 11px;
    color: var(--gray-500);
    margin: 0;
}
.phone-task-done .phone-task-info strong {
    color: var(--gray-500);
    text-decoration: line-through;
}
.phone-pill {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}
.phone-pill-assigned {
    background: rgba(42,107,124,0.1);
    color: var(--teal);
}
.phone-pill-done {
    background: #d1fae5;
    color: #059669;
}

/* Phone Summary */
.phone-summary-row {
    display: flex;
    justify-content: space-around;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    margin: 12px 0 20px;
}
.phone-summary-stat {
    text-align: center;
}
.phone-summary-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
}
.phone-summary-stat span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}
.phone-clockout-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}
.phone-back-link {
    text-align: center;
    color: var(--teal);
    font-size: 13px;
    margin-top: 12px;
}

/* Integrations */
.tech-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.tech-integration {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
}

/* Privacy Section */
.tech-privacy {
    background: var(--gray-50);
    padding: 80px 0;
}
.tech-privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 32px;
}
.tech-privacy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tech-privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.tech-privacy-icon {
    width: 48px;
    height: 48px;
    background: rgba(42,107,124,0.1);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.tech-privacy-icon svg { width: 24px; height: 24px; }
.tech-privacy-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}
.tech-privacy-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}
.tech-privacy-link {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
}
.tech-privacy-link a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}
.tech-privacy-link a:hover { text-decoration: underline; }

/* Verticals */
.tech-verticals {
    background: var(--white);
    padding: 80px 0;
}
.tech-verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.tech-vertical {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tech-vertical:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}
.tech-vertical h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}
.tech-vertical p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.tech-vertical-link {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}
.tech-vertical-link:hover { text-decoration: underline; }

/* CTA */
.tech-cta {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}
.tech-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.tech-cta p {
    font-size: 17px;
    color: var(--sky-light);
    margin-bottom: 32px;
}
.tech-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Background Guarantee */
.tech-guarantee {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.tech-guarantee::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(138,202,230,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.tech-guarantee-card {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.tech-guarantee .tech-feature-label {
    color: var(--sky-light);
    margin-bottom: 16px;
}
.tech-guarantee h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}
.tech-guarantee-lede {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 32px;
}
.tech-guarantee-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 36px;
    max-width: 640px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
    text-align: left;
}
.tech-guarantee-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--white);
}
.tech-guarantee-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal-light);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2540' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: center;
}
.tech-guarantee-partner {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.tech-guarantee-partner-label {
    font-size: 11px;
    color: var(--gray-300);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.tech-guarantee-partner-logo {
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-md, 8px);
    height: 42px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-pillar-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .tech-feature-grid { grid-template-columns: 1fr; }
    .tech-feature-grid-reverse > div:first-child { order: 0; }
    .tech-privacy-grid { grid-template-columns: 1fr; }
    .tech-verticals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tech-verticals-grid { grid-template-columns: 1fr; }
    .phone-frame { width: 240px; }
    .phone-screen { height: 500px; }
    .tech-guarantee-bullets { grid-template-columns: 1fr; }
}
